{"id":"42d3715a119b0d1bfc5f8eef371f63b7","_format":"hh-sol-build-info-1","solcVersion":"0.8.28","solcLongVersion":"0.8.28+commit.7893614a","input":{"language":"Solidity","sources":{"@account-abstraction/contracts/core/BaseAccount.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity ^0.8.23;\n\n/* solhint-disable avoid-low-level-calls */\n/* solhint-disable no-empty-blocks */\n\nimport \"../interfaces/IAccount.sol\";\nimport \"../interfaces/IEntryPoint.sol\";\nimport \"./UserOperationLib.sol\";\n\n/**\n * Basic account implementation.\n * This contract provides the basic logic for implementing the IAccount interface - validateUserOp\n * Specific account implementation should inherit it and provide the account-specific logic.\n */\nabstract contract BaseAccount is IAccount {\n    using UserOperationLib for PackedUserOperation;\n\n    /**\n     * Return the account nonce.\n     * This method returns the next sequential nonce.\n     * For a nonce of a specific key, use `entrypoint.getNonce(account, key)`\n     */\n    function getNonce() public view virtual returns (uint256) {\n        return entryPoint().getNonce(address(this), 0);\n    }\n\n    /**\n     * Return the entryPoint used by this account.\n     * Subclass should return the current entryPoint used by this account.\n     */\n    function entryPoint() public view virtual returns (IEntryPoint);\n\n    /// @inheritdoc IAccount\n    function validateUserOp(\n        PackedUserOperation calldata userOp,\n        bytes32 userOpHash,\n        uint256 missingAccountFunds\n    ) external virtual override returns (uint256 validationData) {\n        _requireFromEntryPoint();\n        validationData = _validateSignature(userOp, userOpHash);\n        _validateNonce(userOp.nonce);\n        _payPrefund(missingAccountFunds);\n    }\n\n    /**\n     * Ensure the request comes from the known entrypoint.\n     */\n    function _requireFromEntryPoint() internal view virtual {\n        require(\n            msg.sender == address(entryPoint()),\n            \"account: not from EntryPoint\"\n        );\n    }\n\n    /**\n     * Validate the signature is valid for this message.\n     * @param userOp          - Validate the userOp.signature field.\n     * @param userOpHash      - Convenient field: the hash of the request, to check the signature against.\n     *                          (also hashes the entrypoint and chain id)\n     * @return validationData - Signature and time-range of this operation.\n     *                          <20-byte> aggregatorOrSigFail - 0 for valid signature, 1 to mark signature failure,\n     *                                    otherwise, an address of an aggregator contract.\n     *                          <6-byte> validUntil - last timestamp this operation is valid. 0 for \"indefinite\"\n     *                          <6-byte> validAfter - first timestamp this operation is valid\n     *                          If the account doesn't use time-range, it is enough to return\n     *                          SIG_VALIDATION_FAILED value (1) for signature failure.\n     *                          Note that the validation code cannot use block.timestamp (or block.number) directly.\n     */\n    function _validateSignature(\n        PackedUserOperation calldata userOp,\n        bytes32 userOpHash\n    ) internal virtual returns (uint256 validationData);\n\n    /**\n     * Validate the nonce of the UserOperation.\n     * This method may validate the nonce requirement of this account.\n     * e.g.\n     * To limit the nonce to use sequenced UserOps only (no \"out of order\" UserOps):\n     *      `require(nonce < type(uint64).max)`\n     * For a hypothetical account that *requires* the nonce to be out-of-order:\n     *      `require(nonce & type(uint64).max == 0)`\n     *\n     * The actual nonce uniqueness is managed by the EntryPoint, and thus no other\n     * action is needed by the account itself.\n     *\n     * @param nonce to validate\n     *\n     * solhint-disable-next-line no-empty-blocks\n     */\n    function _validateNonce(uint256 nonce) internal view virtual {\n    }\n\n    /**\n     * Sends to the entrypoint (msg.sender) the missing funds for this transaction.\n     * SubClass MAY override this method for better funds management\n     * (e.g. send to the entryPoint more than the minimum required, so that in future transactions\n     * it will not be required to send again).\n     * @param missingAccountFunds - The minimum value this method should send the entrypoint.\n     *                              This value MAY be zero, in case there is enough deposit,\n     *                              or the userOp has a paymaster.\n     */\n    function _payPrefund(uint256 missingAccountFunds) internal virtual {\n        if (missingAccountFunds != 0) {\n            (bool success, ) = payable(msg.sender).call{\n                value: missingAccountFunds,\n                gas: type(uint256).max\n            }(\"\");\n            (success);\n            //ignore failure (its EntryPoint's job to verify, not account.)\n        }\n    }\n}\n"},"@account-abstraction/contracts/core/Helpers.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity ^0.8.23;\n\n/* solhint-disable no-inline-assembly */\n\n\n /*\n  * For simulation purposes, validateUserOp (and validatePaymasterUserOp)\n  * must return this value in case of signature failure, instead of revert.\n  */\nuint256 constant SIG_VALIDATION_FAILED = 1;\n\n\n/*\n * For simulation purposes, validateUserOp (and validatePaymasterUserOp)\n * return this value on success.\n */\nuint256 constant SIG_VALIDATION_SUCCESS = 0;\n\n\n/**\n * Returned data from validateUserOp.\n * validateUserOp returns a uint256, which is created by `_packedValidationData` and\n * parsed by `_parseValidationData`.\n * @param aggregator  - address(0) - The account validated the signature by itself.\n *                      address(1) - The account failed to validate the signature.\n *                      otherwise - This is an address of a signature aggregator that must\n *                                  be used to validate the signature.\n * @param validAfter  - This UserOp is valid only after this timestamp.\n * @param validaUntil - This UserOp is valid only up to this timestamp.\n */\nstruct ValidationData {\n    address aggregator;\n    uint48 validAfter;\n    uint48 validUntil;\n}\n\n/**\n * Extract sigFailed, validAfter, validUntil.\n * Also convert zero validUntil to type(uint48).max.\n * @param validationData - The packed validation data.\n */\nfunction _parseValidationData(\n    uint256 validationData\n) pure returns (ValidationData memory data) {\n    address aggregator = address(uint160(validationData));\n    uint48 validUntil = uint48(validationData >> 160);\n    if (validUntil == 0) {\n        validUntil = type(uint48).max;\n    }\n    uint48 validAfter = uint48(validationData >> (48 + 160));\n    return ValidationData(aggregator, validAfter, validUntil);\n}\n\n/**\n * Helper to pack the return value for validateUserOp.\n * @param data - The ValidationData to pack.\n */\nfunction _packValidationData(\n    ValidationData memory data\n) pure returns (uint256) {\n    return\n        uint160(data.aggregator) |\n        (uint256(data.validUntil) << 160) |\n        (uint256(data.validAfter) << (160 + 48));\n}\n\n/**\n * Helper to pack the return value for validateUserOp, when not using an aggregator.\n * @param sigFailed  - True for signature failure, false for success.\n * @param validUntil - Last timestamp this UserOperation is valid (or zero for infinite).\n * @param validAfter - First timestamp this UserOperation is valid.\n */\nfunction _packValidationData(\n    bool sigFailed,\n    uint48 validUntil,\n    uint48 validAfter\n) pure returns (uint256) {\n    return\n        (sigFailed ? 1 : 0) |\n        (uint256(validUntil) << 160) |\n        (uint256(validAfter) << (160 + 48));\n}\n\n/**\n * keccak function over calldata.\n * @dev copy calldata into memory, do keccak and drop allocated memory. Strangely, this is more efficient than letting solidity do it.\n */\n    function calldataKeccak(bytes calldata data) pure returns (bytes32 ret) {\n        assembly (\"memory-safe\") {\n            let mem := mload(0x40)\n            let len := data.length\n            calldatacopy(mem, data.offset, len)\n            ret := keccak256(mem, len)\n        }\n    }\n\n\n/**\n * The minimum of two numbers.\n * @param a - First number.\n * @param b - Second number.\n */\n    function min(uint256 a, uint256 b) pure returns (uint256) {\n        return a < b ? a : b;\n    }\n"},"@account-abstraction/contracts/core/UserOperationLib.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity ^0.8.23;\n\n/* solhint-disable no-inline-assembly */\n\nimport \"../interfaces/PackedUserOperation.sol\";\nimport {calldataKeccak, min} from \"./Helpers.sol\";\n\n/**\n * Utility functions helpful when working with UserOperation structs.\n */\nlibrary UserOperationLib {\n\n    uint256 public constant PAYMASTER_VALIDATION_GAS_OFFSET = 20;\n    uint256 public constant PAYMASTER_POSTOP_GAS_OFFSET = 36;\n    uint256 public constant PAYMASTER_DATA_OFFSET = 52;\n    /**\n     * Get sender from user operation data.\n     * @param userOp - The user operation data.\n     */\n    function getSender(\n        PackedUserOperation calldata userOp\n    ) internal pure returns (address) {\n        address data;\n        //read sender from userOp, which is first userOp member (saves 800 gas...)\n        assembly {\n            data := calldataload(userOp)\n        }\n        return address(uint160(data));\n    }\n\n    /**\n     * Relayer/block builder might submit the TX with higher priorityFee,\n     * but the user should not pay above what he signed for.\n     * @param userOp - The user operation data.\n     */\n    function gasPrice(\n        PackedUserOperation calldata userOp\n    ) internal view returns (uint256) {\n        unchecked {\n            (uint256 maxPriorityFeePerGas, uint256 maxFeePerGas) = unpackUints(userOp.gasFees);\n            if (maxFeePerGas == maxPriorityFeePerGas) {\n                //legacy mode (for networks that don't support basefee opcode)\n                return maxFeePerGas;\n            }\n            return min(maxFeePerGas, maxPriorityFeePerGas + block.basefee);\n        }\n    }\n\n    /**\n     * Pack the user operation data into bytes for hashing.\n     * @param userOp - The user operation data.\n     */\n    function encode(\n        PackedUserOperation calldata userOp\n    ) internal pure returns (bytes memory ret) {\n        address sender = getSender(userOp);\n        uint256 nonce = userOp.nonce;\n        bytes32 hashInitCode = calldataKeccak(userOp.initCode);\n        bytes32 hashCallData = calldataKeccak(userOp.callData);\n        bytes32 accountGasLimits = userOp.accountGasLimits;\n        uint256 preVerificationGas = userOp.preVerificationGas;\n        bytes32 gasFees = userOp.gasFees;\n        bytes32 hashPaymasterAndData = calldataKeccak(userOp.paymasterAndData);\n\n        return abi.encode(\n            sender, nonce,\n            hashInitCode, hashCallData,\n            accountGasLimits, preVerificationGas, gasFees,\n            hashPaymasterAndData\n        );\n    }\n\n    function unpackUints(\n        bytes32 packed\n    ) internal pure returns (uint256 high128, uint256 low128) {\n        return (uint128(bytes16(packed)), uint128(uint256(packed)));\n    }\n\n    //unpack just the high 128-bits from a packed value\n    function unpackHigh128(bytes32 packed) internal pure returns (uint256) {\n        return uint256(packed) >> 128;\n    }\n\n    // unpack just the low 128-bits from a packed value\n    function unpackLow128(bytes32 packed) internal pure returns (uint256) {\n        return uint128(uint256(packed));\n    }\n\n    function unpackMaxPriorityFeePerGas(PackedUserOperation calldata userOp)\n    internal pure returns (uint256) {\n        return unpackHigh128(userOp.gasFees);\n    }\n\n    function unpackMaxFeePerGas(PackedUserOperation calldata userOp)\n    internal pure returns (uint256) {\n        return unpackLow128(userOp.gasFees);\n    }\n\n    function unpackVerificationGasLimit(PackedUserOperation calldata userOp)\n    internal pure returns (uint256) {\n        return unpackHigh128(userOp.accountGasLimits);\n    }\n\n    function unpackCallGasLimit(PackedUserOperation calldata userOp)\n    internal pure returns (uint256) {\n        return unpackLow128(userOp.accountGasLimits);\n    }\n\n    function unpackPaymasterVerificationGasLimit(PackedUserOperation calldata userOp)\n    internal pure returns (uint256) {\n        return uint128(bytes16(userOp.paymasterAndData[PAYMASTER_VALIDATION_GAS_OFFSET : PAYMASTER_POSTOP_GAS_OFFSET]));\n    }\n\n    function unpackPostOpGasLimit(PackedUserOperation calldata userOp)\n    internal pure returns (uint256) {\n        return uint128(bytes16(userOp.paymasterAndData[PAYMASTER_POSTOP_GAS_OFFSET : PAYMASTER_DATA_OFFSET]));\n    }\n\n    function unpackPaymasterStaticFields(\n        bytes calldata paymasterAndData\n    ) internal pure returns (address paymaster, uint256 validationGasLimit, uint256 postOpGasLimit) {\n        return (\n            address(bytes20(paymasterAndData[: PAYMASTER_VALIDATION_GAS_OFFSET])),\n            uint128(bytes16(paymasterAndData[PAYMASTER_VALIDATION_GAS_OFFSET : PAYMASTER_POSTOP_GAS_OFFSET])),\n            uint128(bytes16(paymasterAndData[PAYMASTER_POSTOP_GAS_OFFSET : PAYMASTER_DATA_OFFSET]))\n        );\n    }\n\n    /**\n     * Hash the user operation data.\n     * @param userOp - The user operation data.\n     */\n    function hash(\n        PackedUserOperation calldata userOp\n    ) internal pure returns (bytes32) {\n        return keccak256(encode(userOp));\n    }\n}\n"},"@account-abstraction/contracts/interfaces/IAccount.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.7.5;\n\nimport \"./PackedUserOperation.sol\";\n\ninterface IAccount {\n    /**\n     * Validate user's signature and nonce\n     * the entryPoint will make the call to the recipient only if this validation call returns successfully.\n     * signature failure should be reported by returning SIG_VALIDATION_FAILED (1).\n     * This allows making a \"simulation call\" without a valid signature\n     * Other failures (e.g. nonce mismatch, or invalid signature format) should still revert to signal failure.\n     *\n     * @dev Must validate caller is the entryPoint.\n     *      Must validate the signature and nonce\n     * @param userOp              - The operation that is about to be executed.\n     * @param userOpHash          - Hash of the user's request data. can be used as the basis for signature.\n     * @param missingAccountFunds - Missing funds on the account's deposit in the entrypoint.\n     *                              This is the minimum amount to transfer to the sender(entryPoint) to be\n     *                              able to make the call. The excess is left as a deposit in the entrypoint\n     *                              for future calls. Can be withdrawn anytime using \"entryPoint.withdrawTo()\".\n     *                              In case there is a paymaster in the request (or the current deposit is high\n     *                              enough), this value will be zero.\n     * @return validationData       - Packaged ValidationData structure. use `_packValidationData` and\n     *                              `_unpackValidationData` to encode and decode.\n     *                              <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,\n     *                                 otherwise, an address of an \"authorizer\" contract.\n     *                              <6-byte> validUntil - Last timestamp this operation is valid. 0 for \"indefinite\"\n     *                              <6-byte> validAfter - First timestamp this operation is valid\n     *                                                    If an account doesn't use time-range, it is enough to\n     *                                                    return SIG_VALIDATION_FAILED value (1) for signature failure.\n     *                              Note that the validation code cannot use block.timestamp (or block.number) directly.\n     */\n    function validateUserOp(\n        PackedUserOperation calldata userOp,\n        bytes32 userOpHash,\n        uint256 missingAccountFunds\n    ) external returns (uint256 validationData);\n}\n"},"@account-abstraction/contracts/interfaces/IAggregator.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.7.5;\n\nimport \"./PackedUserOperation.sol\";\n\n/**\n * Aggregated Signatures validator.\n */\ninterface IAggregator {\n    /**\n     * Validate aggregated signature.\n     * Revert if the aggregated signature does not match the given list of operations.\n     * @param userOps   - Array of UserOperations to validate the signature for.\n     * @param signature - The aggregated signature.\n     */\n    function validateSignatures(\n        PackedUserOperation[] calldata userOps,\n        bytes calldata signature\n    ) external view;\n\n    /**\n     * Validate signature of a single userOp.\n     * This method should be called by bundler after EntryPointSimulation.simulateValidation() returns\n     * the aggregator this account uses.\n     * First it validates the signature over the userOp. Then it returns data to be used when creating the handleOps.\n     * @param userOp        - The userOperation received from the user.\n     * @return sigForUserOp - The value to put into the signature field of the userOp when calling handleOps.\n     *                        (usually empty, unless account and aggregator support some kind of \"multisig\".\n     */\n    function validateUserOpSignature(\n        PackedUserOperation calldata userOp\n    ) external view returns (bytes memory sigForUserOp);\n\n    /**\n     * Aggregate multiple signatures into a single value.\n     * This method is called off-chain to calculate the signature to pass with handleOps()\n     * bundler MAY use optimized custom code perform this aggregation.\n     * @param userOps              - Array of UserOperations to collect the signatures from.\n     * @return aggregatedSignature - The aggregated signature.\n     */\n    function aggregateSignatures(\n        PackedUserOperation[] calldata userOps\n    ) external view returns (bytes memory aggregatedSignature);\n}\n"},"@account-abstraction/contracts/interfaces/IEntryPoint.sol":{"content":"/**\n ** Account-Abstraction (EIP-4337) singleton EntryPoint implementation.\n ** Only one instance required on each chain.\n **/\n// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.7.5;\n\n/* solhint-disable avoid-low-level-calls */\n/* solhint-disable no-inline-assembly */\n/* solhint-disable reason-string */\n\nimport \"./PackedUserOperation.sol\";\nimport \"./IStakeManager.sol\";\nimport \"./IAggregator.sol\";\nimport \"./INonceManager.sol\";\n\ninterface IEntryPoint is IStakeManager, INonceManager {\n    /***\n     * An event emitted after each successful request.\n     * @param userOpHash    - Unique identifier for the request (hash its entire content, except signature).\n     * @param sender        - The account that generates this request.\n     * @param paymaster     - If non-null, the paymaster that pays for this request.\n     * @param nonce         - The nonce value from the request.\n     * @param success       - True if the sender transaction succeeded, false if reverted.\n     * @param actualGasCost - Actual amount paid (by account or paymaster) for this UserOperation.\n     * @param actualGasUsed - Total gas used by this UserOperation (including preVerification, creation,\n     *                        validation and execution).\n     */\n    event UserOperationEvent(\n        bytes32 indexed userOpHash,\n        address indexed sender,\n        address indexed paymaster,\n        uint256 nonce,\n        bool success,\n        uint256 actualGasCost,\n        uint256 actualGasUsed\n    );\n\n    /**\n     * Account \"sender\" was deployed.\n     * @param userOpHash - The userOp that deployed this account. UserOperationEvent will follow.\n     * @param sender     - The account that is deployed\n     * @param factory    - The factory used to deploy this account (in the initCode)\n     * @param paymaster  - The paymaster used by this UserOp\n     */\n    event AccountDeployed(\n        bytes32 indexed userOpHash,\n        address indexed sender,\n        address factory,\n        address paymaster\n    );\n\n    /**\n     * An event emitted if the UserOperation \"callData\" reverted with non-zero length.\n     * @param userOpHash   - The request unique identifier.\n     * @param sender       - The sender of this request.\n     * @param nonce        - The nonce used in the request.\n     * @param revertReason - The return bytes from the (reverted) call to \"callData\".\n     */\n    event UserOperationRevertReason(\n        bytes32 indexed userOpHash,\n        address indexed sender,\n        uint256 nonce,\n        bytes revertReason\n    );\n\n    /**\n     * An event emitted if the UserOperation Paymaster's \"postOp\" call reverted with non-zero length.\n     * @param userOpHash   - The request unique identifier.\n     * @param sender       - The sender of this request.\n     * @param nonce        - The nonce used in the request.\n     * @param revertReason - The return bytes from the (reverted) call to \"callData\".\n     */\n    event PostOpRevertReason(\n        bytes32 indexed userOpHash,\n        address indexed sender,\n        uint256 nonce,\n        bytes revertReason\n    );\n\n    /**\n     * UserOp consumed more than prefund. The UserOperation is reverted, and no refund is made.\n     * @param userOpHash   - The request unique identifier.\n     * @param sender       - The sender of this request.\n     * @param nonce        - The nonce used in the request.\n     */\n    event UserOperationPrefundTooLow(\n        bytes32 indexed userOpHash,\n        address indexed sender,\n        uint256 nonce\n    );\n\n    /**\n     * An event emitted by handleOps(), before starting the execution loop.\n     * Any event emitted before this event, is part of the validation.\n     */\n    event BeforeExecution();\n\n    /**\n     * Signature aggregator used by the following UserOperationEvents within this bundle.\n     * @param aggregator - The aggregator used for the following UserOperationEvents.\n     */\n    event SignatureAggregatorChanged(address indexed aggregator);\n\n    /**\n     * A custom revert error of handleOps, to identify the offending op.\n     * Should be caught in off-chain handleOps simulation and not happen on-chain.\n     * Useful for mitigating DoS attempts against batchers or for troubleshooting of factory/account/paymaster reverts.\n     * NOTE: If simulateValidation passes successfully, there should be no reason for handleOps to fail on it.\n     * @param opIndex - Index into the array of ops to the failed one (in simulateValidation, this is always zero).\n     * @param reason  - Revert reason. The string starts with a unique code \"AAmn\",\n     *                  where \"m\" is \"1\" for factory, \"2\" for account and \"3\" for paymaster issues,\n     *                  so a failure can be attributed to the correct entity.\n     */\n    error FailedOp(uint256 opIndex, string reason);\n\n    /**\n     * A custom revert error of handleOps, to report a revert by account or paymaster.\n     * @param opIndex - Index into the array of ops to the failed one (in simulateValidation, this is always zero).\n     * @param reason  - Revert reason. see FailedOp(uint256,string), above\n     * @param inner   - data from inner cought revert reason\n     * @dev note that inner is truncated to 2048 bytes\n     */\n    error FailedOpWithRevert(uint256 opIndex, string reason, bytes inner);\n\n    error PostOpReverted(bytes returnData);\n\n    /**\n     * Error case when a signature aggregator fails to verify the aggregated signature it had created.\n     * @param aggregator The aggregator that failed to verify the signature\n     */\n    error SignatureValidationFailed(address aggregator);\n\n    // Return value of getSenderAddress.\n    error SenderAddressResult(address sender);\n\n    // UserOps handled, per aggregator.\n    struct UserOpsPerAggregator {\n        PackedUserOperation[] userOps;\n        // Aggregator address\n        IAggregator aggregator;\n        // Aggregated signature\n        bytes signature;\n    }\n\n    /**\n     * Execute a batch of UserOperations.\n     * No signature aggregator is used.\n     * If any account requires an aggregator (that is, it returned an aggregator when\n     * performing simulateValidation), then handleAggregatedOps() must be used instead.\n     * @param ops         - The operations to execute.\n     * @param beneficiary - The address to receive the fees.\n     */\n    function handleOps(\n        PackedUserOperation[] calldata ops,\n        address payable beneficiary\n    ) external;\n\n    /**\n     * Execute a batch of UserOperation with Aggregators\n     * @param opsPerAggregator - The operations to execute, grouped by aggregator (or address(0) for no-aggregator accounts).\n     * @param beneficiary      - The address to receive the fees.\n     */\n    function handleAggregatedOps(\n        UserOpsPerAggregator[] calldata opsPerAggregator,\n        address payable beneficiary\n    ) external;\n\n    /**\n     * Generate a request Id - unique identifier for this request.\n     * The request ID is a hash over the content of the userOp (except the signature), the entrypoint and the chainid.\n     * @param userOp - The user operation to generate the request ID for.\n     * @return hash the hash of this UserOperation\n     */\n    function getUserOpHash(\n        PackedUserOperation calldata userOp\n    ) external view returns (bytes32);\n\n    /**\n     * Gas and return values during simulation.\n     * @param preOpGas         - The gas used for validation (including preValidationGas)\n     * @param prefund          - The required prefund for this operation\n     * @param accountValidationData   - returned validationData from account.\n     * @param paymasterValidationData - return validationData from paymaster.\n     * @param paymasterContext - Returned by validatePaymasterUserOp (to be passed into postOp)\n     */\n    struct ReturnInfo {\n        uint256 preOpGas;\n        uint256 prefund;\n        uint256 accountValidationData;\n        uint256 paymasterValidationData;\n        bytes paymasterContext;\n    }\n\n    /**\n     * Returned aggregated signature info:\n     * The aggregator returned by the account, and its current stake.\n     */\n    struct AggregatorStakeInfo {\n        address aggregator;\n        StakeInfo stakeInfo;\n    }\n\n    /**\n     * Get counterfactual sender address.\n     * Calculate the sender contract address that will be generated by the initCode and salt in the UserOperation.\n     * This method always revert, and returns the address in SenderAddressResult error\n     * @param initCode - The constructor code to be passed into the UserOperation.\n     */\n    function getSenderAddress(bytes memory initCode) external;\n\n    error DelegateAndRevert(bool success, bytes ret);\n\n    /**\n     * Helper method for dry-run testing.\n     * @dev calling this method, the EntryPoint will make a delegatecall to the given data, and report (via revert) the result.\n     *  The method always revert, so is only useful off-chain for dry run calls, in cases where state-override to replace\n     *  actual EntryPoint code is less convenient.\n     * @param target a target contract to make a delegatecall from entrypoint\n     * @param data data to pass to target in a delegatecall\n     */\n    function delegateAndRevert(address target, bytes calldata data) external;\n}\n"},"@account-abstraction/contracts/interfaces/INonceManager.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.7.5;\n\ninterface INonceManager {\n\n    /**\n     * Return the next nonce for this sender.\n     * Within a given key, the nonce values are sequenced (starting with zero, and incremented by one on each userop)\n     * But UserOp with different keys can come with arbitrary order.\n     *\n     * @param sender the account address\n     * @param key the high 192 bit of the nonce\n     * @return nonce a full nonce to pass for next UserOp with this sender.\n     */\n    function getNonce(address sender, uint192 key)\n    external view returns (uint256 nonce);\n\n    /**\n     * Manually increment the nonce of the sender.\n     * This method is exposed just for completeness..\n     * Account does NOT need to call it, neither during validation, nor elsewhere,\n     * as the EntryPoint will update the nonce regardless.\n     * Possible use-case is call it with various keys to \"initialize\" their nonces to one, so that future\n     * UserOperations will not pay extra for the first transaction with a given key.\n     */\n    function incrementNonce(uint192 key) external;\n}\n"},"@account-abstraction/contracts/interfaces/IStakeManager.sol":{"content":"// SPDX-License-Identifier: GPL-3.0-only\npragma solidity >=0.7.5;\n\n/**\n * Manage deposits and stakes.\n * Deposit is just a balance used to pay for UserOperations (either by a paymaster or an account).\n * Stake is value locked for at least \"unstakeDelay\" by the staked entity.\n */\ninterface IStakeManager {\n    event Deposited(address indexed account, uint256 totalDeposit);\n\n    event Withdrawn(\n        address indexed account,\n        address withdrawAddress,\n        uint256 amount\n    );\n\n    // Emitted when stake or unstake delay are modified.\n    event StakeLocked(\n        address indexed account,\n        uint256 totalStaked,\n        uint256 unstakeDelaySec\n    );\n\n    // Emitted once a stake is scheduled for withdrawal.\n    event StakeUnlocked(address indexed account, uint256 withdrawTime);\n\n    event StakeWithdrawn(\n        address indexed account,\n        address withdrawAddress,\n        uint256 amount\n    );\n\n    /**\n     * @param deposit         - The entity's deposit.\n     * @param staked          - True if this entity is staked.\n     * @param stake           - Actual amount of ether staked for this entity.\n     * @param unstakeDelaySec - Minimum delay to withdraw the stake.\n     * @param withdrawTime    - First block timestamp where 'withdrawStake' will be callable, or zero if already locked.\n     * @dev Sizes were chosen so that deposit fits into one cell (used during handleOp)\n     *      and the rest fit into a 2nd cell (used during stake/unstake)\n     *      - 112 bit allows for 10^15 eth\n     *      - 48 bit for full timestamp\n     *      - 32 bit allows 150 years for unstake delay\n     */\n    struct DepositInfo {\n        uint256 deposit;\n        bool staked;\n        uint112 stake;\n        uint32 unstakeDelaySec;\n        uint48 withdrawTime;\n    }\n\n    // API struct used by getStakeInfo and simulateValidation.\n    struct StakeInfo {\n        uint256 stake;\n        uint256 unstakeDelaySec;\n    }\n\n    /**\n     * Get deposit info.\n     * @param account - The account to query.\n     * @return info   - Full deposit information of given account.\n     */\n    function getDepositInfo(\n        address account\n    ) external view returns (DepositInfo memory info);\n\n    /**\n     * Get account balance.\n     * @param account - The account to query.\n     * @return        - The deposit (for gas payment) of the account.\n     */\n    function balanceOf(address account) external view returns (uint256);\n\n    /**\n     * Add to the deposit of the given account.\n     * @param account - The account to add to.\n     */\n    function depositTo(address account) external payable;\n\n    /**\n     * Add to the account's stake - amount and delay\n     * any pending unstake is first cancelled.\n     * @param _unstakeDelaySec - The new lock duration before the deposit can be withdrawn.\n     */\n    function addStake(uint32 _unstakeDelaySec) external payable;\n\n    /**\n     * Attempt to unlock the stake.\n     * The value can be withdrawn (using withdrawStake) after the unstake delay.\n     */\n    function unlockStake() external;\n\n    /**\n     * Withdraw from the (unlocked) stake.\n     * Must first call unlockStake and wait for the unstakeDelay to pass.\n     * @param withdrawAddress - The address to send withdrawn value.\n     */\n    function withdrawStake(address payable withdrawAddress) external;\n\n    /**\n     * Withdraw from the deposit.\n     * @param withdrawAddress - The address to send withdrawn value.\n     * @param withdrawAmount  - The amount to withdraw.\n     */\n    function withdrawTo(\n        address payable withdrawAddress,\n        uint256 withdrawAmount\n    ) external;\n}\n"},"@account-abstraction/contracts/interfaces/PackedUserOperation.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.7.5;\n\n/**\n * User Operation struct\n * @param sender                - The sender account of this request.\n * @param nonce                 - Unique value the sender uses to verify it is not a replay.\n * @param initCode              - If set, the account contract will be created by this constructor/\n * @param callData              - The method call to execute on this account.\n * @param accountGasLimits      - Packed gas limits for validateUserOp and gas limit passed to the callData method call.\n * @param preVerificationGas    - Gas not calculated by the handleOps method, but added to the gas paid.\n *                                Covers batch overhead.\n * @param gasFees               - packed gas fields maxPriorityFeePerGas and maxFeePerGas - Same as EIP-1559 gas parameters.\n * @param paymasterAndData      - If set, this field holds the paymaster address, verification gas limit, postOp gas limit and paymaster-specific extra data\n *                                The paymaster will pay for the transaction instead of the sender.\n * @param signature             - Sender-verified signature over the entire request, the EntryPoint address and the chain ID.\n */\nstruct PackedUserOperation {\n    address sender;\n    uint256 nonce;\n    bytes initCode;\n    bytes callData;\n    bytes32 accountGasLimits;\n    uint256 preVerificationGas;\n    bytes32 gasFees;\n    bytes paymasterAndData;\n    bytes signature;\n}\n"},"@openzeppelin/contracts/access/AccessControl.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)\n\npragma solidity ^0.8.20;\n\nimport {IAccessControl} from \"./IAccessControl.sol\";\nimport {Context} from \"../utils/Context.sol\";\nimport {ERC165} from \"../utils/introspection/ERC165.sol\";\n\n/**\n * @dev Contract module that allows children to implement role-based access\n * control mechanisms. This is a lightweight version that doesn't allow enumerating role\n * members except through off-chain means by accessing the contract event logs. Some\n * applications may benefit from on-chain enumerability, for those cases see\n * {AccessControlEnumerable}.\n *\n * Roles are referred to by their `bytes32` identifier. These should be exposed\n * in the external API and be unique. The best way to achieve this is by\n * using `public constant` hash digests:\n *\n * ```solidity\n * bytes32 public constant MY_ROLE = keccak256(\"MY_ROLE\");\n * ```\n *\n * Roles can be used to represent a set of permissions. To restrict access to a\n * function call, use {hasRole}:\n *\n * ```solidity\n * function foo() public {\n *     require(hasRole(MY_ROLE, msg.sender));\n *     ...\n * }\n * ```\n *\n * Roles can be granted and revoked dynamically via the {grantRole} and\n * {revokeRole} functions. Each role has an associated admin role, and only\n * accounts that have a role's admin role can call {grantRole} and {revokeRole}.\n *\n * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means\n * that only accounts with this role will be able to grant or revoke other\n * roles. More complex role relationships can be created by using\n * {_setRoleAdmin}.\n *\n * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to\n * grant and revoke this role. Extra precautions should be taken to secure\n * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}\n * to enforce additional security measures for this role.\n */\nabstract contract AccessControl is Context, IAccessControl, ERC165 {\n    struct RoleData {\n        mapping(address account => bool) hasRole;\n        bytes32 adminRole;\n    }\n\n    mapping(bytes32 role => RoleData) private _roles;\n\n    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;\n\n    /**\n     * @dev Modifier that checks that an account has a specific role. Reverts\n     * with an {AccessControlUnauthorizedAccount} error including the required role.\n     */\n    modifier onlyRole(bytes32 role) {\n        _checkRole(role);\n        _;\n    }\n\n    /**\n     * @dev See {IERC165-supportsInterface}.\n     */\n    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);\n    }\n\n    /**\n     * @dev Returns `true` if `account` has been granted `role`.\n     */\n    function hasRole(bytes32 role, address account) public view virtual returns (bool) {\n        return _roles[role].hasRole[account];\n    }\n\n    /**\n     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`\n     * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.\n     */\n    function _checkRole(bytes32 role) internal view virtual {\n        _checkRole(role, _msgSender());\n    }\n\n    /**\n     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`\n     * is missing `role`.\n     */\n    function _checkRole(bytes32 role, address account) internal view virtual {\n        if (!hasRole(role, account)) {\n            revert AccessControlUnauthorizedAccount(account, role);\n        }\n    }\n\n    /**\n     * @dev Returns the admin role that controls `role`. See {grantRole} and\n     * {revokeRole}.\n     *\n     * To change a role's admin, use {_setRoleAdmin}.\n     */\n    function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) {\n        return _roles[role].adminRole;\n    }\n\n    /**\n     * @dev Grants `role` to `account`.\n     *\n     * If `account` had not been already granted `role`, emits a {RoleGranted}\n     * event.\n     *\n     * Requirements:\n     *\n     * - the caller must have ``role``'s admin role.\n     *\n     * May emit a {RoleGranted} event.\n     */\n    function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {\n        _grantRole(role, account);\n    }\n\n    /**\n     * @dev Revokes `role` from `account`.\n     *\n     * If `account` had been granted `role`, emits a {RoleRevoked} event.\n     *\n     * Requirements:\n     *\n     * - the caller must have ``role``'s admin role.\n     *\n     * May emit a {RoleRevoked} event.\n     */\n    function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {\n        _revokeRole(role, account);\n    }\n\n    /**\n     * @dev Revokes `role` from the calling account.\n     *\n     * Roles are often managed via {grantRole} and {revokeRole}: this function's\n     * purpose is to provide a mechanism for accounts to lose their privileges\n     * if they are compromised (such as when a trusted device is misplaced).\n     *\n     * If the calling account had been revoked `role`, emits a {RoleRevoked}\n     * event.\n     *\n     * Requirements:\n     *\n     * - the caller must be `callerConfirmation`.\n     *\n     * May emit a {RoleRevoked} event.\n     */\n    function renounceRole(bytes32 role, address callerConfirmation) public virtual {\n        if (callerConfirmation != _msgSender()) {\n            revert AccessControlBadConfirmation();\n        }\n\n        _revokeRole(role, callerConfirmation);\n    }\n\n    /**\n     * @dev Sets `adminRole` as ``role``'s admin role.\n     *\n     * Emits a {RoleAdminChanged} event.\n     */\n    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {\n        bytes32 previousAdminRole = getRoleAdmin(role);\n        _roles[role].adminRole = adminRole;\n        emit RoleAdminChanged(role, previousAdminRole, adminRole);\n    }\n\n    /**\n     * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.\n     *\n     * Internal function without access restriction.\n     *\n     * May emit a {RoleGranted} event.\n     */\n    function _grantRole(bytes32 role, address account) internal virtual returns (bool) {\n        if (!hasRole(role, account)) {\n            _roles[role].hasRole[account] = true;\n            emit RoleGranted(role, account, _msgSender());\n            return true;\n        } else {\n            return false;\n        }\n    }\n\n    /**\n     * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.\n     *\n     * Internal function without access restriction.\n     *\n     * May emit a {RoleRevoked} event.\n     */\n    function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {\n        if (hasRole(role, account)) {\n            _roles[role].hasRole[account] = false;\n            emit RoleRevoked(role, account, _msgSender());\n            return true;\n        } else {\n            return false;\n        }\n    }\n}\n"},"@openzeppelin/contracts/access/IAccessControl.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (access/IAccessControl.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev External interface of AccessControl declared to support ERC-165 detection.\n */\ninterface IAccessControl {\n    /**\n     * @dev The `account` is missing a role.\n     */\n    error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);\n\n    /**\n     * @dev The caller of a function is not the expected one.\n     *\n     * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\n     */\n    error AccessControlBadConfirmation();\n\n    /**\n     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`\n     *\n     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite\n     * {RoleAdminChanged} not being emitted signaling this.\n     */\n    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);\n\n    /**\n     * @dev Emitted when `account` is granted `role`.\n     *\n     * `sender` is the account that originated the contract call. This account bears the admin role (for the granted role).\n     * Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\n     */\n    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);\n\n    /**\n     * @dev Emitted when `account` is revoked `role`.\n     *\n     * `sender` is the account that originated the contract call:\n     *   - if using `revokeRole`, it is the admin role bearer\n     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)\n     */\n    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);\n\n    /**\n     * @dev Returns `true` if `account` has been granted `role`.\n     */\n    function hasRole(bytes32 role, address account) external view returns (bool);\n\n    /**\n     * @dev Returns the admin role that controls `role`. See {grantRole} and\n     * {revokeRole}.\n     *\n     * To change a role's admin, use {AccessControl-_setRoleAdmin}.\n     */\n    function getRoleAdmin(bytes32 role) external view returns (bytes32);\n\n    /**\n     * @dev Grants `role` to `account`.\n     *\n     * If `account` had not been already granted `role`, emits a {RoleGranted}\n     * event.\n     *\n     * Requirements:\n     *\n     * - the caller must have ``role``'s admin role.\n     */\n    function grantRole(bytes32 role, address account) external;\n\n    /**\n     * @dev Revokes `role` from `account`.\n     *\n     * If `account` had been granted `role`, emits a {RoleRevoked} event.\n     *\n     * Requirements:\n     *\n     * - the caller must have ``role``'s admin role.\n     */\n    function revokeRole(bytes32 role, address account) external;\n\n    /**\n     * @dev Revokes `role` from the calling account.\n     *\n     * Roles are often managed via {grantRole} and {revokeRole}: this function's\n     * purpose is to provide a mechanism for accounts to lose their privileges\n     * if they are compromised (such as when a trusted device is misplaced).\n     *\n     * If the calling account had been granted `role`, emits a {RoleRevoked}\n     * event.\n     *\n     * Requirements:\n     *\n     * - the caller must be `callerConfirmation`.\n     */\n    function renounceRole(bytes32 role, address callerConfirmation) external;\n}\n"},"@openzeppelin/contracts/access/manager/IAccessManaged.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (access/manager/IAccessManaged.sol)\n\npragma solidity ^0.8.20;\n\ninterface IAccessManaged {\n    /**\n     * @dev Authority that manages this contract was updated.\n     */\n    event AuthorityUpdated(address authority);\n\n    error AccessManagedUnauthorized(address caller);\n    error AccessManagedRequiredDelay(address caller, uint32 delay);\n    error AccessManagedInvalidAuthority(address authority);\n\n    /**\n     * @dev Returns the current authority.\n     */\n    function authority() external view returns (address);\n\n    /**\n     * @dev Transfers control to a new authority. The caller must be the current authority.\n     */\n    function setAuthority(address) external;\n\n    /**\n     * @dev Returns true only in the context of a delayed restricted call, at the moment that the scheduled operation is\n     * being consumed. Prevents denial of service for delayed restricted calls in the case that the contract performs\n     * attacker controlled calls.\n     */\n    function isConsumingScheduledOp() external view returns (bytes4);\n}\n"},"@openzeppelin/contracts/access/manager/IAccessManager.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (access/manager/IAccessManager.sol)\n\npragma solidity ^0.8.20;\n\nimport {Time} from \"../../utils/types/Time.sol\";\n\ninterface IAccessManager {\n    /**\n     * @dev A delayed operation was scheduled.\n     */\n    event OperationScheduled(\n        bytes32 indexed operationId,\n        uint32 indexed nonce,\n        uint48 schedule,\n        address caller,\n        address target,\n        bytes data\n    );\n\n    /**\n     * @dev A scheduled operation was executed.\n     */\n    event OperationExecuted(bytes32 indexed operationId, uint32 indexed nonce);\n\n    /**\n     * @dev A scheduled operation was canceled.\n     */\n    event OperationCanceled(bytes32 indexed operationId, uint32 indexed nonce);\n\n    /**\n     * @dev Informational labelling for a roleId.\n     */\n    event RoleLabel(uint64 indexed roleId, string label);\n\n    /**\n     * @dev Emitted when `account` is granted `roleId`.\n     *\n     * NOTE: The meaning of the `since` argument depends on the `newMember` argument.\n     * If the role is granted to a new member, the `since` argument indicates when the account becomes a member of the role,\n     * otherwise it indicates the execution delay for this account and roleId is updated.\n     */\n    event RoleGranted(uint64 indexed roleId, address indexed account, uint32 delay, uint48 since, bool newMember);\n\n    /**\n     * @dev Emitted when `account` membership or `roleId` is revoked. Unlike granting, revoking is instantaneous.\n     */\n    event RoleRevoked(uint64 indexed roleId, address indexed account);\n\n    /**\n     * @dev Role acting as admin over a given `roleId` is updated.\n     */\n    event RoleAdminChanged(uint64 indexed roleId, uint64 indexed admin);\n\n    /**\n     * @dev Role acting as guardian over a given `roleId` is updated.\n     */\n    event RoleGuardianChanged(uint64 indexed roleId, uint64 indexed guardian);\n\n    /**\n     * @dev Grant delay for a given `roleId` will be updated to `delay` when `since` is reached.\n     */\n    event RoleGrantDelayChanged(uint64 indexed roleId, uint32 delay, uint48 since);\n\n    /**\n     * @dev Target mode is updated (true = closed, false = open).\n     */\n    event TargetClosed(address indexed target, bool closed);\n\n    /**\n     * @dev Role required to invoke `selector` on `target` is updated to `roleId`.\n     */\n    event TargetFunctionRoleUpdated(address indexed target, bytes4 selector, uint64 indexed roleId);\n\n    /**\n     * @dev Admin delay for a given `target` will be updated to `delay` when `since` is reached.\n     */\n    event TargetAdminDelayUpdated(address indexed target, uint32 delay, uint48 since);\n\n    error AccessManagerAlreadyScheduled(bytes32 operationId);\n    error AccessManagerNotScheduled(bytes32 operationId);\n    error AccessManagerNotReady(bytes32 operationId);\n    error AccessManagerExpired(bytes32 operationId);\n    error AccessManagerLockedRole(uint64 roleId);\n    error AccessManagerBadConfirmation();\n    error AccessManagerUnauthorizedAccount(address msgsender, uint64 roleId);\n    error AccessManagerUnauthorizedCall(address caller, address target, bytes4 selector);\n    error AccessManagerUnauthorizedConsume(address target);\n    error AccessManagerUnauthorizedCancel(address msgsender, address caller, address target, bytes4 selector);\n    error AccessManagerInvalidInitialAdmin(address initialAdmin);\n\n    /**\n     * @dev Check if an address (`caller`) is authorised to call a given function on a given contract directly (with\n     * no restriction). Additionally, it returns the delay needed to perform the call indirectly through the {schedule}\n     * & {execute} workflow.\n     *\n     * This function is usually called by the targeted contract to control immediate execution of restricted functions.\n     * Therefore we only return true if the call can be performed without any delay. If the call is subject to a\n     * previously set delay (not zero), then the function should return false and the caller should schedule the operation\n     * for future execution.\n     *\n     * If `immediate` is true, the delay can be disregarded and the operation can be immediately executed, otherwise\n     * the operation can be executed if and only if delay is greater than 0.\n     *\n     * NOTE: The IAuthority interface does not include the `uint32` delay. This is an extension of that interface that\n     * is backward compatible. Some contracts may thus ignore the second return argument. In that case they will fail\n     * to identify the indirect workflow, and will consider calls that require a delay to be forbidden.\n     *\n     * NOTE: This function does not report the permissions of the admin functions in the manager itself. These are defined by the\n     * {AccessManager} documentation.\n     */\n    function canCall(\n        address caller,\n        address target,\n        bytes4 selector\n    ) external view returns (bool allowed, uint32 delay);\n\n    /**\n     * @dev Expiration delay for scheduled proposals. Defaults to 1 week.\n     *\n     * IMPORTANT: Avoid overriding the expiration with 0. Otherwise every contract proposal will be expired immediately,\n     * disabling any scheduling usage.\n     */\n    function expiration() external view returns (uint32);\n\n    /**\n     * @dev Minimum setback for all delay updates, with the exception of execution delays. It\n     * can be increased without setback (and reset via {revokeRole} in the case event of an\n     * accidental increase). Defaults to 5 days.\n     */\n    function minSetback() external view returns (uint32);\n\n    /**\n     * @dev Get whether the contract is closed disabling any access. Otherwise role permissions are applied.\n     *\n     * NOTE: When the manager itself is closed, admin functions are still accessible to avoid locking the contract.\n     */\n    function isTargetClosed(address target) external view returns (bool);\n\n    /**\n     * @dev Get the role required to call a function.\n     */\n    function getTargetFunctionRole(address target, bytes4 selector) external view returns (uint64);\n\n    /**\n     * @dev Get the admin delay for a target contract. Changes to contract configuration are subject to this delay.\n     */\n    function getTargetAdminDelay(address target) external view returns (uint32);\n\n    /**\n     * @dev Get the id of the role that acts as an admin for the given role.\n     *\n     * The admin permission is required to grant the role, revoke the role and update the execution delay to execute\n     * an operation that is restricted to this role.\n     */\n    function getRoleAdmin(uint64 roleId) external view returns (uint64);\n\n    /**\n     * @dev Get the role that acts as a guardian for a given role.\n     *\n     * The guardian permission allows canceling operations that have been scheduled under the role.\n     */\n    function getRoleGuardian(uint64 roleId) external view returns (uint64);\n\n    /**\n     * @dev Get the role current grant delay.\n     *\n     * Its value may change at any point without an event emitted following a call to {setGrantDelay}.\n     * Changes to this value, including effect timepoint are notified in advance by the {RoleGrantDelayChanged} event.\n     */\n    function getRoleGrantDelay(uint64 roleId) external view returns (uint32);\n\n    /**\n     * @dev Get the access details for a given account for a given role. These details include the timepoint at which\n     * membership becomes active, and the delay applied to all operation by this user that requires this permission\n     * level.\n     *\n     * Returns:\n     * [0] Timestamp at which the account membership becomes valid. 0 means role is not granted.\n     * [1] Current execution delay for the account.\n     * [2] Pending execution delay for the account.\n     * [3] Timestamp at which the pending execution delay will become active. 0 means no delay update is scheduled.\n     */\n    function getAccess(\n        uint64 roleId,\n        address account\n    ) external view returns (uint48 since, uint32 currentDelay, uint32 pendingDelay, uint48 effect);\n\n    /**\n     * @dev Check if a given account currently has the permission level corresponding to a given role. Note that this\n     * permission might be associated with an execution delay. {getAccess} can provide more details.\n     */\n    function hasRole(uint64 roleId, address account) external view returns (bool isMember, uint32 executionDelay);\n\n    /**\n     * @dev Give a label to a role, for improved role discoverability by UIs.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {RoleLabel} event.\n     */\n    function labelRole(uint64 roleId, string calldata label) external;\n\n    /**\n     * @dev Add `account` to `roleId`, or change its execution delay.\n     *\n     * This gives the account the authorization to call any function that is restricted to this role. An optional\n     * execution delay (in seconds) can be set. If that delay is non 0, the user is required to schedule any operation\n     * that is restricted to members of this role. The user will only be able to execute the operation after the delay has\n     * passed, before it has expired. During this period, admin and guardians can cancel the operation (see {cancel}).\n     *\n     * If the account has already been granted this role, the execution delay will be updated. This update is not\n     * immediate and follows the delay rules. For example, if a user currently has a delay of 3 hours, and this is\n     * called to reduce that delay to 1 hour, the new delay will take some time to take effect, enforcing that any\n     * operation executed in the 3 hours that follows this update was indeed scheduled before this update.\n     *\n     * Requirements:\n     *\n     * - the caller must be an admin for the role (see {getRoleAdmin})\n     * - granted role must not be the `PUBLIC_ROLE`\n     *\n     * Emits a {RoleGranted} event.\n     */\n    function grantRole(uint64 roleId, address account, uint32 executionDelay) external;\n\n    /**\n     * @dev Remove an account from a role, with immediate effect. If the account does not have the role, this call has\n     * no effect.\n     *\n     * Requirements:\n     *\n     * - the caller must be an admin for the role (see {getRoleAdmin})\n     * - revoked role must not be the `PUBLIC_ROLE`\n     *\n     * Emits a {RoleRevoked} event if the account had the role.\n     */\n    function revokeRole(uint64 roleId, address account) external;\n\n    /**\n     * @dev Renounce role permissions for the calling account with immediate effect. If the sender is not in\n     * the role this call has no effect.\n     *\n     * Requirements:\n     *\n     * - the caller must be `callerConfirmation`.\n     *\n     * Emits a {RoleRevoked} event if the account had the role.\n     */\n    function renounceRole(uint64 roleId, address callerConfirmation) external;\n\n    /**\n     * @dev Change admin role for a given role.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {RoleAdminChanged} event\n     */\n    function setRoleAdmin(uint64 roleId, uint64 admin) external;\n\n    /**\n     * @dev Change guardian role for a given role.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {RoleGuardianChanged} event\n     */\n    function setRoleGuardian(uint64 roleId, uint64 guardian) external;\n\n    /**\n     * @dev Update the delay for granting a `roleId`.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {RoleGrantDelayChanged} event.\n     */\n    function setGrantDelay(uint64 roleId, uint32 newDelay) external;\n\n    /**\n     * @dev Set the role required to call functions identified by the `selectors` in the `target` contract.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {TargetFunctionRoleUpdated} event per selector.\n     */\n    function setTargetFunctionRole(address target, bytes4[] calldata selectors, uint64 roleId) external;\n\n    /**\n     * @dev Set the delay for changing the configuration of a given target contract.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {TargetAdminDelayUpdated} event.\n     */\n    function setTargetAdminDelay(address target, uint32 newDelay) external;\n\n    /**\n     * @dev Set the closed flag for a contract.\n     *\n     * Closing the manager itself won't disable access to admin methods to avoid locking the contract.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {TargetClosed} event.\n     */\n    function setTargetClosed(address target, bool closed) external;\n\n    /**\n     * @dev Return the timepoint at which a scheduled operation will be ready for execution. This returns 0 if the\n     * operation is not yet scheduled, has expired, was executed, or was canceled.\n     */\n    function getSchedule(bytes32 id) external view returns (uint48);\n\n    /**\n     * @dev Return the nonce for the latest scheduled operation with a given id. Returns 0 if the operation has never\n     * been scheduled.\n     */\n    function getNonce(bytes32 id) external view returns (uint32);\n\n    /**\n     * @dev Schedule a delayed operation for future execution, and return the operation identifier. It is possible to\n     * choose the timestamp at which the operation becomes executable as long as it satisfies the execution delays\n     * required for the caller. The special value zero will automatically set the earliest possible time.\n     *\n     * Returns the `operationId` that was scheduled. Since this value is a hash of the parameters, it can reoccur when\n     * the same parameters are used; if this is relevant, the returned `nonce` can be used to uniquely identify this\n     * scheduled operation from other occurrences of the same `operationId` in invocations of {execute} and {cancel}.\n     *\n     * Emits a {OperationScheduled} event.\n     *\n     * NOTE: It is not possible to concurrently schedule more than one operation with the same `target` and `data`. If\n     * this is necessary, a random byte can be appended to `data` to act as a salt that will be ignored by the target\n     * contract if it is using standard Solidity ABI encoding.\n     */\n    function schedule(\n        address target,\n        bytes calldata data,\n        uint48 when\n    ) external returns (bytes32 operationId, uint32 nonce);\n\n    /**\n     * @dev Execute a function that is delay restricted, provided it was properly scheduled beforehand, or the\n     * execution delay is 0.\n     *\n     * Returns the nonce that identifies the previously scheduled operation that is executed, or 0 if the\n     * operation wasn't previously scheduled (if the caller doesn't have an execution delay).\n     *\n     * Emits an {OperationExecuted} event only if the call was scheduled and delayed.\n     */\n    function execute(address target, bytes calldata data) external payable returns (uint32);\n\n    /**\n     * @dev Cancel a scheduled (delayed) operation. Returns the nonce that identifies the previously scheduled\n     * operation that is cancelled.\n     *\n     * Requirements:\n     *\n     * - the caller must be the proposer, a guardian of the targeted function, or a global admin\n     *\n     * Emits a {OperationCanceled} event.\n     */\n    function cancel(address caller, address target, bytes calldata data) external returns (uint32);\n\n    /**\n     * @dev Consume a scheduled operation targeting the caller. If such an operation exists, mark it as consumed\n     * (emit an {OperationExecuted} event and clean the state). Otherwise, throw an error.\n     *\n     * This is useful for contract that want to enforce that calls targeting them were scheduled on the manager,\n     * with all the verifications that it implies.\n     *\n     * Emit a {OperationExecuted} event.\n     */\n    function consumeScheduledOp(address caller, bytes calldata data) external;\n\n    /**\n     * @dev Hashing function for delayed operations.\n     */\n    function hashOperation(address caller, address target, bytes calldata data) external view returns (bytes32);\n\n    /**\n     * @dev Changes the authority of a target managed by this manager instance.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     */\n    function updateAuthority(address target, address newAuthority) external;\n}\n"},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)\npragma solidity ^0.8.20;\n\n/**\n * @dev Standard ERC-20 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.\n */\ninterface IERC20Errors {\n    /**\n     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     * @param balance Current balance for the interacting account.\n     * @param needed Minimum amount required to perform a transfer.\n     */\n    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);\n\n    /**\n     * @dev Indicates a failure with the token `sender`. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     */\n    error ERC20InvalidSender(address sender);\n\n    /**\n     * @dev Indicates a failure with the token `receiver`. Used in transfers.\n     * @param receiver Address to which tokens are being transferred.\n     */\n    error ERC20InvalidReceiver(address receiver);\n\n    /**\n     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.\n     * @param spender Address that may be allowed to operate on tokens without being their owner.\n     * @param allowance Amount of tokens a `spender` is allowed to operate with.\n     * @param needed Minimum amount required to perform a transfer.\n     */\n    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);\n\n    /**\n     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n     * @param approver Address initiating an approval operation.\n     */\n    error ERC20InvalidApprover(address approver);\n\n    /**\n     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.\n     * @param spender Address that may be allowed to operate on tokens without being their owner.\n     */\n    error ERC20InvalidSpender(address spender);\n}\n\n/**\n * @dev Standard ERC-721 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.\n */\ninterface IERC721Errors {\n    /**\n     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.\n     * Used in balance queries.\n     * @param owner Address of the current owner of a token.\n     */\n    error ERC721InvalidOwner(address owner);\n\n    /**\n     * @dev Indicates a `tokenId` whose `owner` is the zero address.\n     * @param tokenId Identifier number of a token.\n     */\n    error ERC721NonexistentToken(uint256 tokenId);\n\n    /**\n     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     * @param tokenId Identifier number of a token.\n     * @param owner Address of the current owner of a token.\n     */\n    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);\n\n    /**\n     * @dev Indicates a failure with the token `sender`. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     */\n    error ERC721InvalidSender(address sender);\n\n    /**\n     * @dev Indicates a failure with the token `receiver`. Used in transfers.\n     * @param receiver Address to which tokens are being transferred.\n     */\n    error ERC721InvalidReceiver(address receiver);\n\n    /**\n     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n     * @param operator Address that may be allowed to operate on tokens without being their owner.\n     * @param tokenId Identifier number of a token.\n     */\n    error ERC721InsufficientApproval(address operator, uint256 tokenId);\n\n    /**\n     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n     * @param approver Address initiating an approval operation.\n     */\n    error ERC721InvalidApprover(address approver);\n\n    /**\n     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n     * @param operator Address that may be allowed to operate on tokens without being their owner.\n     */\n    error ERC721InvalidOperator(address operator);\n}\n\n/**\n * @dev Standard ERC-1155 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.\n */\ninterface IERC1155Errors {\n    /**\n     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     * @param balance Current balance for the interacting account.\n     * @param needed Minimum amount required to perform a transfer.\n     * @param tokenId Identifier number of a token.\n     */\n    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);\n\n    /**\n     * @dev Indicates a failure with the token `sender`. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     */\n    error ERC1155InvalidSender(address sender);\n\n    /**\n     * @dev Indicates a failure with the token `receiver`. Used in transfers.\n     * @param receiver Address to which tokens are being transferred.\n     */\n    error ERC1155InvalidReceiver(address receiver);\n\n    /**\n     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n     * @param operator Address that may be allowed to operate on tokens without being their owner.\n     * @param owner Address of the current owner of a token.\n     */\n    error ERC1155MissingApprovalForAll(address operator, address owner);\n\n    /**\n     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n     * @param approver Address initiating an approval operation.\n     */\n    error ERC1155InvalidApprover(address approver);\n\n    /**\n     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n     * @param operator Address that may be allowed to operate on tokens without being their owner.\n     */\n    error ERC1155InvalidOperator(address operator);\n\n    /**\n     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.\n     * Used in batch transfers.\n     * @param idsLength Length of the array of token identifiers\n     * @param valuesLength Length of the array of token amounts\n     */\n    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);\n}\n"},"@openzeppelin/contracts/interfaces/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"../token/ERC20/IERC20.sol\";\n"},"@openzeppelin/contracts/metatx/ERC2771Context.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (metatx/ERC2771Context.sol)\n\npragma solidity ^0.8.20;\n\nimport {Context} from \"../utils/Context.sol\";\n\n/**\n * @dev Context variant with ERC-2771 support.\n *\n * WARNING: Avoid using this pattern in contracts that rely in a specific calldata length as they'll\n * be affected by any forwarder whose `msg.data` is suffixed with the `from` address according to the ERC-2771\n * specification adding the address size in bytes (20) to the calldata size. An example of an unexpected\n * behavior could be an unintended fallback (or another function) invocation while trying to invoke the `receive`\n * function only accessible if `msg.data.length == 0`.\n *\n * WARNING: The usage of `delegatecall` in this contract is dangerous and may result in context corruption.\n * Any forwarded request to this contract triggering a `delegatecall` to itself will result in an invalid {_msgSender}\n * recovery.\n */\nabstract contract ERC2771Context is Context {\n    /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n    address private immutable _trustedForwarder;\n\n    /**\n     * @dev Initializes the contract with a trusted forwarder, which will be able to\n     * invoke functions on this contract on behalf of other accounts.\n     *\n     * NOTE: The trusted forwarder can be replaced by overriding {trustedForwarder}.\n     */\n    /// @custom:oz-upgrades-unsafe-allow constructor\n    constructor(address trustedForwarder_) {\n        _trustedForwarder = trustedForwarder_;\n    }\n\n    /**\n     * @dev Returns the address of the trusted forwarder.\n     */\n    function trustedForwarder() public view virtual returns (address) {\n        return _trustedForwarder;\n    }\n\n    /**\n     * @dev Indicates whether any particular address is the trusted forwarder.\n     */\n    function isTrustedForwarder(address forwarder) public view virtual returns (bool) {\n        return forwarder == trustedForwarder();\n    }\n\n    /**\n     * @dev Override for `msg.sender`. Defaults to the original `msg.sender` whenever\n     * a call is not performed by the trusted forwarder or the calldata length is less than\n     * 20 bytes (an address length).\n     */\n    function _msgSender() internal view virtual override returns (address) {\n        uint256 calldataLength = msg.data.length;\n        uint256 contextSuffixLength = _contextSuffixLength();\n        if (isTrustedForwarder(msg.sender) && calldataLength >= contextSuffixLength) {\n            return address(bytes20(msg.data[calldataLength - contextSuffixLength:]));\n        } else {\n            return super._msgSender();\n        }\n    }\n\n    /**\n     * @dev Override for `msg.data`. Defaults to the original `msg.data` whenever\n     * a call is not performed by the trusted forwarder or the calldata length is less than\n     * 20 bytes (an address length).\n     */\n    function _msgData() internal view virtual override returns (bytes calldata) {\n        uint256 calldataLength = msg.data.length;\n        uint256 contextSuffixLength = _contextSuffixLength();\n        if (isTrustedForwarder(msg.sender) && calldataLength >= contextSuffixLength) {\n            return msg.data[:calldataLength - contextSuffixLength];\n        } else {\n            return super._msgData();\n        }\n    }\n\n    /**\n     * @dev ERC-2771 specifies the context as being a single address (20 bytes).\n     */\n    function _contextSuffixLength() internal view virtual override returns (uint256) {\n        return 20;\n    }\n}\n"},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"./IERC20.sol\";\nimport {IERC20Metadata} from \"./extensions/IERC20Metadata.sol\";\nimport {Context} from \"../../utils/Context.sol\";\nimport {IERC20Errors} from \"../../interfaces/draft-IERC6093.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * The default value of {decimals} is 18. To change this, you should override\n * this function so it returns a different value.\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC-20\n * applications.\n */\nabstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {\n    mapping(address account => uint256) private _balances;\n\n    mapping(address account => mapping(address spender => uint256)) private _allowances;\n\n    uint256 private _totalSupply;\n\n    string private _name;\n    string private _symbol;\n\n    /**\n     * @dev Sets the values for {name} and {symbol}.\n     *\n     * All two of these values are immutable: they can only be set once during\n     * construction.\n     */\n    constructor(string memory name_, string memory symbol_) {\n        _name = name_;\n        _symbol = symbol_;\n    }\n\n    /**\n     * @dev Returns the name of the token.\n     */\n    function name() public view virtual returns (string memory) {\n        return _name;\n    }\n\n    /**\n     * @dev Returns the symbol of the token, usually a shorter version of the\n     * name.\n     */\n    function symbol() public view virtual returns (string memory) {\n        return _symbol;\n    }\n\n    /**\n     * @dev Returns the number of decimals used to get its user representation.\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n     *\n     * Tokens usually opt for a value of 18, imitating the relationship between\n     * Ether and Wei. This is the default value returned by this function, unless\n     * it's overridden.\n     *\n     * NOTE: This information is only used for _display_ purposes: it in\n     * no way affects any of the arithmetic of the contract, including\n     * {IERC20-balanceOf} and {IERC20-transfer}.\n     */\n    function decimals() public view virtual returns (uint8) {\n        return 18;\n    }\n\n    /**\n     * @dev See {IERC20-totalSupply}.\n     */\n    function totalSupply() public view virtual returns (uint256) {\n        return _totalSupply;\n    }\n\n    /**\n     * @dev See {IERC20-balanceOf}.\n     */\n    function balanceOf(address account) public view virtual returns (uint256) {\n        return _balances[account];\n    }\n\n    /**\n     * @dev See {IERC20-transfer}.\n     *\n     * Requirements:\n     *\n     * - `to` cannot be the zero address.\n     * - the caller must have a balance of at least `value`.\n     */\n    function transfer(address to, uint256 value) public virtual returns (bool) {\n        address owner = _msgSender();\n        _transfer(owner, to, value);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-allowance}.\n     */\n    function allowance(address owner, address spender) public view virtual returns (uint256) {\n        return _allowances[owner][spender];\n    }\n\n    /**\n     * @dev See {IERC20-approve}.\n     *\n     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on\n     * `transferFrom`. This is semantically equivalent to an infinite approval.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     */\n    function approve(address spender, uint256 value) public virtual returns (bool) {\n        address owner = _msgSender();\n        _approve(owner, spender, value);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-transferFrom}.\n     *\n     * Skips emitting an {Approval} event indicating an allowance update. This is not\n     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].\n     *\n     * NOTE: Does not update the allowance if the current allowance\n     * is the maximum `uint256`.\n     *\n     * Requirements:\n     *\n     * - `from` and `to` cannot be the zero address.\n     * - `from` must have a balance of at least `value`.\n     * - the caller must have allowance for ``from``'s tokens of at least\n     * `value`.\n     */\n    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {\n        address spender = _msgSender();\n        _spendAllowance(from, spender, value);\n        _transfer(from, to, value);\n        return true;\n    }\n\n    /**\n     * @dev Moves a `value` amount of tokens from `from` to `to`.\n     *\n     * This internal function is equivalent to {transfer}, and can be used to\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\n     *\n     * Emits a {Transfer} event.\n     *\n     * NOTE: This function is not virtual, {_update} should be overridden instead.\n     */\n    function _transfer(address from, address to, uint256 value) internal {\n        if (from == address(0)) {\n            revert ERC20InvalidSender(address(0));\n        }\n        if (to == address(0)) {\n            revert ERC20InvalidReceiver(address(0));\n        }\n        _update(from, to, value);\n    }\n\n    /**\n     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`\n     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding\n     * this function.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _update(address from, address to, uint256 value) internal virtual {\n        if (from == address(0)) {\n            // Overflow check required: The rest of the code assumes that totalSupply never overflows\n            _totalSupply += value;\n        } else {\n            uint256 fromBalance = _balances[from];\n            if (fromBalance < value) {\n                revert ERC20InsufficientBalance(from, fromBalance, value);\n            }\n            unchecked {\n                // Overflow not possible: value <= fromBalance <= totalSupply.\n                _balances[from] = fromBalance - value;\n            }\n        }\n\n        if (to == address(0)) {\n            unchecked {\n                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.\n                _totalSupply -= value;\n            }\n        } else {\n            unchecked {\n                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.\n                _balances[to] += value;\n            }\n        }\n\n        emit Transfer(from, to, value);\n    }\n\n    /**\n     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).\n     * Relies on the `_update` mechanism\n     *\n     * Emits a {Transfer} event with `from` set to the zero address.\n     *\n     * NOTE: This function is not virtual, {_update} should be overridden instead.\n     */\n    function _mint(address account, uint256 value) internal {\n        if (account == address(0)) {\n            revert ERC20InvalidReceiver(address(0));\n        }\n        _update(address(0), account, value);\n    }\n\n    /**\n     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.\n     * Relies on the `_update` mechanism.\n     *\n     * Emits a {Transfer} event with `to` set to the zero address.\n     *\n     * NOTE: This function is not virtual, {_update} should be overridden instead\n     */\n    function _burn(address account, uint256 value) internal {\n        if (account == address(0)) {\n            revert ERC20InvalidSender(address(0));\n        }\n        _update(account, address(0), value);\n    }\n\n    /**\n     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.\n     *\n     * This internal function is equivalent to `approve`, and can be used to\n     * e.g. set automatic allowances for certain subsystems, etc.\n     *\n     * Emits an {Approval} event.\n     *\n     * Requirements:\n     *\n     * - `owner` cannot be the zero address.\n     * - `spender` cannot be the zero address.\n     *\n     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.\n     */\n    function _approve(address owner, address spender, uint256 value) internal {\n        _approve(owner, spender, value, true);\n    }\n\n    /**\n     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.\n     *\n     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by\n     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any\n     * `Approval` event during `transferFrom` operations.\n     *\n     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to\n     * true using the following override:\n     *\n     * ```solidity\n     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {\n     *     super._approve(owner, spender, value, true);\n     * }\n     * ```\n     *\n     * Requirements are the same as {_approve}.\n     */\n    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {\n        if (owner == address(0)) {\n            revert ERC20InvalidApprover(address(0));\n        }\n        if (spender == address(0)) {\n            revert ERC20InvalidSpender(address(0));\n        }\n        _allowances[owner][spender] = value;\n        if (emitEvent) {\n            emit Approval(owner, spender, value);\n        }\n    }\n\n    /**\n     * @dev Updates `owner` s allowance for `spender` based on spent `value`.\n     *\n     * Does not update the allowance value in case of infinite allowance.\n     * Revert if not enough allowance is available.\n     *\n     * Does not emit an {Approval} event.\n     */\n    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {\n        uint256 currentAllowance = allowance(owner, spender);\n        if (currentAllowance < type(uint256).max) {\n            if (currentAllowance < value) {\n                revert ERC20InsufficientAllowance(spender, currentAllowance, value);\n            }\n            unchecked {\n                _approve(owner, spender, currentAllowance - value, false);\n            }\n        }\n    }\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC-20 standard.\n */\ninterface IERC20Metadata is IERC20 {\n    /**\n     * @dev Returns the name of the token.\n     */\n    function name() external view returns (string memory);\n\n    /**\n     * @dev Returns the symbol of the token.\n     */\n    function symbol() external view returns (string memory);\n\n    /**\n     * @dev Returns the decimals places of the token.\n     */\n    function decimals() external view returns (uint8);\n}\n"},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Interface of the ERC-20 standard as defined in the ERC.\n */\ninterface IERC20 {\n    /**\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\n     * another (`to`).\n     *\n     * Note that `value` may be zero.\n     */\n    event Transfer(address indexed from, address indexed to, uint256 value);\n\n    /**\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n     * a call to {approve}. `value` is the new allowance.\n     */\n    event Approval(address indexed owner, address indexed spender, uint256 value);\n\n    /**\n     * @dev Returns the value of tokens in existence.\n     */\n    function totalSupply() external view returns (uint256);\n\n    /**\n     * @dev Returns the value of tokens owned by `account`.\n     */\n    function balanceOf(address account) external view returns (uint256);\n\n    /**\n     * @dev Moves a `value` amount of tokens from the caller's account to `to`.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transfer(address to, uint256 value) external returns (bool);\n\n    /**\n     * @dev Returns the remaining number of tokens that `spender` will be\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\n     * zero by default.\n     *\n     * This value changes when {approve} or {transferFrom} are called.\n     */\n    function allowance(address owner, address spender) external view returns (uint256);\n\n    /**\n     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n     * caller's tokens.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\n     * that someone may use both the old and the new allowance by unfortunate\n     * transaction ordering. One possible solution to mitigate this race\n     * condition is to first reduce the spender's allowance to 0 and set the\n     * desired value afterwards:\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n     *\n     * Emits an {Approval} event.\n     */\n    function approve(address spender, uint256 value) external returns (bool);\n\n    /**\n     * @dev Moves a `value` amount of tokens from `from` to `to` using the\n     * allowance mechanism. `value` is then deducted from the caller's\n     * allowance.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transferFrom(address from, address to, uint256 value) external returns (bool);\n}\n"},"@openzeppelin/contracts/utils/Address.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (utils/Address.sol)\n\npragma solidity ^0.8.20;\n\nimport {Errors} from \"./Errors.sol\";\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n    /**\n     * @dev There's no code at `target` (it is not a contract).\n     */\n    error AddressEmptyCode(address target);\n\n    /**\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n     * `recipient`, forwarding all available gas and reverting on errors.\n     *\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\n     * imposed by `transfer`, making them unable to receive funds via\n     * `transfer`. {sendValue} removes this limitation.\n     *\n     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n     *\n     * IMPORTANT: because control is transferred to `recipient`, care must be\n     * taken to not create reentrancy vulnerabilities. Consider using\n     * {ReentrancyGuard} or the\n     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n     */\n    function sendValue(address payable recipient, uint256 amount) internal {\n        if (address(this).balance < amount) {\n            revert Errors.InsufficientBalance(address(this).balance, amount);\n        }\n\n        (bool success, bytes memory returndata) = recipient.call{value: amount}(\"\");\n        if (!success) {\n            _revert(returndata);\n        }\n    }\n\n    /**\n     * @dev Performs a Solidity function call using a low level `call`. A\n     * plain `call` is an unsafe replacement for a function call: use this\n     * function instead.\n     *\n     * If `target` reverts with a revert reason or custom error, it is bubbled\n     * up by this function (like regular Solidity function calls). However, if\n     * the call reverted with no returned reason, this function reverts with a\n     * {Errors.FailedCall} error.\n     *\n     * Returns the raw returned data. To convert to the expected return value,\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n     *\n     * Requirements:\n     *\n     * - `target` must be a contract.\n     * - calling `target` with `data` must not revert.\n     */\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n        return functionCallWithValue(target, data, 0);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but also transferring `value` wei to `target`.\n     *\n     * Requirements:\n     *\n     * - the calling contract must have an ETH balance of at least `value`.\n     * - the called Solidity function must be `payable`.\n     */\n    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n        if (address(this).balance < value) {\n            revert Errors.InsufficientBalance(address(this).balance, value);\n        }\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\n        return verifyCallResultFromTarget(target, success, returndata);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but performing a static call.\n     */\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n        (bool success, bytes memory returndata) = target.staticcall(data);\n        return verifyCallResultFromTarget(target, success, returndata);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but performing a delegate call.\n     */\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n        (bool success, bytes memory returndata) = target.delegatecall(data);\n        return verifyCallResultFromTarget(target, success, returndata);\n    }\n\n    /**\n     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target\n     * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case\n     * of an unsuccessful call.\n     */\n    function verifyCallResultFromTarget(\n        address target,\n        bool success,\n        bytes memory returndata\n    ) internal view returns (bytes memory) {\n        if (!success) {\n            _revert(returndata);\n        } else {\n            // only check if target is a contract if the call was successful and the return data is empty\n            // otherwise we already know that it was a contract\n            if (returndata.length == 0 && target.code.length == 0) {\n                revert AddressEmptyCode(target);\n            }\n            return returndata;\n        }\n    }\n\n    /**\n     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the\n     * revert reason or with a default {Errors.FailedCall} error.\n     */\n    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {\n        if (!success) {\n            _revert(returndata);\n        } else {\n            return returndata;\n        }\n    }\n\n    /**\n     * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}.\n     */\n    function _revert(bytes memory returndata) private pure {\n        // Look for revert reason and bubble it up if present\n        if (returndata.length > 0) {\n            // The easiest way to bubble the revert reason is using memory via assembly\n            assembly (\"memory-safe\") {\n                let returndata_size := mload(returndata)\n                revert(add(32, returndata), returndata_size)\n            }\n        } else {\n            revert Errors.FailedCall();\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Context.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n    function _msgSender() internal view virtual returns (address) {\n        return msg.sender;\n    }\n\n    function _msgData() internal view virtual returns (bytes calldata) {\n        return msg.data;\n    }\n\n    function _contextSuffixLength() internal view virtual returns (uint256) {\n        return 0;\n    }\n}\n"},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/ECDSA.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n *\n * These functions can be used to verify that a message was signed by the holder\n * of the private keys of a given address.\n */\nlibrary ECDSA {\n    enum RecoverError {\n        NoError,\n        InvalidSignature,\n        InvalidSignatureLength,\n        InvalidSignatureS\n    }\n\n    /**\n     * @dev The signature derives the `address(0)`.\n     */\n    error ECDSAInvalidSignature();\n\n    /**\n     * @dev The signature has an invalid length.\n     */\n    error ECDSAInvalidSignatureLength(uint256 length);\n\n    /**\n     * @dev The signature has an S value that is in the upper half order.\n     */\n    error ECDSAInvalidSignatureS(bytes32 s);\n\n    /**\n     * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not\n     * return address(0) without also returning an error description. Errors are documented using an enum (error type)\n     * and a bytes32 providing additional information about the error.\n     *\n     * If no error is returned, then the address can be used for verification purposes.\n     *\n     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n     * this function rejects them by requiring the `s` value to be in the lower\n     * half order, and the `v` value to be either 27 or 28.\n     *\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n     * verification to be secure: it is possible to craft signatures that\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n     * this is by receiving a hash of the original message (which may otherwise\n     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.\n     *\n     * Documentation for signature generation:\n     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\n     */\n    function tryRecover(\n        bytes32 hash,\n        bytes memory signature\n    ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {\n        if (signature.length == 65) {\n            bytes32 r;\n            bytes32 s;\n            uint8 v;\n            // ecrecover takes the signature parameters, and the only way to get them\n            // currently is to use assembly.\n            assembly (\"memory-safe\") {\n                r := mload(add(signature, 0x20))\n                s := mload(add(signature, 0x40))\n                v := byte(0, mload(add(signature, 0x60)))\n            }\n            return tryRecover(hash, v, r, s);\n        } else {\n            return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));\n        }\n    }\n\n    /**\n     * @dev Returns the address that signed a hashed message (`hash`) with\n     * `signature`. This address can then be used for verification purposes.\n     *\n     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n     * this function rejects them by requiring the `s` value to be in the lower\n     * half order, and the `v` value to be either 27 or 28.\n     *\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n     * verification to be secure: it is possible to craft signatures that\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n     * this is by receiving a hash of the original message (which may otherwise\n     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.\n     */\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\n        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);\n        _throwError(error, errorArg);\n        return recovered;\n    }\n\n    /**\n     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n     *\n     * See https://eips.ethereum.org/EIPS/eip-2098[ERC-2098 short signatures]\n     */\n    function tryRecover(\n        bytes32 hash,\n        bytes32 r,\n        bytes32 vs\n    ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {\n        unchecked {\n            bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);\n            // We do not check for an overflow here since the shift operation results in 0 or 1.\n            uint8 v = uint8((uint256(vs) >> 255) + 27);\n            return tryRecover(hash, v, r, s);\n        }\n    }\n\n    /**\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n     */\n    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {\n        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);\n        _throwError(error, errorArg);\n        return recovered;\n    }\n\n    /**\n     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n     * `r` and `s` signature fields separately.\n     */\n    function tryRecover(\n        bytes32 hash,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {\n        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\n        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\n        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most\n        // signatures from current libraries generate a unique signature with an s-value in the lower half order.\n        //\n        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\n        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\n        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\n        // these malleable signatures as well.\n        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\n            return (address(0), RecoverError.InvalidSignatureS, s);\n        }\n\n        // If the signature is valid (and not malleable), return the signer address\n        address signer = ecrecover(hash, v, r, s);\n        if (signer == address(0)) {\n            return (address(0), RecoverError.InvalidSignature, bytes32(0));\n        }\n\n        return (signer, RecoverError.NoError, bytes32(0));\n    }\n\n    /**\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\n     * `r` and `s` signature fields separately.\n     */\n    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {\n        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);\n        _throwError(error, errorArg);\n        return recovered;\n    }\n\n    /**\n     * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.\n     */\n    function _throwError(RecoverError error, bytes32 errorArg) private pure {\n        if (error == RecoverError.NoError) {\n            return; // no error: do nothing\n        } else if (error == RecoverError.InvalidSignature) {\n            revert ECDSAInvalidSignature();\n        } else if (error == RecoverError.InvalidSignatureLength) {\n            revert ECDSAInvalidSignatureLength(uint256(errorArg));\n        } else if (error == RecoverError.InvalidSignatureS) {\n            revert ECDSAInvalidSignatureS(errorArg);\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/MessageHashUtils.sol)\n\npragma solidity ^0.8.20;\n\nimport {Strings} from \"../Strings.sol\";\n\n/**\n * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.\n *\n * The library provides methods for generating a hash of a message that conforms to the\n * https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]\n * specifications.\n */\nlibrary MessageHashUtils {\n    /**\n     * @dev Returns the keccak256 digest of an ERC-191 signed data with version\n     * `0x45` (`personal_sign` messages).\n     *\n     * The digest is calculated by prefixing a bytes32 `messageHash` with\n     * `\"\\x19Ethereum Signed Message:\\n32\"` and hashing the result. It corresponds with the\n     * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.\n     *\n     * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with\n     * keccak256, although any bytes32 value can be safely used because the final digest will\n     * be re-hashed.\n     *\n     * See {ECDSA-recover}.\n     */\n    function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) {\n        assembly (\"memory-safe\") {\n            mstore(0x00, \"\\x19Ethereum Signed Message:\\n32\") // 32 is the bytes-length of messageHash\n            mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix\n            digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20)\n        }\n    }\n\n    /**\n     * @dev Returns the keccak256 digest of an ERC-191 signed data with version\n     * `0x45` (`personal_sign` messages).\n     *\n     * The digest is calculated by prefixing an arbitrary `message` with\n     * `\"\\x19Ethereum Signed Message:\\n\" + len(message)` and hashing the result. It corresponds with the\n     * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.\n     *\n     * See {ECDSA-recover}.\n     */\n    function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) {\n        return\n            keccak256(bytes.concat(\"\\x19Ethereum Signed Message:\\n\", bytes(Strings.toString(message.length)), message));\n    }\n\n    /**\n     * @dev Returns the keccak256 digest of an ERC-191 signed data with version\n     * `0x00` (data with intended validator).\n     *\n     * The digest is calculated by prefixing an arbitrary `data` with `\"\\x19\\x00\"` and the intended\n     * `validator` address. Then hashing the result.\n     *\n     * See {ECDSA-recover}.\n     */\n    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {\n        return keccak256(abi.encodePacked(hex\"19_00\", validator, data));\n    }\n\n    /**\n     * @dev Returns the keccak256 digest of an EIP-712 typed data (ERC-191 version `0x01`).\n     *\n     * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with\n     * `\\x19\\x01` and hashing the result. It corresponds to the hash signed by the\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.\n     *\n     * See {ECDSA-recover}.\n     */\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) {\n        assembly (\"memory-safe\") {\n            let ptr := mload(0x40)\n            mstore(ptr, hex\"19_01\")\n            mstore(add(ptr, 0x02), domainSeparator)\n            mstore(add(ptr, 0x22), structHash)\n            digest := keccak256(ptr, 0x42)\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Errors.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Collection of common custom errors used in multiple contracts\n *\n * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.\n * It is recommended to avoid relying on the error API for critical functionality.\n *\n * _Available since v5.1._\n */\nlibrary Errors {\n    /**\n     * @dev The ETH balance of the account is not enough to perform the operation.\n     */\n    error InsufficientBalance(uint256 balance, uint256 needed);\n\n    /**\n     * @dev A call to an address target failed. The target may have reverted.\n     */\n    error FailedCall();\n\n    /**\n     * @dev The deployment failed.\n     */\n    error FailedDeployment();\n\n    /**\n     * @dev A necessary precompile is missing.\n     */\n    error MissingPrecompile(address);\n}\n"},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"./IERC165.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n */\nabstract contract ERC165 is IERC165 {\n    /**\n     * @dev See {IERC165-supportsInterface}.\n     */\n    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {\n        return interfaceId == type(IERC165).interfaceId;\n    }\n}\n"},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Interface of the ERC-165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[ERC].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n    /**\n     * @dev Returns true if this contract implements the interface defined by\n     * `interfaceId`. See the corresponding\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]\n     * to learn more about how these ids are created.\n     *\n     * This function call must use less than 30 000 gas.\n     */\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"},"@openzeppelin/contracts/utils/math/Math.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol)\n\npragma solidity ^0.8.20;\n\nimport {Panic} from \"../Panic.sol\";\nimport {SafeCast} from \"./SafeCast.sol\";\n\n/**\n * @dev Standard math utilities missing in the Solidity language.\n */\nlibrary Math {\n    enum Rounding {\n        Floor, // Toward negative infinity\n        Ceil, // Toward positive infinity\n        Trunc, // Toward zero\n        Expand // Away from zero\n    }\n\n    /**\n     * @dev Returns the addition of two unsigned integers, with an success flag (no overflow).\n     */\n    function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            uint256 c = a + b;\n            if (c < a) return (false, 0);\n            return (true, c);\n        }\n    }\n\n    /**\n     * @dev Returns the subtraction of two unsigned integers, with an success flag (no overflow).\n     */\n    function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            if (b > a) return (false, 0);\n            return (true, a - b);\n        }\n    }\n\n    /**\n     * @dev Returns the multiplication of two unsigned integers, with an success flag (no overflow).\n     */\n    function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the\n            // benefit is lost if 'b' is also tested.\n            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522\n            if (a == 0) return (true, 0);\n            uint256 c = a * b;\n            if (c / a != b) return (false, 0);\n            return (true, c);\n        }\n    }\n\n    /**\n     * @dev Returns the division of two unsigned integers, with a success flag (no division by zero).\n     */\n    function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            if (b == 0) return (false, 0);\n            return (true, a / b);\n        }\n    }\n\n    /**\n     * @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero).\n     */\n    function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            if (b == 0) return (false, 0);\n            return (true, a % b);\n        }\n    }\n\n    /**\n     * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n     *\n     * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n     * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n     * one branch when needed, making this function more expensive.\n     */\n    function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) {\n        unchecked {\n            // branchless ternary works because:\n            // b ^ (a ^ b) == a\n            // b ^ 0 == b\n            return b ^ ((a ^ b) * SafeCast.toUint(condition));\n        }\n    }\n\n    /**\n     * @dev Returns the largest of two numbers.\n     */\n    function max(uint256 a, uint256 b) internal pure returns (uint256) {\n        return ternary(a > b, a, b);\n    }\n\n    /**\n     * @dev Returns the smallest of two numbers.\n     */\n    function min(uint256 a, uint256 b) internal pure returns (uint256) {\n        return ternary(a < b, a, b);\n    }\n\n    /**\n     * @dev Returns the average of two numbers. The result is rounded towards\n     * zero.\n     */\n    function average(uint256 a, uint256 b) internal pure returns (uint256) {\n        // (a + b) / 2 can overflow.\n        return (a & b) + (a ^ b) / 2;\n    }\n\n    /**\n     * @dev Returns the ceiling of the division of two numbers.\n     *\n     * This differs from standard division with `/` in that it rounds towards infinity instead\n     * of rounding towards zero.\n     */\n    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\n        if (b == 0) {\n            // Guarantee the same behavior as in a regular Solidity division.\n            Panic.panic(Panic.DIVISION_BY_ZERO);\n        }\n\n        // The following calculation ensures accurate ceiling division without overflow.\n        // Since a is non-zero, (a - 1) / b will not overflow.\n        // The largest possible result occurs when (a - 1) / b is type(uint256).max,\n        // but the largest value we can obtain is type(uint256).max - 1, which happens\n        // when a = type(uint256).max and b = 1.\n        unchecked {\n            return SafeCast.toUint(a > 0) * ((a - 1) / b + 1);\n        }\n    }\n\n    /**\n     * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or\n     * denominator == 0.\n     *\n     * Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by\n     * Uniswap Labs also under MIT license.\n     */\n    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {\n        unchecked {\n            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use\n            // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\n            // variables such that product = prod1 * 2²⁵⁶ + prod0.\n            uint256 prod0 = x * y; // Least significant 256 bits of the product\n            uint256 prod1; // Most significant 256 bits of the product\n            assembly {\n                let mm := mulmod(x, y, not(0))\n                prod1 := sub(sub(mm, prod0), lt(mm, prod0))\n            }\n\n            // Handle non-overflow cases, 256 by 256 division.\n            if (prod1 == 0) {\n                // Solidity will revert if denominator == 0, unlike the div opcode on its own.\n                // The surrounding unchecked block does not change this fact.\n                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.\n                return prod0 / denominator;\n            }\n\n            // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0.\n            if (denominator <= prod1) {\n                Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW));\n            }\n\n            ///////////////////////////////////////////////\n            // 512 by 256 division.\n            ///////////////////////////////////////////////\n\n            // Make division exact by subtracting the remainder from [prod1 prod0].\n            uint256 remainder;\n            assembly {\n                // Compute remainder using mulmod.\n                remainder := mulmod(x, y, denominator)\n\n                // Subtract 256 bit number from 512 bit number.\n                prod1 := sub(prod1, gt(remainder, prod0))\n                prod0 := sub(prod0, remainder)\n            }\n\n            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.\n            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.\n\n            uint256 twos = denominator & (0 - denominator);\n            assembly {\n                // Divide denominator by twos.\n                denominator := div(denominator, twos)\n\n                // Divide [prod1 prod0] by twos.\n                prod0 := div(prod0, twos)\n\n                // Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one.\n                twos := add(div(sub(0, twos), twos), 1)\n            }\n\n            // Shift in bits from prod1 into prod0.\n            prod0 |= prod1 * twos;\n\n            // Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such\n            // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for\n            // four bits. That is, denominator * inv ≡ 1 mod 2⁴.\n            uint256 inverse = (3 * denominator) ^ 2;\n\n            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also\n            // works in modular arithmetic, doubling the correct bits in each step.\n            inverse *= 2 - denominator * inverse; // inverse mod 2⁸\n            inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶\n            inverse *= 2 - denominator * inverse; // inverse mod 2³²\n            inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴\n            inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸\n            inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶\n\n            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.\n            // This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is\n            // less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and prod1\n            // is no longer required.\n            result = prod0 * inverse;\n            return result;\n        }\n    }\n\n    /**\n     * @dev Calculates x * y / denominator with full precision, following the selected rounding direction.\n     */\n    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {\n        return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0);\n    }\n\n    /**\n     * @dev Calculate the modular multiplicative inverse of a number in Z/nZ.\n     *\n     * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.\n     * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.\n     *\n     * If the input value is not inversible, 0 is returned.\n     *\n     * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the\n     * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}.\n     */\n    function invMod(uint256 a, uint256 n) internal pure returns (uint256) {\n        unchecked {\n            if (n == 0) return 0;\n\n            // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version)\n            // Used to compute integers x and y such that: ax + ny = gcd(a, n).\n            // When the gcd is 1, then the inverse of a modulo n exists and it's x.\n            // ax + ny = 1\n            // ax = 1 + (-y)n\n            // ax ≡ 1 (mod n) # x is the inverse of a modulo n\n\n            // If the remainder is 0 the gcd is n right away.\n            uint256 remainder = a % n;\n            uint256 gcd = n;\n\n            // Therefore the initial coefficients are:\n            // ax + ny = gcd(a, n) = n\n            // 0a + 1n = n\n            int256 x = 0;\n            int256 y = 1;\n\n            while (remainder != 0) {\n                uint256 quotient = gcd / remainder;\n\n                (gcd, remainder) = (\n                    // The old remainder is the next gcd to try.\n                    remainder,\n                    // Compute the next remainder.\n                    // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd\n                    // where gcd is at most n (capped to type(uint256).max)\n                    gcd - remainder * quotient\n                );\n\n                (x, y) = (\n                    // Increment the coefficient of a.\n                    y,\n                    // Decrement the coefficient of n.\n                    // Can overflow, but the result is casted to uint256 so that the\n                    // next value of y is \"wrapped around\" to a value between 0 and n - 1.\n                    x - y * int256(quotient)\n                );\n            }\n\n            if (gcd != 1) return 0; // No inverse exists.\n            return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative.\n        }\n    }\n\n    /**\n     * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.\n     *\n     * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is\n     * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that\n     * `a**(p-2)` is the modular multiplicative inverse of a in Fp.\n     *\n     * NOTE: this function does NOT check that `p` is a prime greater than `2`.\n     */\n    function invModPrime(uint256 a, uint256 p) internal view returns (uint256) {\n        unchecked {\n            return Math.modExp(a, p - 2, p);\n        }\n    }\n\n    /**\n     * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)\n     *\n     * Requirements:\n     * - modulus can't be zero\n     * - underlying staticcall to precompile must succeed\n     *\n     * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make\n     * sure the chain you're using it on supports the precompiled contract for modular exponentiation\n     * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,\n     * the underlying function will succeed given the lack of a revert, but the result may be incorrectly\n     * interpreted as 0.\n     */\n    function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) {\n        (bool success, uint256 result) = tryModExp(b, e, m);\n        if (!success) {\n            Panic.panic(Panic.DIVISION_BY_ZERO);\n        }\n        return result;\n    }\n\n    /**\n     * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).\n     * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying\n     * to operate modulo 0 or if the underlying precompile reverted.\n     *\n     * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain\n     * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in\n     * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack\n     * of a revert, but the result may be incorrectly interpreted as 0.\n     */\n    function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) {\n        if (m == 0) return (false, 0);\n        assembly (\"memory-safe\") {\n            let ptr := mload(0x40)\n            // | Offset    | Content    | Content (Hex)                                                      |\n            // |-----------|------------|--------------------------------------------------------------------|\n            // | 0x00:0x1f | size of b  | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n            // | 0x20:0x3f | size of e  | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n            // | 0x40:0x5f | size of m  | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n            // | 0x60:0x7f | value of b | 0x<.............................................................b> |\n            // | 0x80:0x9f | value of e | 0x<.............................................................e> |\n            // | 0xa0:0xbf | value of m | 0x<.............................................................m> |\n            mstore(ptr, 0x20)\n            mstore(add(ptr, 0x20), 0x20)\n            mstore(add(ptr, 0x40), 0x20)\n            mstore(add(ptr, 0x60), b)\n            mstore(add(ptr, 0x80), e)\n            mstore(add(ptr, 0xa0), m)\n\n            // Given the result < m, it's guaranteed to fit in 32 bytes,\n            // so we can use the memory scratch space located at offset 0.\n            success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20)\n            result := mload(0x00)\n        }\n    }\n\n    /**\n     * @dev Variant of {modExp} that supports inputs of arbitrary length.\n     */\n    function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) {\n        (bool success, bytes memory result) = tryModExp(b, e, m);\n        if (!success) {\n            Panic.panic(Panic.DIVISION_BY_ZERO);\n        }\n        return result;\n    }\n\n    /**\n     * @dev Variant of {tryModExp} that supports inputs of arbitrary length.\n     */\n    function tryModExp(\n        bytes memory b,\n        bytes memory e,\n        bytes memory m\n    ) internal view returns (bool success, bytes memory result) {\n        if (_zeroBytes(m)) return (false, new bytes(0));\n\n        uint256 mLen = m.length;\n\n        // Encode call args in result and move the free memory pointer\n        result = abi.encodePacked(b.length, e.length, mLen, b, e, m);\n\n        assembly (\"memory-safe\") {\n            let dataPtr := add(result, 0x20)\n            // Write result on top of args to avoid allocating extra memory.\n            success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen)\n            // Overwrite the length.\n            // result.length > returndatasize() is guaranteed because returndatasize() == m.length\n            mstore(result, mLen)\n            // Set the memory pointer after the returned data.\n            mstore(0x40, add(dataPtr, mLen))\n        }\n    }\n\n    /**\n     * @dev Returns whether the provided byte array is zero.\n     */\n    function _zeroBytes(bytes memory byteArray) private pure returns (bool) {\n        for (uint256 i = 0; i < byteArray.length; ++i) {\n            if (byteArray[i] != 0) {\n                return false;\n            }\n        }\n        return true;\n    }\n\n    /**\n     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded\n     * towards zero.\n     *\n     * This method is based on Newton's method for computing square roots; the algorithm is restricted to only\n     * using integer operations.\n     */\n    function sqrt(uint256 a) internal pure returns (uint256) {\n        unchecked {\n            // Take care of easy edge cases when a == 0 or a == 1\n            if (a <= 1) {\n                return a;\n            }\n\n            // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a\n            // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between\n            // the current value as `ε_n = | x_n - sqrt(a) |`.\n            //\n            // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root\n            // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is\n            // bigger than any uint256.\n            //\n            // By noticing that\n            // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)`\n            // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar\n            // to the msb function.\n            uint256 aa = a;\n            uint256 xn = 1;\n\n            if (aa >= (1 << 128)) {\n                aa >>= 128;\n                xn <<= 64;\n            }\n            if (aa >= (1 << 64)) {\n                aa >>= 64;\n                xn <<= 32;\n            }\n            if (aa >= (1 << 32)) {\n                aa >>= 32;\n                xn <<= 16;\n            }\n            if (aa >= (1 << 16)) {\n                aa >>= 16;\n                xn <<= 8;\n            }\n            if (aa >= (1 << 8)) {\n                aa >>= 8;\n                xn <<= 4;\n            }\n            if (aa >= (1 << 4)) {\n                aa >>= 4;\n                xn <<= 2;\n            }\n            if (aa >= (1 << 2)) {\n                xn <<= 1;\n            }\n\n            // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1).\n            //\n            // We can refine our estimation by noticing that the middle of that interval minimizes the error.\n            // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2).\n            // This is going to be our x_0 (and ε_0)\n            xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2)\n\n            // From here, Newton's method give us:\n            // x_{n+1} = (x_n + a / x_n) / 2\n            //\n            // One should note that:\n            // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a\n            //              = ((x_n² + a) / (2 * x_n))² - a\n            //              = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a\n            //              = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²)\n            //              = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²)\n            //              = (x_n² - a)² / (2 * x_n)²\n            //              = ((x_n² - a) / (2 * x_n))²\n            //              ≥ 0\n            // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n\n            //\n            // This gives us the proof of quadratic convergence of the sequence:\n            // ε_{n+1} = | x_{n+1} - sqrt(a) |\n            //         = | (x_n + a / x_n) / 2 - sqrt(a) |\n            //         = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) |\n            //         = | (x_n - sqrt(a))² / (2 * x_n) |\n            //         = | ε_n² / (2 * x_n) |\n            //         = ε_n² / | (2 * x_n) |\n            //\n            // For the first iteration, we have a special case where x_0 is known:\n            // ε_1 = ε_0² / | (2 * x_0) |\n            //     ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2)))\n            //     ≤ 2**(2*e-4) / (3 * 2**(e-1))\n            //     ≤ 2**(e-3) / 3\n            //     ≤ 2**(e-3-log2(3))\n            //     ≤ 2**(e-4.5)\n            //\n            // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n:\n            // ε_{n+1} = ε_n² / | (2 * x_n) |\n            //         ≤ (2**(e-k))² / (2 * 2**(e-1))\n            //         ≤ 2**(2*e-2*k) / 2**e\n            //         ≤ 2**(e-2*k)\n            xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5)  -- special case, see above\n            xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9)    -- general case with k = 4.5\n            xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18)   -- general case with k = 9\n            xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36)   -- general case with k = 18\n            xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72)   -- general case with k = 36\n            xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144)  -- general case with k = 72\n\n            // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision\n            // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either\n            // sqrt(a) or sqrt(a) + 1.\n            return xn - SafeCast.toUint(xn > a / xn);\n        }\n    }\n\n    /**\n     * @dev Calculates sqrt(a), following the selected rounding direction.\n     */\n    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = sqrt(a);\n            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a);\n        }\n    }\n\n    /**\n     * @dev Return the log in base 2 of a positive value rounded towards zero.\n     * Returns 0 if given 0.\n     */\n    function log2(uint256 value) internal pure returns (uint256) {\n        uint256 result = 0;\n        uint256 exp;\n        unchecked {\n            exp = 128 * SafeCast.toUint(value > (1 << 128) - 1);\n            value >>= exp;\n            result += exp;\n\n            exp = 64 * SafeCast.toUint(value > (1 << 64) - 1);\n            value >>= exp;\n            result += exp;\n\n            exp = 32 * SafeCast.toUint(value > (1 << 32) - 1);\n            value >>= exp;\n            result += exp;\n\n            exp = 16 * SafeCast.toUint(value > (1 << 16) - 1);\n            value >>= exp;\n            result += exp;\n\n            exp = 8 * SafeCast.toUint(value > (1 << 8) - 1);\n            value >>= exp;\n            result += exp;\n\n            exp = 4 * SafeCast.toUint(value > (1 << 4) - 1);\n            value >>= exp;\n            result += exp;\n\n            exp = 2 * SafeCast.toUint(value > (1 << 2) - 1);\n            value >>= exp;\n            result += exp;\n\n            result += SafeCast.toUint(value > 1);\n        }\n        return result;\n    }\n\n    /**\n     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n     * Returns 0 if given 0.\n     */\n    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = log2(value);\n            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value);\n        }\n    }\n\n    /**\n     * @dev Return the log in base 10 of a positive value rounded towards zero.\n     * Returns 0 if given 0.\n     */\n    function log10(uint256 value) internal pure returns (uint256) {\n        uint256 result = 0;\n        unchecked {\n            if (value >= 10 ** 64) {\n                value /= 10 ** 64;\n                result += 64;\n            }\n            if (value >= 10 ** 32) {\n                value /= 10 ** 32;\n                result += 32;\n            }\n            if (value >= 10 ** 16) {\n                value /= 10 ** 16;\n                result += 16;\n            }\n            if (value >= 10 ** 8) {\n                value /= 10 ** 8;\n                result += 8;\n            }\n            if (value >= 10 ** 4) {\n                value /= 10 ** 4;\n                result += 4;\n            }\n            if (value >= 10 ** 2) {\n                value /= 10 ** 2;\n                result += 2;\n            }\n            if (value >= 10 ** 1) {\n                result += 1;\n            }\n        }\n        return result;\n    }\n\n    /**\n     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n     * Returns 0 if given 0.\n     */\n    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = log10(value);\n            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value);\n        }\n    }\n\n    /**\n     * @dev Return the log in base 256 of a positive value rounded towards zero.\n     * Returns 0 if given 0.\n     *\n     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.\n     */\n    function log256(uint256 value) internal pure returns (uint256) {\n        uint256 result = 0;\n        uint256 isGt;\n        unchecked {\n            isGt = SafeCast.toUint(value > (1 << 128) - 1);\n            value >>= isGt * 128;\n            result += isGt * 16;\n\n            isGt = SafeCast.toUint(value > (1 << 64) - 1);\n            value >>= isGt * 64;\n            result += isGt * 8;\n\n            isGt = SafeCast.toUint(value > (1 << 32) - 1);\n            value >>= isGt * 32;\n            result += isGt * 4;\n\n            isGt = SafeCast.toUint(value > (1 << 16) - 1);\n            value >>= isGt * 16;\n            result += isGt * 2;\n\n            result += SafeCast.toUint(value > (1 << 8) - 1);\n        }\n        return result;\n    }\n\n    /**\n     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n     * Returns 0 if given 0.\n     */\n    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = log256(value);\n            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value);\n        }\n    }\n\n    /**\n     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.\n     */\n    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {\n        return uint8(rounding) % 2 == 1;\n    }\n}\n"},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)\n// This file was procedurally generated from scripts/generate/templates/SafeCast.js.\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow\n * checks.\n *\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\n * easily result in undesired exploitation or bugs, since developers usually\n * assume that overflows raise errors. `SafeCast` restores this intuition by\n * reverting the transaction when such an operation overflows.\n *\n * Using this library instead of the unchecked operations eliminates an entire\n * class of bugs, so it's recommended to use it always.\n */\nlibrary SafeCast {\n    /**\n     * @dev Value doesn't fit in an uint of `bits` size.\n     */\n    error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);\n\n    /**\n     * @dev An int value doesn't fit in an uint of `bits` size.\n     */\n    error SafeCastOverflowedIntToUint(int256 value);\n\n    /**\n     * @dev Value doesn't fit in an int of `bits` size.\n     */\n    error SafeCastOverflowedIntDowncast(uint8 bits, int256 value);\n\n    /**\n     * @dev An uint value doesn't fit in an int of `bits` size.\n     */\n    error SafeCastOverflowedUintToInt(uint256 value);\n\n    /**\n     * @dev Returns the downcasted uint248 from uint256, reverting on\n     * overflow (when the input is greater than largest uint248).\n     *\n     * Counterpart to Solidity's `uint248` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 248 bits\n     */\n    function toUint248(uint256 value) internal pure returns (uint248) {\n        if (value > type(uint248).max) {\n            revert SafeCastOverflowedUintDowncast(248, value);\n        }\n        return uint248(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint240 from uint256, reverting on\n     * overflow (when the input is greater than largest uint240).\n     *\n     * Counterpart to Solidity's `uint240` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 240 bits\n     */\n    function toUint240(uint256 value) internal pure returns (uint240) {\n        if (value > type(uint240).max) {\n            revert SafeCastOverflowedUintDowncast(240, value);\n        }\n        return uint240(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint232 from uint256, reverting on\n     * overflow (when the input is greater than largest uint232).\n     *\n     * Counterpart to Solidity's `uint232` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 232 bits\n     */\n    function toUint232(uint256 value) internal pure returns (uint232) {\n        if (value > type(uint232).max) {\n            revert SafeCastOverflowedUintDowncast(232, value);\n        }\n        return uint232(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint224 from uint256, reverting on\n     * overflow (when the input is greater than largest uint224).\n     *\n     * Counterpart to Solidity's `uint224` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 224 bits\n     */\n    function toUint224(uint256 value) internal pure returns (uint224) {\n        if (value > type(uint224).max) {\n            revert SafeCastOverflowedUintDowncast(224, value);\n        }\n        return uint224(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint216 from uint256, reverting on\n     * overflow (when the input is greater than largest uint216).\n     *\n     * Counterpart to Solidity's `uint216` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 216 bits\n     */\n    function toUint216(uint256 value) internal pure returns (uint216) {\n        if (value > type(uint216).max) {\n            revert SafeCastOverflowedUintDowncast(216, value);\n        }\n        return uint216(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint208 from uint256, reverting on\n     * overflow (when the input is greater than largest uint208).\n     *\n     * Counterpart to Solidity's `uint208` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 208 bits\n     */\n    function toUint208(uint256 value) internal pure returns (uint208) {\n        if (value > type(uint208).max) {\n            revert SafeCastOverflowedUintDowncast(208, value);\n        }\n        return uint208(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint200 from uint256, reverting on\n     * overflow (when the input is greater than largest uint200).\n     *\n     * Counterpart to Solidity's `uint200` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 200 bits\n     */\n    function toUint200(uint256 value) internal pure returns (uint200) {\n        if (value > type(uint200).max) {\n            revert SafeCastOverflowedUintDowncast(200, value);\n        }\n        return uint200(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint192 from uint256, reverting on\n     * overflow (when the input is greater than largest uint192).\n     *\n     * Counterpart to Solidity's `uint192` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 192 bits\n     */\n    function toUint192(uint256 value) internal pure returns (uint192) {\n        if (value > type(uint192).max) {\n            revert SafeCastOverflowedUintDowncast(192, value);\n        }\n        return uint192(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint184 from uint256, reverting on\n     * overflow (when the input is greater than largest uint184).\n     *\n     * Counterpart to Solidity's `uint184` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 184 bits\n     */\n    function toUint184(uint256 value) internal pure returns (uint184) {\n        if (value > type(uint184).max) {\n            revert SafeCastOverflowedUintDowncast(184, value);\n        }\n        return uint184(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint176 from uint256, reverting on\n     * overflow (when the input is greater than largest uint176).\n     *\n     * Counterpart to Solidity's `uint176` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 176 bits\n     */\n    function toUint176(uint256 value) internal pure returns (uint176) {\n        if (value > type(uint176).max) {\n            revert SafeCastOverflowedUintDowncast(176, value);\n        }\n        return uint176(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint168 from uint256, reverting on\n     * overflow (when the input is greater than largest uint168).\n     *\n     * Counterpart to Solidity's `uint168` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 168 bits\n     */\n    function toUint168(uint256 value) internal pure returns (uint168) {\n        if (value > type(uint168).max) {\n            revert SafeCastOverflowedUintDowncast(168, value);\n        }\n        return uint168(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint160 from uint256, reverting on\n     * overflow (when the input is greater than largest uint160).\n     *\n     * Counterpart to Solidity's `uint160` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 160 bits\n     */\n    function toUint160(uint256 value) internal pure returns (uint160) {\n        if (value > type(uint160).max) {\n            revert SafeCastOverflowedUintDowncast(160, value);\n        }\n        return uint160(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint152 from uint256, reverting on\n     * overflow (when the input is greater than largest uint152).\n     *\n     * Counterpart to Solidity's `uint152` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 152 bits\n     */\n    function toUint152(uint256 value) internal pure returns (uint152) {\n        if (value > type(uint152).max) {\n            revert SafeCastOverflowedUintDowncast(152, value);\n        }\n        return uint152(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint144 from uint256, reverting on\n     * overflow (when the input is greater than largest uint144).\n     *\n     * Counterpart to Solidity's `uint144` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 144 bits\n     */\n    function toUint144(uint256 value) internal pure returns (uint144) {\n        if (value > type(uint144).max) {\n            revert SafeCastOverflowedUintDowncast(144, value);\n        }\n        return uint144(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint136 from uint256, reverting on\n     * overflow (when the input is greater than largest uint136).\n     *\n     * Counterpart to Solidity's `uint136` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 136 bits\n     */\n    function toUint136(uint256 value) internal pure returns (uint136) {\n        if (value > type(uint136).max) {\n            revert SafeCastOverflowedUintDowncast(136, value);\n        }\n        return uint136(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint128 from uint256, reverting on\n     * overflow (when the input is greater than largest uint128).\n     *\n     * Counterpart to Solidity's `uint128` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 128 bits\n     */\n    function toUint128(uint256 value) internal pure returns (uint128) {\n        if (value > type(uint128).max) {\n            revert SafeCastOverflowedUintDowncast(128, value);\n        }\n        return uint128(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint120 from uint256, reverting on\n     * overflow (when the input is greater than largest uint120).\n     *\n     * Counterpart to Solidity's `uint120` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 120 bits\n     */\n    function toUint120(uint256 value) internal pure returns (uint120) {\n        if (value > type(uint120).max) {\n            revert SafeCastOverflowedUintDowncast(120, value);\n        }\n        return uint120(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint112 from uint256, reverting on\n     * overflow (when the input is greater than largest uint112).\n     *\n     * Counterpart to Solidity's `uint112` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 112 bits\n     */\n    function toUint112(uint256 value) internal pure returns (uint112) {\n        if (value > type(uint112).max) {\n            revert SafeCastOverflowedUintDowncast(112, value);\n        }\n        return uint112(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint104 from uint256, reverting on\n     * overflow (when the input is greater than largest uint104).\n     *\n     * Counterpart to Solidity's `uint104` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 104 bits\n     */\n    function toUint104(uint256 value) internal pure returns (uint104) {\n        if (value > type(uint104).max) {\n            revert SafeCastOverflowedUintDowncast(104, value);\n        }\n        return uint104(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint96 from uint256, reverting on\n     * overflow (when the input is greater than largest uint96).\n     *\n     * Counterpart to Solidity's `uint96` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 96 bits\n     */\n    function toUint96(uint256 value) internal pure returns (uint96) {\n        if (value > type(uint96).max) {\n            revert SafeCastOverflowedUintDowncast(96, value);\n        }\n        return uint96(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint88 from uint256, reverting on\n     * overflow (when the input is greater than largest uint88).\n     *\n     * Counterpart to Solidity's `uint88` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 88 bits\n     */\n    function toUint88(uint256 value) internal pure returns (uint88) {\n        if (value > type(uint88).max) {\n            revert SafeCastOverflowedUintDowncast(88, value);\n        }\n        return uint88(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint80 from uint256, reverting on\n     * overflow (when the input is greater than largest uint80).\n     *\n     * Counterpart to Solidity's `uint80` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 80 bits\n     */\n    function toUint80(uint256 value) internal pure returns (uint80) {\n        if (value > type(uint80).max) {\n            revert SafeCastOverflowedUintDowncast(80, value);\n        }\n        return uint80(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint72 from uint256, reverting on\n     * overflow (when the input is greater than largest uint72).\n     *\n     * Counterpart to Solidity's `uint72` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 72 bits\n     */\n    function toUint72(uint256 value) internal pure returns (uint72) {\n        if (value > type(uint72).max) {\n            revert SafeCastOverflowedUintDowncast(72, value);\n        }\n        return uint72(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint64 from uint256, reverting on\n     * overflow (when the input is greater than largest uint64).\n     *\n     * Counterpart to Solidity's `uint64` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 64 bits\n     */\n    function toUint64(uint256 value) internal pure returns (uint64) {\n        if (value > type(uint64).max) {\n            revert SafeCastOverflowedUintDowncast(64, value);\n        }\n        return uint64(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint56 from uint256, reverting on\n     * overflow (when the input is greater than largest uint56).\n     *\n     * Counterpart to Solidity's `uint56` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 56 bits\n     */\n    function toUint56(uint256 value) internal pure returns (uint56) {\n        if (value > type(uint56).max) {\n            revert SafeCastOverflowedUintDowncast(56, value);\n        }\n        return uint56(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint48 from uint256, reverting on\n     * overflow (when the input is greater than largest uint48).\n     *\n     * Counterpart to Solidity's `uint48` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 48 bits\n     */\n    function toUint48(uint256 value) internal pure returns (uint48) {\n        if (value > type(uint48).max) {\n            revert SafeCastOverflowedUintDowncast(48, value);\n        }\n        return uint48(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint40 from uint256, reverting on\n     * overflow (when the input is greater than largest uint40).\n     *\n     * Counterpart to Solidity's `uint40` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 40 bits\n     */\n    function toUint40(uint256 value) internal pure returns (uint40) {\n        if (value > type(uint40).max) {\n            revert SafeCastOverflowedUintDowncast(40, value);\n        }\n        return uint40(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint32 from uint256, reverting on\n     * overflow (when the input is greater than largest uint32).\n     *\n     * Counterpart to Solidity's `uint32` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 32 bits\n     */\n    function toUint32(uint256 value) internal pure returns (uint32) {\n        if (value > type(uint32).max) {\n            revert SafeCastOverflowedUintDowncast(32, value);\n        }\n        return uint32(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint24 from uint256, reverting on\n     * overflow (when the input is greater than largest uint24).\n     *\n     * Counterpart to Solidity's `uint24` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 24 bits\n     */\n    function toUint24(uint256 value) internal pure returns (uint24) {\n        if (value > type(uint24).max) {\n            revert SafeCastOverflowedUintDowncast(24, value);\n        }\n        return uint24(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint16 from uint256, reverting on\n     * overflow (when the input is greater than largest uint16).\n     *\n     * Counterpart to Solidity's `uint16` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 16 bits\n     */\n    function toUint16(uint256 value) internal pure returns (uint16) {\n        if (value > type(uint16).max) {\n            revert SafeCastOverflowedUintDowncast(16, value);\n        }\n        return uint16(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint8 from uint256, reverting on\n     * overflow (when the input is greater than largest uint8).\n     *\n     * Counterpart to Solidity's `uint8` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 8 bits\n     */\n    function toUint8(uint256 value) internal pure returns (uint8) {\n        if (value > type(uint8).max) {\n            revert SafeCastOverflowedUintDowncast(8, value);\n        }\n        return uint8(value);\n    }\n\n    /**\n     * @dev Converts a signed int256 into an unsigned uint256.\n     *\n     * Requirements:\n     *\n     * - input must be greater than or equal to 0.\n     */\n    function toUint256(int256 value) internal pure returns (uint256) {\n        if (value < 0) {\n            revert SafeCastOverflowedIntToUint(value);\n        }\n        return uint256(value);\n    }\n\n    /**\n     * @dev Returns the downcasted int248 from int256, reverting on\n     * overflow (when the input is less than smallest int248 or\n     * greater than largest int248).\n     *\n     * Counterpart to Solidity's `int248` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 248 bits\n     */\n    function toInt248(int256 value) internal pure returns (int248 downcasted) {\n        downcasted = int248(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(248, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int240 from int256, reverting on\n     * overflow (when the input is less than smallest int240 or\n     * greater than largest int240).\n     *\n     * Counterpart to Solidity's `int240` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 240 bits\n     */\n    function toInt240(int256 value) internal pure returns (int240 downcasted) {\n        downcasted = int240(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(240, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int232 from int256, reverting on\n     * overflow (when the input is less than smallest int232 or\n     * greater than largest int232).\n     *\n     * Counterpart to Solidity's `int232` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 232 bits\n     */\n    function toInt232(int256 value) internal pure returns (int232 downcasted) {\n        downcasted = int232(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(232, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int224 from int256, reverting on\n     * overflow (when the input is less than smallest int224 or\n     * greater than largest int224).\n     *\n     * Counterpart to Solidity's `int224` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 224 bits\n     */\n    function toInt224(int256 value) internal pure returns (int224 downcasted) {\n        downcasted = int224(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(224, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int216 from int256, reverting on\n     * overflow (when the input is less than smallest int216 or\n     * greater than largest int216).\n     *\n     * Counterpart to Solidity's `int216` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 216 bits\n     */\n    function toInt216(int256 value) internal pure returns (int216 downcasted) {\n        downcasted = int216(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(216, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int208 from int256, reverting on\n     * overflow (when the input is less than smallest int208 or\n     * greater than largest int208).\n     *\n     * Counterpart to Solidity's `int208` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 208 bits\n     */\n    function toInt208(int256 value) internal pure returns (int208 downcasted) {\n        downcasted = int208(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(208, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int200 from int256, reverting on\n     * overflow (when the input is less than smallest int200 or\n     * greater than largest int200).\n     *\n     * Counterpart to Solidity's `int200` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 200 bits\n     */\n    function toInt200(int256 value) internal pure returns (int200 downcasted) {\n        downcasted = int200(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(200, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int192 from int256, reverting on\n     * overflow (when the input is less than smallest int192 or\n     * greater than largest int192).\n     *\n     * Counterpart to Solidity's `int192` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 192 bits\n     */\n    function toInt192(int256 value) internal pure returns (int192 downcasted) {\n        downcasted = int192(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(192, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int184 from int256, reverting on\n     * overflow (when the input is less than smallest int184 or\n     * greater than largest int184).\n     *\n     * Counterpart to Solidity's `int184` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 184 bits\n     */\n    function toInt184(int256 value) internal pure returns (int184 downcasted) {\n        downcasted = int184(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(184, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int176 from int256, reverting on\n     * overflow (when the input is less than smallest int176 or\n     * greater than largest int176).\n     *\n     * Counterpart to Solidity's `int176` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 176 bits\n     */\n    function toInt176(int256 value) internal pure returns (int176 downcasted) {\n        downcasted = int176(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(176, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int168 from int256, reverting on\n     * overflow (when the input is less than smallest int168 or\n     * greater than largest int168).\n     *\n     * Counterpart to Solidity's `int168` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 168 bits\n     */\n    function toInt168(int256 value) internal pure returns (int168 downcasted) {\n        downcasted = int168(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(168, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int160 from int256, reverting on\n     * overflow (when the input is less than smallest int160 or\n     * greater than largest int160).\n     *\n     * Counterpart to Solidity's `int160` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 160 bits\n     */\n    function toInt160(int256 value) internal pure returns (int160 downcasted) {\n        downcasted = int160(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(160, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int152 from int256, reverting on\n     * overflow (when the input is less than smallest int152 or\n     * greater than largest int152).\n     *\n     * Counterpart to Solidity's `int152` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 152 bits\n     */\n    function toInt152(int256 value) internal pure returns (int152 downcasted) {\n        downcasted = int152(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(152, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int144 from int256, reverting on\n     * overflow (when the input is less than smallest int144 or\n     * greater than largest int144).\n     *\n     * Counterpart to Solidity's `int144` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 144 bits\n     */\n    function toInt144(int256 value) internal pure returns (int144 downcasted) {\n        downcasted = int144(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(144, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int136 from int256, reverting on\n     * overflow (when the input is less than smallest int136 or\n     * greater than largest int136).\n     *\n     * Counterpart to Solidity's `int136` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 136 bits\n     */\n    function toInt136(int256 value) internal pure returns (int136 downcasted) {\n        downcasted = int136(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(136, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int128 from int256, reverting on\n     * overflow (when the input is less than smallest int128 or\n     * greater than largest int128).\n     *\n     * Counterpart to Solidity's `int128` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 128 bits\n     */\n    function toInt128(int256 value) internal pure returns (int128 downcasted) {\n        downcasted = int128(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(128, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int120 from int256, reverting on\n     * overflow (when the input is less than smallest int120 or\n     * greater than largest int120).\n     *\n     * Counterpart to Solidity's `int120` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 120 bits\n     */\n    function toInt120(int256 value) internal pure returns (int120 downcasted) {\n        downcasted = int120(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(120, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int112 from int256, reverting on\n     * overflow (when the input is less than smallest int112 or\n     * greater than largest int112).\n     *\n     * Counterpart to Solidity's `int112` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 112 bits\n     */\n    function toInt112(int256 value) internal pure returns (int112 downcasted) {\n        downcasted = int112(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(112, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int104 from int256, reverting on\n     * overflow (when the input is less than smallest int104 or\n     * greater than largest int104).\n     *\n     * Counterpart to Solidity's `int104` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 104 bits\n     */\n    function toInt104(int256 value) internal pure returns (int104 downcasted) {\n        downcasted = int104(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(104, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int96 from int256, reverting on\n     * overflow (when the input is less than smallest int96 or\n     * greater than largest int96).\n     *\n     * Counterpart to Solidity's `int96` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 96 bits\n     */\n    function toInt96(int256 value) internal pure returns (int96 downcasted) {\n        downcasted = int96(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(96, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int88 from int256, reverting on\n     * overflow (when the input is less than smallest int88 or\n     * greater than largest int88).\n     *\n     * Counterpart to Solidity's `int88` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 88 bits\n     */\n    function toInt88(int256 value) internal pure returns (int88 downcasted) {\n        downcasted = int88(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(88, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int80 from int256, reverting on\n     * overflow (when the input is less than smallest int80 or\n     * greater than largest int80).\n     *\n     * Counterpart to Solidity's `int80` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 80 bits\n     */\n    function toInt80(int256 value) internal pure returns (int80 downcasted) {\n        downcasted = int80(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(80, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int72 from int256, reverting on\n     * overflow (when the input is less than smallest int72 or\n     * greater than largest int72).\n     *\n     * Counterpart to Solidity's `int72` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 72 bits\n     */\n    function toInt72(int256 value) internal pure returns (int72 downcasted) {\n        downcasted = int72(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(72, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int64 from int256, reverting on\n     * overflow (when the input is less than smallest int64 or\n     * greater than largest int64).\n     *\n     * Counterpart to Solidity's `int64` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 64 bits\n     */\n    function toInt64(int256 value) internal pure returns (int64 downcasted) {\n        downcasted = int64(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(64, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int56 from int256, reverting on\n     * overflow (when the input is less than smallest int56 or\n     * greater than largest int56).\n     *\n     * Counterpart to Solidity's `int56` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 56 bits\n     */\n    function toInt56(int256 value) internal pure returns (int56 downcasted) {\n        downcasted = int56(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(56, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int48 from int256, reverting on\n     * overflow (when the input is less than smallest int48 or\n     * greater than largest int48).\n     *\n     * Counterpart to Solidity's `int48` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 48 bits\n     */\n    function toInt48(int256 value) internal pure returns (int48 downcasted) {\n        downcasted = int48(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(48, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int40 from int256, reverting on\n     * overflow (when the input is less than smallest int40 or\n     * greater than largest int40).\n     *\n     * Counterpart to Solidity's `int40` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 40 bits\n     */\n    function toInt40(int256 value) internal pure returns (int40 downcasted) {\n        downcasted = int40(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(40, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int32 from int256, reverting on\n     * overflow (when the input is less than smallest int32 or\n     * greater than largest int32).\n     *\n     * Counterpart to Solidity's `int32` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 32 bits\n     */\n    function toInt32(int256 value) internal pure returns (int32 downcasted) {\n        downcasted = int32(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(32, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int24 from int256, reverting on\n     * overflow (when the input is less than smallest int24 or\n     * greater than largest int24).\n     *\n     * Counterpart to Solidity's `int24` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 24 bits\n     */\n    function toInt24(int256 value) internal pure returns (int24 downcasted) {\n        downcasted = int24(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(24, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int16 from int256, reverting on\n     * overflow (when the input is less than smallest int16 or\n     * greater than largest int16).\n     *\n     * Counterpart to Solidity's `int16` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 16 bits\n     */\n    function toInt16(int256 value) internal pure returns (int16 downcasted) {\n        downcasted = int16(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(16, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int8 from int256, reverting on\n     * overflow (when the input is less than smallest int8 or\n     * greater than largest int8).\n     *\n     * Counterpart to Solidity's `int8` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 8 bits\n     */\n    function toInt8(int256 value) internal pure returns (int8 downcasted) {\n        downcasted = int8(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(8, value);\n        }\n    }\n\n    /**\n     * @dev Converts an unsigned uint256 into a signed int256.\n     *\n     * Requirements:\n     *\n     * - input must be less than or equal to maxInt256.\n     */\n    function toInt256(uint256 value) internal pure returns (int256) {\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\n        if (value > uint256(type(int256).max)) {\n            revert SafeCastOverflowedUintToInt(value);\n        }\n        return int256(value);\n    }\n\n    /**\n     * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump.\n     */\n    function toUint(bool b) internal pure returns (uint256 u) {\n        assembly (\"memory-safe\") {\n            u := iszero(iszero(b))\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)\n\npragma solidity ^0.8.20;\n\nimport {SafeCast} from \"./SafeCast.sol\";\n\n/**\n * @dev Standard signed math utilities missing in the Solidity language.\n */\nlibrary SignedMath {\n    /**\n     * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n     *\n     * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n     * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n     * one branch when needed, making this function more expensive.\n     */\n    function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {\n        unchecked {\n            // branchless ternary works because:\n            // b ^ (a ^ b) == a\n            // b ^ 0 == b\n            return b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));\n        }\n    }\n\n    /**\n     * @dev Returns the largest of two signed numbers.\n     */\n    function max(int256 a, int256 b) internal pure returns (int256) {\n        return ternary(a > b, a, b);\n    }\n\n    /**\n     * @dev Returns the smallest of two signed numbers.\n     */\n    function min(int256 a, int256 b) internal pure returns (int256) {\n        return ternary(a < b, a, b);\n    }\n\n    /**\n     * @dev Returns the average of two signed numbers without overflow.\n     * The result is rounded towards zero.\n     */\n    function average(int256 a, int256 b) internal pure returns (int256) {\n        // Formula from the book \"Hacker's Delight\"\n        int256 x = (a & b) + ((a ^ b) >> 1);\n        return x + (int256(uint256(x) >> 255) & (a ^ b));\n    }\n\n    /**\n     * @dev Returns the absolute unsigned value of a signed value.\n     */\n    function abs(int256 n) internal pure returns (uint256) {\n        unchecked {\n            // Formula from the \"Bit Twiddling Hacks\" by Sean Eron Anderson.\n            // Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift,\n            // taking advantage of the most significant (or \"sign\" bit) in two's complement representation.\n            // This opcode adds new most significant bits set to the value of the previous most significant bit. As a result,\n            // the mask will either be `bytes32(0)` (if n is positive) or `~bytes32(0)` (if n is negative).\n            int256 mask = n >> 255;\n\n            // A `bytes32(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it.\n            return uint256((n + mask) ^ mask);\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Multicall.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Multicall.sol)\n\npragma solidity ^0.8.20;\n\nimport {Address} from \"./Address.sol\";\nimport {Context} from \"./Context.sol\";\n\n/**\n * @dev Provides a function to batch together multiple calls in a single external call.\n *\n * Consider any assumption about calldata validation performed by the sender may be violated if it's not especially\n * careful about sending transactions invoking {multicall}. For example, a relay address that filters function\n * selectors won't filter calls nested within a {multicall} operation.\n *\n * NOTE: Since 5.0.1 and 4.9.4, this contract identifies non-canonical contexts (i.e. `msg.sender` is not {_msgSender}).\n * If a non-canonical context is identified, the following self `delegatecall` appends the last bytes of `msg.data`\n * to the subcall. This makes it safe to use with {ERC2771Context}. Contexts that don't affect the resolution of\n * {_msgSender} are not propagated to subcalls.\n */\nabstract contract Multicall is Context {\n    /**\n     * @dev Receives and executes a batch of function calls on this contract.\n     * @custom:oz-upgrades-unsafe-allow-reachable delegatecall\n     */\n    function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) {\n        bytes memory context = msg.sender == _msgSender()\n            ? new bytes(0)\n            : msg.data[msg.data.length - _contextSuffixLength():];\n\n        results = new bytes[](data.length);\n        for (uint256 i = 0; i < data.length; i++) {\n            results[i] = Address.functionDelegateCall(address(this), bytes.concat(data[i], context));\n        }\n        return results;\n    }\n}\n"},"@openzeppelin/contracts/utils/Panic.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Helper library for emitting standardized panic codes.\n *\n * ```solidity\n * contract Example {\n *      using Panic for uint256;\n *\n *      // Use any of the declared internal constants\n *      function foo() { Panic.GENERIC.panic(); }\n *\n *      // Alternatively\n *      function foo() { Panic.panic(Panic.GENERIC); }\n * }\n * ```\n *\n * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].\n *\n * _Available since v5.1._\n */\n// slither-disable-next-line unused-state\nlibrary Panic {\n    /// @dev generic / unspecified error\n    uint256 internal constant GENERIC = 0x00;\n    /// @dev used by the assert() builtin\n    uint256 internal constant ASSERT = 0x01;\n    /// @dev arithmetic underflow or overflow\n    uint256 internal constant UNDER_OVERFLOW = 0x11;\n    /// @dev division or modulo by zero\n    uint256 internal constant DIVISION_BY_ZERO = 0x12;\n    /// @dev enum conversion error\n    uint256 internal constant ENUM_CONVERSION_ERROR = 0x21;\n    /// @dev invalid encoding in storage\n    uint256 internal constant STORAGE_ENCODING_ERROR = 0x22;\n    /// @dev empty array pop\n    uint256 internal constant EMPTY_ARRAY_POP = 0x31;\n    /// @dev array out of bounds access\n    uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32;\n    /// @dev resource error (too large allocation or too large array)\n    uint256 internal constant RESOURCE_ERROR = 0x41;\n    /// @dev calling invalid internal function\n    uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51;\n\n    /// @dev Reverts with a panic code. Recommended to use with\n    /// the internal constants with predefined codes.\n    function panic(uint256 code) internal pure {\n        assembly (\"memory-safe\") {\n            mstore(0x00, 0x4e487b71)\n            mstore(0x20, code)\n            revert(0x1c, 0x24)\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Strings.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (utils/Strings.sol)\n\npragma solidity ^0.8.20;\n\nimport {Math} from \"./math/Math.sol\";\nimport {SafeCast} from \"./math/SafeCast.sol\";\nimport {SignedMath} from \"./math/SignedMath.sol\";\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n    using SafeCast for *;\n\n    bytes16 private constant HEX_DIGITS = \"0123456789abcdef\";\n    uint8 private constant ADDRESS_LENGTH = 20;\n\n    /**\n     * @dev The `value` string doesn't fit in the specified `length`.\n     */\n    error StringsInsufficientHexLength(uint256 value, uint256 length);\n\n    /**\n     * @dev The string being parsed contains characters that are not in scope of the given base.\n     */\n    error StringsInvalidChar();\n\n    /**\n     * @dev The string being parsed is not a properly formatted address.\n     */\n    error StringsInvalidAddressFormat();\n\n    /**\n     * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n     */\n    function toString(uint256 value) internal pure returns (string memory) {\n        unchecked {\n            uint256 length = Math.log10(value) + 1;\n            string memory buffer = new string(length);\n            uint256 ptr;\n            assembly (\"memory-safe\") {\n                ptr := add(buffer, add(32, length))\n            }\n            while (true) {\n                ptr--;\n                assembly (\"memory-safe\") {\n                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))\n                }\n                value /= 10;\n                if (value == 0) break;\n            }\n            return buffer;\n        }\n    }\n\n    /**\n     * @dev Converts a `int256` to its ASCII `string` decimal representation.\n     */\n    function toStringSigned(int256 value) internal pure returns (string memory) {\n        return string.concat(value < 0 ? \"-\" : \"\", toString(SignedMath.abs(value)));\n    }\n\n    /**\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n     */\n    function toHexString(uint256 value) internal pure returns (string memory) {\n        unchecked {\n            return toHexString(value, Math.log256(value) + 1);\n        }\n    }\n\n    /**\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n     */\n    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n        uint256 localValue = value;\n        bytes memory buffer = new bytes(2 * length + 2);\n        buffer[0] = \"0\";\n        buffer[1] = \"x\";\n        for (uint256 i = 2 * length + 1; i > 1; --i) {\n            buffer[i] = HEX_DIGITS[localValue & 0xf];\n            localValue >>= 4;\n        }\n        if (localValue != 0) {\n            revert StringsInsufficientHexLength(value, length);\n        }\n        return string(buffer);\n    }\n\n    /**\n     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal\n     * representation.\n     */\n    function toHexString(address addr) internal pure returns (string memory) {\n        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);\n    }\n\n    /**\n     * @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal\n     * representation, according to EIP-55.\n     */\n    function toChecksumHexString(address addr) internal pure returns (string memory) {\n        bytes memory buffer = bytes(toHexString(addr));\n\n        // hash the hex part of buffer (skip length + 2 bytes, length 40)\n        uint256 hashValue;\n        assembly (\"memory-safe\") {\n            hashValue := shr(96, keccak256(add(buffer, 0x22), 40))\n        }\n\n        for (uint256 i = 41; i > 1; --i) {\n            // possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f)\n            if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) {\n                // case shift by xoring with 0x20\n                buffer[i] ^= 0x20;\n            }\n            hashValue >>= 4;\n        }\n        return string(buffer);\n    }\n\n    /**\n     * @dev Returns true if the two strings are equal.\n     */\n    function equal(string memory a, string memory b) internal pure returns (bool) {\n        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));\n    }\n\n    /**\n     * @dev Parse a decimal string and returns the value as a `uint256`.\n     *\n     * Requirements:\n     * - The string must be formatted as `[0-9]*`\n     * - The result must fit into an `uint256` type\n     */\n    function parseUint(string memory input) internal pure returns (uint256) {\n        return parseUint(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseUint} that parses a substring of `input` located between position `begin` (included) and\n     * `end` (excluded).\n     *\n     * Requirements:\n     * - The substring must be formatted as `[0-9]*`\n     * - The result must fit into an `uint256` type\n     */\n    function parseUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {\n        (bool success, uint256 value) = tryParseUint(input, begin, end);\n        if (!success) revert StringsInvalidChar();\n        return value;\n    }\n\n    /**\n     * @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character.\n     *\n     * NOTE: This function will revert if the result does not fit in a `uint256`.\n     */\n    function tryParseUint(string memory input) internal pure returns (bool success, uint256 value) {\n        return _tryParseUintUncheckedBounds(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n     * character.\n     *\n     * NOTE: This function will revert if the result does not fit in a `uint256`.\n     */\n    function tryParseUint(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) internal pure returns (bool success, uint256 value) {\n        if (end > bytes(input).length || begin > end) return (false, 0);\n        return _tryParseUintUncheckedBounds(input, begin, end);\n    }\n\n    /**\n     * @dev Implementation of {tryParseUint} that does not check bounds. Caller should make sure that\n     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n     */\n    function _tryParseUintUncheckedBounds(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) private pure returns (bool success, uint256 value) {\n        bytes memory buffer = bytes(input);\n\n        uint256 result = 0;\n        for (uint256 i = begin; i < end; ++i) {\n            uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));\n            if (chr > 9) return (false, 0);\n            result *= 10;\n            result += chr;\n        }\n        return (true, result);\n    }\n\n    /**\n     * @dev Parse a decimal string and returns the value as a `int256`.\n     *\n     * Requirements:\n     * - The string must be formatted as `[-+]?[0-9]*`\n     * - The result must fit in an `int256` type.\n     */\n    function parseInt(string memory input) internal pure returns (int256) {\n        return parseInt(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and\n     * `end` (excluded).\n     *\n     * Requirements:\n     * - The substring must be formatted as `[-+]?[0-9]*`\n     * - The result must fit in an `int256` type.\n     */\n    function parseInt(string memory input, uint256 begin, uint256 end) internal pure returns (int256) {\n        (bool success, int256 value) = tryParseInt(input, begin, end);\n        if (!success) revert StringsInvalidChar();\n        return value;\n    }\n\n    /**\n     * @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if\n     * the result does not fit in a `int256`.\n     *\n     * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.\n     */\n    function tryParseInt(string memory input) internal pure returns (bool success, int256 value) {\n        return _tryParseIntUncheckedBounds(input, 0, bytes(input).length);\n    }\n\n    uint256 private constant ABS_MIN_INT256 = 2 ** 255;\n\n    /**\n     * @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n     * character or if the result does not fit in a `int256`.\n     *\n     * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.\n     */\n    function tryParseInt(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) internal pure returns (bool success, int256 value) {\n        if (end > bytes(input).length || begin > end) return (false, 0);\n        return _tryParseIntUncheckedBounds(input, begin, end);\n    }\n\n    /**\n     * @dev Implementation of {tryParseInt} that does not check bounds. Caller should make sure that\n     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n     */\n    function _tryParseIntUncheckedBounds(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) private pure returns (bool success, int256 value) {\n        bytes memory buffer = bytes(input);\n\n        // Check presence of a negative sign.\n        bytes1 sign = begin == end ? bytes1(0) : bytes1(_unsafeReadBytesOffset(buffer, begin)); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n        bool positiveSign = sign == bytes1(\"+\");\n        bool negativeSign = sign == bytes1(\"-\");\n        uint256 offset = (positiveSign || negativeSign).toUint();\n\n        (bool absSuccess, uint256 absValue) = tryParseUint(input, begin + offset, end);\n\n        if (absSuccess && absValue < ABS_MIN_INT256) {\n            return (true, negativeSign ? -int256(absValue) : int256(absValue));\n        } else if (absSuccess && negativeSign && absValue == ABS_MIN_INT256) {\n            return (true, type(int256).min);\n        } else return (false, 0);\n    }\n\n    /**\n     * @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as a `uint256`.\n     *\n     * Requirements:\n     * - The string must be formatted as `(0x)?[0-9a-fA-F]*`\n     * - The result must fit in an `uint256` type.\n     */\n    function parseHexUint(string memory input) internal pure returns (uint256) {\n        return parseHexUint(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseHexUint} that parses a substring of `input` located between position `begin` (included) and\n     * `end` (excluded).\n     *\n     * Requirements:\n     * - The substring must be formatted as `(0x)?[0-9a-fA-F]*`\n     * - The result must fit in an `uint256` type.\n     */\n    function parseHexUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {\n        (bool success, uint256 value) = tryParseHexUint(input, begin, end);\n        if (!success) revert StringsInvalidChar();\n        return value;\n    }\n\n    /**\n     * @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character.\n     *\n     * NOTE: This function will revert if the result does not fit in a `uint256`.\n     */\n    function tryParseHexUint(string memory input) internal pure returns (bool success, uint256 value) {\n        return _tryParseHexUintUncheckedBounds(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an\n     * invalid character.\n     *\n     * NOTE: This function will revert if the result does not fit in a `uint256`.\n     */\n    function tryParseHexUint(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) internal pure returns (bool success, uint256 value) {\n        if (end > bytes(input).length || begin > end) return (false, 0);\n        return _tryParseHexUintUncheckedBounds(input, begin, end);\n    }\n\n    /**\n     * @dev Implementation of {tryParseHexUint} that does not check bounds. Caller should make sure that\n     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n     */\n    function _tryParseHexUintUncheckedBounds(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) private pure returns (bool success, uint256 value) {\n        bytes memory buffer = bytes(input);\n\n        // skip 0x prefix if present\n        bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(buffer, begin)) == bytes2(\"0x\"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n        uint256 offset = hasPrefix.toUint() * 2;\n\n        uint256 result = 0;\n        for (uint256 i = begin + offset; i < end; ++i) {\n            uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));\n            if (chr > 15) return (false, 0);\n            result *= 16;\n            unchecked {\n                // Multiplying by 16 is equivalent to a shift of 4 bits (with additional overflow check).\n                // This guaratees that adding a value < 16 will not cause an overflow, hence the unchecked.\n                result += chr;\n            }\n        }\n        return (true, result);\n    }\n\n    /**\n     * @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as an `address`.\n     *\n     * Requirements:\n     * - The string must be formatted as `(0x)?[0-9a-fA-F]{40}`\n     */\n    function parseAddress(string memory input) internal pure returns (address) {\n        return parseAddress(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseAddress} that parses a substring of `input` located between position `begin` (included) and\n     * `end` (excluded).\n     *\n     * Requirements:\n     * - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}`\n     */\n    function parseAddress(string memory input, uint256 begin, uint256 end) internal pure returns (address) {\n        (bool success, address value) = tryParseAddress(input, begin, end);\n        if (!success) revert StringsInvalidAddressFormat();\n        return value;\n    }\n\n    /**\n     * @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly\n     * formatted address. See {parseAddress} requirements.\n     */\n    function tryParseAddress(string memory input) internal pure returns (bool success, address value) {\n        return tryParseAddress(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly\n     * formatted address. See {parseAddress} requirements.\n     */\n    function tryParseAddress(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) internal pure returns (bool success, address value) {\n        if (end > bytes(input).length || begin > end) return (false, address(0));\n\n        bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(bytes(input), begin)) == bytes2(\"0x\"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n        uint256 expectedLength = 40 + hasPrefix.toUint() * 2;\n\n        // check that input is the correct length\n        if (end - begin == expectedLength) {\n            // length guarantees that this does not overflow, and value is at most type(uint160).max\n            (bool s, uint256 v) = _tryParseHexUintUncheckedBounds(input, begin, end);\n            return (s, address(uint160(v)));\n        } else {\n            return (false, address(0));\n        }\n    }\n\n    function _tryParseChr(bytes1 chr) private pure returns (uint8) {\n        uint8 value = uint8(chr);\n\n        // Try to parse `chr`:\n        // - Case 1: [0-9]\n        // - Case 2: [a-f]\n        // - Case 3: [A-F]\n        // - otherwise not supported\n        unchecked {\n            if (value > 47 && value < 58) value -= 48;\n            else if (value > 96 && value < 103) value -= 87;\n            else if (value > 64 && value < 71) value -= 55;\n            else return type(uint8).max;\n        }\n\n        return value;\n    }\n\n    /**\n     * @dev Reads a bytes32 from a bytes array without bounds checking.\n     *\n     * NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the\n     * assembly block as such would prevent some optimizations.\n     */\n    function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) {\n        // This is not memory safe in the general case, but all calls to this private function are within bounds.\n        assembly (\"memory-safe\") {\n            value := mload(add(buffer, add(0x20, offset)))\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/types/Time.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/types/Time.sol)\n\npragma solidity ^0.8.20;\n\nimport {Math} from \"../math/Math.sol\";\nimport {SafeCast} from \"../math/SafeCast.sol\";\n\n/**\n * @dev This library provides helpers for manipulating time-related objects.\n *\n * It uses the following types:\n * - `uint48` for timepoints\n * - `uint32` for durations\n *\n * While the library doesn't provide specific types for timepoints and duration, it does provide:\n * - a `Delay` type to represent duration that can be programmed to change value automatically at a given point\n * - additional helper functions\n */\nlibrary Time {\n    using Time for *;\n\n    /**\n     * @dev Get the block timestamp as a Timepoint.\n     */\n    function timestamp() internal view returns (uint48) {\n        return SafeCast.toUint48(block.timestamp);\n    }\n\n    /**\n     * @dev Get the block number as a Timepoint.\n     */\n    function blockNumber() internal view returns (uint48) {\n        return SafeCast.toUint48(block.number);\n    }\n\n    // ==================================================== Delay =====================================================\n    /**\n     * @dev A `Delay` is a uint32 duration that can be programmed to change value automatically at a given point in the\n     * future. The \"effect\" timepoint describes when the transitions happens from the \"old\" value to the \"new\" value.\n     * This allows updating the delay applied to some operation while keeping some guarantees.\n     *\n     * In particular, the {update} function guarantees that if the delay is reduced, the old delay still applies for\n     * some time. For example if the delay is currently 7 days to do an upgrade, the admin should not be able to set\n     * the delay to 0 and upgrade immediately. If the admin wants to reduce the delay, the old delay (7 days) should\n     * still apply for some time.\n     *\n     *\n     * The `Delay` type is 112 bits long, and packs the following:\n     *\n     * ```\n     *   | [uint48]: effect date (timepoint)\n     *   |           | [uint32]: value before (duration)\n     *   ↓           ↓       ↓ [uint32]: value after (duration)\n     * 0xAAAAAAAAAAAABBBBBBBBCCCCCCCC\n     * ```\n     *\n     * NOTE: The {get} and {withUpdate} functions operate using timestamps. Block number based delays are not currently\n     * supported.\n     */\n    type Delay is uint112;\n\n    /**\n     * @dev Wrap a duration into a Delay to add the one-step \"update in the future\" feature\n     */\n    function toDelay(uint32 duration) internal pure returns (Delay) {\n        return Delay.wrap(duration);\n    }\n\n    /**\n     * @dev Get the value at a given timepoint plus the pending value and effect timepoint if there is a scheduled\n     * change after this timepoint. If the effect timepoint is 0, then the pending value should not be considered.\n     */\n    function _getFullAt(\n        Delay self,\n        uint48 timepoint\n    ) private pure returns (uint32 valueBefore, uint32 valueAfter, uint48 effect) {\n        (valueBefore, valueAfter, effect) = self.unpack();\n        return effect <= timepoint ? (valueAfter, 0, 0) : (valueBefore, valueAfter, effect);\n    }\n\n    /**\n     * @dev Get the current value plus the pending value and effect timepoint if there is a scheduled change. If the\n     * effect timepoint is 0, then the pending value should not be considered.\n     */\n    function getFull(Delay self) internal view returns (uint32 valueBefore, uint32 valueAfter, uint48 effect) {\n        return _getFullAt(self, timestamp());\n    }\n\n    /**\n     * @dev Get the current value.\n     */\n    function get(Delay self) internal view returns (uint32) {\n        (uint32 delay, , ) = self.getFull();\n        return delay;\n    }\n\n    /**\n     * @dev Update a Delay object so that it takes a new duration after a timepoint that is automatically computed to\n     * enforce the old delay at the moment of the update. Returns the updated Delay object and the timestamp when the\n     * new delay becomes effective.\n     */\n    function withUpdate(\n        Delay self,\n        uint32 newValue,\n        uint32 minSetback\n    ) internal view returns (Delay updatedDelay, uint48 effect) {\n        uint32 value = self.get();\n        uint32 setback = uint32(Math.max(minSetback, value > newValue ? value - newValue : 0));\n        effect = timestamp() + setback;\n        return (pack(value, newValue, effect), effect);\n    }\n\n    /**\n     * @dev Split a delay into its components: valueBefore, valueAfter and effect (transition timepoint).\n     */\n    function unpack(Delay self) internal pure returns (uint32 valueBefore, uint32 valueAfter, uint48 effect) {\n        uint112 raw = Delay.unwrap(self);\n\n        valueAfter = uint32(raw);\n        valueBefore = uint32(raw >> 32);\n        effect = uint48(raw >> 64);\n\n        return (valueBefore, valueAfter, effect);\n    }\n\n    /**\n     * @dev pack the components into a Delay object.\n     */\n    function pack(uint32 valueBefore, uint32 valueAfter, uint48 effect) internal pure returns (Delay) {\n        return Delay.wrap((uint112(effect) << 64) | (uint112(valueBefore) << 32) | uint112(valueAfter));\n    }\n}\n"},"contracts/AccessControlAccount.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.23;\n\nimport {AccessControl} from \"@openzeppelin/contracts/access/AccessControl.sol\";\nimport {Address} from \"@openzeppelin/contracts/utils/Address.sol\";\nimport {MessageHashUtils} from \"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\";\nimport {BaseAccount} from \"@account-abstraction/contracts/core/BaseAccount.sol\";\nimport {SIG_VALIDATION_SUCCESS, SIG_VALIDATION_FAILED} from \"@account-abstraction/contracts/core/Helpers.sol\";\nimport {IEntryPoint} from \"@account-abstraction/contracts/interfaces/IEntryPoint.sol\";\nimport {PackedUserOperation} from \"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\";\nimport {ECDSA} from \"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\";\n\ncontract AccessControlAccount is AccessControl, BaseAccount {\n  bytes32 public constant WITHDRAW_ROLE = keccak256(\"WITHDRAW_ROLE\");\n  bytes32 public constant EXECUTOR_ROLE = keccak256(\"EXECUTOR_ROLE\");\n\n  IEntryPoint private immutable _entryPoint;\n\n  error RequiredEntryPointOrExecutor(address sender);\n  error WrongArrayLength();\n\n  /// @inheritdoc BaseAccount\n  function entryPoint() public view virtual override returns (IEntryPoint) {\n    return _entryPoint;\n  }\n\n  // solhint-disable-next-line no-empty-blocks\n  receive() external payable {}\n\n  constructor(IEntryPoint anEntryPoint, address admin, address[] memory executors) {\n    _entryPoint = anEntryPoint;\n    _grantRole(DEFAULT_ADMIN_ROLE, admin);\n    for (uint256 i; i < executors.length; i++) {\n      _grantRole(EXECUTOR_ROLE, executors[i]);\n    }\n  }\n\n  // Require the function call went through EntryPoint or owner\n  function _requireFromEntryPointOrExecutor() internal view {\n    if (msg.sender != address(entryPoint()) && !hasRole(EXECUTOR_ROLE, msg.sender))\n      revert RequiredEntryPointOrExecutor(msg.sender);\n  }\n\n  /**\n   * execute a transaction (called directly from owner, or by entryPoint)\n   * @param dest destination address to call\n   * @param value the value to pass in this call\n   * @param func the calldata to pass in this call\n   */\n  function execute(address dest, uint256 value, bytes calldata func) external {\n    _requireFromEntryPointOrExecutor();\n    Address.functionCallWithValue(dest, func, value);\n  }\n\n  /**\n   * execute a sequence of transactions\n   * @dev to reduce gas consumption for trivial case (no value), use a zero-length array to mean zero value\n   * @param dest an array of destination addresses\n   * @param value an array of values to pass to each call. can be zero-length for no-value calls\n   * @param func an array of calldata to pass to each call\n   */\n  function executeBatch(address[] calldata dest, uint256[] calldata value, bytes[] calldata func) external {\n    _requireFromEntryPointOrExecutor();\n    if (dest.length != func.length || (value.length != 0 && value.length != func.length)) revert WrongArrayLength();\n    if (value.length == 0) {\n      for (uint256 i = 0; i < dest.length; i++) {\n        Address.functionCallWithValue(dest[i], func[i], 0);\n      }\n    } else {\n      for (uint256 i = 0; i < dest.length; i++) {\n        Address.functionCallWithValue(dest[i], func[i], value[i]);\n      }\n    }\n  }\n\n  /// implement template method of BaseAccount\n  function _validateSignature(\n    PackedUserOperation calldata userOp,\n    bytes32 userOpHash\n  ) internal virtual override returns (uint256 validationData) {\n    bytes32 hash = MessageHashUtils.toEthSignedMessageHash(userOpHash);\n    address recovered = ECDSA.recover(hash, userOp.signature);\n    if (!hasRole(EXECUTOR_ROLE, recovered)) return SIG_VALIDATION_FAILED;\n    return SIG_VALIDATION_SUCCESS;\n  }\n\n  /**\n   * check current account deposit in the entryPoint\n   */\n  function getDeposit() public view returns (uint256) {\n    return entryPoint().balanceOf(address(this));\n  }\n\n  /**\n   * deposit more funds for this account in the entryPoint\n   */\n  function addDeposit() public payable {\n    entryPoint().depositTo{value: msg.value}(address(this));\n  }\n\n  /**\n   * withdraw value from the account's deposit\n   * @param withdrawAddress target to send to\n   * @param amount to withdraw\n   */\n  function withdrawDepositTo(address payable withdrawAddress, uint256 amount) public onlyRole(WITHDRAW_ROLE) {\n    entryPoint().withdrawTo(withdrawAddress, amount);\n  }\n}\n"},"contracts/AccessManagerAccount.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.23;\n\nimport {AccessManager} from \"./dependencies/AccessManager.sol\";\nimport {Address} from \"@openzeppelin/contracts/utils/Address.sol\";\nimport {MessageHashUtils} from \"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\";\nimport {BaseAccount} from \"@account-abstraction/contracts/core/BaseAccount.sol\";\nimport {SIG_VALIDATION_SUCCESS, SIG_VALIDATION_FAILED} from \"@account-abstraction/contracts/core/Helpers.sol\";\nimport {IEntryPoint} from \"@account-abstraction/contracts/interfaces/IEntryPoint.sol\";\nimport {PackedUserOperation} from \"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\";\nimport {ECDSA} from \"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\";\nimport {BytesLib} from \"solidity-bytes-utils/contracts/BytesLib.sol\";\n\ncontract AccessManagerAccount is AccessManager, BaseAccount {\n  using BytesLib for bytes;\n\n  IEntryPoint private immutable _entryPoint;\n\n  bytes4 private constant EXECUTE_SELECTOR = bytes4(keccak256(\"execute(address,uint256,bytes)\"));\n\n  error OnlyExecuteAllowedFromEntryPoint(bytes4 receivedSelector);\n  error OnlyExternalTargets();\n  error DelayNotAllowed();\n\n  /// @inheritdoc BaseAccount\n  function entryPoint() public view virtual override returns (IEntryPoint) {\n    return _entryPoint;\n  }\n\n  // solhint-disable-next-line no-empty-blocks\n  receive() external payable {}\n\n  constructor(IEntryPoint anEntryPoint, address initialAdmin) AccessManager(initialAdmin) {\n    _entryPoint = anEntryPoint;\n  }\n\n  /**\n   * execute a transaction (called directly from owner, or by entryPoint)\n   * @param dest destination address to call\n   * @param value the value to pass in this call\n   * @param func the calldata to pass in this call\n   */\n  function execute(address dest, uint256 value, bytes calldata func) external {\n    _requireFromEntryPoint();\n    Address.functionCallWithValue(dest, func, value);\n  }\n\n  // hashOperation variant that receives bytes memory\n  function _hashOperation(address caller, address target, bytes memory data) internal pure returns (bytes32) {\n    return keccak256(abi.encode(caller, target, data));\n  }\n\n  function _checkAAExecuteCall(address signer, bytes calldata userOpCallData) internal returns (uint256) {\n    (address target, , bytes memory funcCall) = abi.decode(\n      userOpCallData[4:userOpCallData.length - 4],\n      (address, uint256, bytes)\n    );\n    (bool immediate, uint32 delay) = canCall(signer, target, bytes4(funcCall.toBytes32(0)));\n    if (immediate || delay == 0) return immediate ? SIG_VALIDATION_SUCCESS : SIG_VALIDATION_FAILED;\n    _consumeScheduledOp(_hashOperation(signer, target, funcCall));\n    return SIG_VALIDATION_SUCCESS;\n  }\n\n  /// implement template method of BaseAccount\n  function _validateSignature(\n    PackedUserOperation calldata userOp,\n    bytes32 userOpHash\n  ) internal virtual override frozenTime returns (uint256 validationData) {\n    // First check the initial selector, from EntryPoint only execute and executeBatch are allowed\n    bytes4 selector = bytes4(userOp.callData[0:4]);\n    if (selector != EXECUTE_SELECTOR) revert OnlyExecuteAllowedFromEntryPoint(selector);\n    address target = abi.decode(userOp.callData[4:36], (address));\n    // Calls to address(this) are not allowed through AA. It might be possible to implement, but this\n    // complicates the testing and it might introduce security issues\n    if (target == address(this)) revert OnlyExternalTargets();\n    bytes32 hash = MessageHashUtils.toEthSignedMessageHash(userOpHash);\n    address recovered = ECDSA.recover(hash, userOp.signature);\n    // Check first the signer can call execute\n    if (!_checkCanCall(recovered, userOp.callData, false)) return SIG_VALIDATION_FAILED;\n    // Then check it can call the specific target/selector\n    return _checkAAExecuteCall(recovered, userOp.callData);\n  }\n\n  /**\n   * check current account deposit in the entryPoint\n   */\n  function getDeposit() public view returns (uint256) {\n    return entryPoint().balanceOf(address(this));\n  }\n\n  /**\n   * deposit more funds for this account in the entryPoint\n   */\n  function addDeposit() public payable {\n    entryPoint().depositTo{value: msg.value}(address(this));\n  }\n\n  /**\n   * @dev Adapted from AccessManaged._checkCanCall, checks a method can be called as if the AccessManagerAccount\n   *      was an access managed contract (not validating against admin permissions)\n   */\n  function _checkCanCall(address caller, bytes calldata data, bool fail) internal view returns (bool) {\n    (bool immediate, uint32 delay) = canCall(caller, address(this), bytes4(data[0:4]));\n    if (!immediate) {\n      if (delay > 0) {\n        revert DelayNotAllowed();\n        // Is not possible to handle scheduled operations, because when target=address(this), schedule\n        // doesn't work the same way, otherwise here we should do just\n        // _consumeScheduledOp(hashOperation(caller, address(this), data));\n      } else {\n        if (fail)\n          revert AccessManagerUnauthorizedAccount(caller, getTargetFunctionRole(address(this), bytes4(data[0:4])));\n        else return false;\n      }\n    }\n    return true;\n  }\n  /**\n   * withdraw value from the account's deposit\n   * @param withdrawAddress target to send to\n   * @param amount to withdraw\n   */\n  function withdrawDepositTo(address payable withdrawAddress, uint256 amount) public {\n    _checkCanCall(_msgSender(), _msgData(), true);\n    entryPoint().withdrawTo(withdrawAddress, amount);\n  }\n}\n"},"contracts/dependencies/AccessManager.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (access/manager/AccessManager.sol)\n\npragma solidity ^0.8.20;\n\nimport {IAccessManager} from \"@openzeppelin/contracts/access/manager/IAccessManager.sol\";\nimport {IAccessManaged} from \"@openzeppelin/contracts/access/manager/IAccessManaged.sol\";\nimport {Address} from \"@openzeppelin/contracts/utils/Address.sol\";\nimport {Context} from \"@openzeppelin/contracts/utils/Context.sol\";\nimport {Multicall} from \"@openzeppelin/contracts/utils/Multicall.sol\";\nimport {Math} from \"@openzeppelin/contracts/utils/math/Math.sol\";\nimport {Time} from \"@openzeppelin/contracts/utils/types/Time.sol\";\nimport {FrozenTime} from \"./FrozenTime.sol\";\n\n/**\n * @dev AccessManager is a central contract to store the permissions of a system.\n *\n * A smart contract under the control of an AccessManager instance is known as a target, and will inherit from the\n * {AccessManaged} contract, be connected to this contract as its manager and implement the {AccessManaged-restricted}\n * modifier on a set of functions selected to be permissioned. Note that any function without this setup won't be\n * effectively restricted.\n *\n * The restriction rules for such functions are defined in terms of \"roles\" identified by an `uint64` and scoped\n * by target (`address`) and function selectors (`bytes4`). These roles are stored in this contract and can be\n * configured by admins (`ADMIN_ROLE` members) after a delay (see {getTargetAdminDelay}).\n *\n * For each target contract, admins can configure the following without any delay:\n *\n * * The target's {AccessManaged-authority} via {updateAuthority}.\n * * Close or open a target via {setTargetClosed} keeping the permissions intact.\n * * The roles that are allowed (or disallowed) to call a given function (identified by its selector) through {setTargetFunctionRole}.\n *\n * By default every address is member of the `PUBLIC_ROLE` and every target function is restricted to the `ADMIN_ROLE` until configured otherwise.\n * Additionally, each role has the following configuration options restricted to this manager's admins:\n *\n * * A role's admin role via {setRoleAdmin} who can grant or revoke roles.\n * * A role's guardian role via {setRoleGuardian} who's allowed to cancel operations.\n * * A delay in which a role takes effect after being granted through {setGrantDelay}.\n * * A delay of any target's admin action via {setTargetAdminDelay}.\n * * A role label for discoverability purposes with {labelRole}.\n *\n * Any account can be added and removed into any number of these roles by using the {grantRole} and {revokeRole} functions\n * restricted to each role's admin (see {getRoleAdmin}).\n *\n * Since all the permissions of the managed system can be modified by the admins of this instance, it is expected that\n * they will be highly secured (e.g., a multisig or a well-configured DAO).\n *\n * NOTE: This contract implements a form of the {IAuthority} interface, but {canCall} has additional return data so it\n * doesn't inherit `IAuthority`. It is however compatible with the `IAuthority` interface since the first 32 bytes of\n * the return data are a boolean as expected by that interface.\n *\n * NOTE: Systems that implement other access control mechanisms (for example using {Ownable}) can be paired with an\n * {AccessManager} by transferring permissions (ownership in the case of {Ownable}) directly to the {AccessManager}.\n * Users will be able to interact with these contracts through the {execute} function, following the access rules\n * registered in the {AccessManager}. Keep in mind that in that context, the msg.sender seen by restricted functions\n * will be {AccessManager} itself.\n *\n * WARNING: When granting permissions over an {Ownable} or {AccessControl} contract to an {AccessManager}, be very\n * mindful of the danger associated with functions such as {Ownable-renounceOwnership} or\n * {AccessControl-renounceRole}.\n */\ncontract AccessManager is Context, Multicall, IAccessManager {\n    using Time for *;\n\n    // Structure that stores the details for a target contract.\n    struct TargetConfig {\n        mapping(bytes4 selector => uint64 roleId) allowedRoles;\n        Time.Delay adminDelay;\n        bool closed;\n    }\n\n    // Structure that stores the details for a role/account pair. This structures fit into a single slot.\n    struct Access {\n        // Timepoint at which the user gets the permission.\n        // If this is either 0 or in the future, then the role permission is not available.\n        uint48 since;\n        // Delay for execution. Only applies to restricted() / execute() calls.\n        Time.Delay delay;\n    }\n\n    // Structure that stores the details of a role.\n    struct Role {\n        // Members of the role.\n        mapping(address user => Access access) members;\n        // Admin who can grant or revoke permissions.\n        uint64 admin;\n        // Guardian who can cancel operations targeting functions that need this role.\n        uint64 guardian;\n        // Delay in which the role takes effect after being granted.\n        Time.Delay grantDelay;\n    }\n\n    // Structure that stores the details for a scheduled operation. This structure fits into a single slot.\n    struct Schedule {\n        // Moment at which the operation can be executed.\n        uint48 timepoint;\n        // Operation nonce to allow third-party contracts to identify the operation.\n        uint32 nonce;\n    }\n\n    /**\n     * @dev The identifier of the admin role. Required to perform most configuration operations including\n     * other roles' management and target restrictions.\n     */\n    uint64 public constant ADMIN_ROLE = type(uint64).min; // 0\n\n    /**\n     * @dev The identifier of the public role. Automatically granted to all addresses with no delay.\n     */\n    uint64 public constant PUBLIC_ROLE = type(uint64).max; // 2**64-1\n\n    mapping(address target => TargetConfig mode) private _targets;\n    mapping(uint64 roleId => Role) private _roles;\n    mapping(bytes32 operationId => Schedule) private _schedules;\n\n    // Used to identify operations that are currently being executed via {execute}.\n    // This should be transient storage when supported by the EVM.\n    bytes32 private _executionId;\n\n    bool transient _isFrozen;\n\n    /**\n     * @dev Check that the caller is authorized to perform the operation.\n     * See {AccessManager} description for a detailed breakdown of the authorization logic.\n     */\n    modifier onlyAuthorized() {\n        _checkAuthorized();\n        _;\n    }\n\n    modifier frozenTime() {\n        _isFrozen = true;\n        _;\n        _isFrozen = false;\n    }\n\n    constructor(address initialAdmin) {\n        if (initialAdmin == address(0)) {\n            revert AccessManagerInvalidInitialAdmin(address(0));\n        }\n\n        // admin is active immediately and without any execution delay.\n        _grantRole(ADMIN_ROLE, initialAdmin, 0, 0);\n    }\n\n    // =================================================== GETTERS ====================================================\n    /// @inheritdoc IAccessManager\n    function canCall(\n        address caller,\n        address target,\n        bytes4 selector\n    ) public view virtual returns (bool immediate, uint32 delay) {\n        if (isTargetClosed(target)) {\n            return (false, 0);\n        } else if (caller == address(this)) {\n            // Caller is AccessManager, this means the call was sent through {execute} and it already checked\n            // permissions. We verify that the call \"identifier\", which is set during {execute}, is correct.\n            return (_isExecuting(target, selector), 0);\n        } else {\n            uint64 roleId = getTargetFunctionRole(target, selector);\n            (bool isMember, uint32 currentDelay) = hasRole(roleId, caller);\n            return isMember ? (currentDelay == 0, currentDelay) : (false, 0);\n        }\n    }\n\n    /// @inheritdoc IAccessManager\n    function expiration() public view virtual returns (uint32) {\n        return 1 weeks;\n    }\n\n    /// @inheritdoc IAccessManager\n    function minSetback() public view virtual returns (uint32) {\n        return 5 days;\n    }\n\n    /// @inheritdoc IAccessManager\n    function isTargetClosed(address target) public view virtual returns (bool) {\n        return _targets[target].closed;\n    }\n\n    /// @inheritdoc IAccessManager\n    function getTargetFunctionRole(address target, bytes4 selector) public view virtual returns (uint64) {\n        return _targets[target].allowedRoles[selector];\n    }\n\n    /// @inheritdoc IAccessManager\n    function getTargetAdminDelay(address target) public view virtual returns (uint32) {\n        return _targets[target].adminDelay.get();\n    }\n\n    /// @inheritdoc IAccessManager\n    function getRoleAdmin(uint64 roleId) public view virtual returns (uint64) {\n        return _roles[roleId].admin;\n    }\n\n    /// @inheritdoc IAccessManager\n    function getRoleGuardian(uint64 roleId) public view virtual returns (uint64) {\n        return _roles[roleId].guardian;\n    }\n\n    /// @inheritdoc IAccessManager\n    function getRoleGrantDelay(uint64 roleId) public view virtual returns (uint32) {\n        return _roles[roleId].grantDelay.get();\n    }\n\n    /// @inheritdoc IAccessManager\n    function getAccess(\n        uint64 roleId,\n        address account\n    ) public view virtual returns (uint48 since, uint32 currentDelay, uint32 pendingDelay, uint48 effect) {\n        Access storage access = _roles[roleId].members[account];\n\n        since = access.since;\n        if (_isFrozen) {\n            (currentDelay, pendingDelay, effect) = FrozenTime.getFull(FrozenTime.Delay.wrap(Time.Delay.unwrap(access.delay)));\n        } else {\n            (currentDelay, pendingDelay, effect) = access.delay.getFull();\n        }\n\n        return (since, currentDelay, pendingDelay, effect);\n    }\n\n    /// @inheritdoc IAccessManager\n    function hasRole(\n        uint64 roleId,\n        address account\n    ) public view virtual returns (bool isMember, uint32 executionDelay) {\n        if (roleId == PUBLIC_ROLE) {\n            return (true, 0);\n        } else {\n            (uint48 hasRoleSince, uint32 currentDelay, , ) = getAccess(roleId, account);\n            return (hasRoleSince != 0 && (_isFrozen || hasRoleSince <= Time.timestamp()), currentDelay);\n        }\n    }\n\n    // =============================================== ROLE MANAGEMENT ===============================================\n    /// @inheritdoc IAccessManager\n    function labelRole(uint64 roleId, string calldata label) public virtual onlyAuthorized {\n        if (roleId == ADMIN_ROLE || roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n        emit RoleLabel(roleId, label);\n    }\n\n    /// @inheritdoc IAccessManager\n    function grantRole(uint64 roleId, address account, uint32 executionDelay) public virtual onlyAuthorized {\n        _grantRole(roleId, account, getRoleGrantDelay(roleId), executionDelay);\n    }\n\n    /// @inheritdoc IAccessManager\n    function revokeRole(uint64 roleId, address account) public virtual onlyAuthorized {\n        _revokeRole(roleId, account);\n    }\n\n    /// @inheritdoc IAccessManager\n    function renounceRole(uint64 roleId, address callerConfirmation) public virtual {\n        if (callerConfirmation != _msgSender()) {\n            revert AccessManagerBadConfirmation();\n        }\n        _revokeRole(roleId, callerConfirmation);\n    }\n\n    /// @inheritdoc IAccessManager\n    function setRoleAdmin(uint64 roleId, uint64 admin) public virtual onlyAuthorized {\n        _setRoleAdmin(roleId, admin);\n    }\n\n    /// @inheritdoc IAccessManager\n    function setRoleGuardian(uint64 roleId, uint64 guardian) public virtual onlyAuthorized {\n        _setRoleGuardian(roleId, guardian);\n    }\n\n    /// @inheritdoc IAccessManager\n    function setGrantDelay(uint64 roleId, uint32 newDelay) public virtual onlyAuthorized {\n        _setGrantDelay(roleId, newDelay);\n    }\n\n    /**\n     * @dev Internal version of {grantRole} without access control. Returns true if the role was newly granted.\n     *\n     * Emits a {RoleGranted} event.\n     */\n    function _grantRole(\n        uint64 roleId,\n        address account,\n        uint32 grantDelay,\n        uint32 executionDelay\n    ) internal virtual returns (bool) {\n        if (roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n\n        bool newMember = _roles[roleId].members[account].since == 0;\n        uint48 since;\n\n        if (newMember) {\n            since = Time.timestamp() + grantDelay;\n            _roles[roleId].members[account] = Access({since: since, delay: executionDelay.toDelay()});\n        } else {\n            // No setback here. Value can be reset by doing revoke + grant, effectively allowing the admin to perform\n            // any change to the execution delay within the duration of the role admin delay.\n            (_roles[roleId].members[account].delay, since) = _roles[roleId].members[account].delay.withUpdate(\n                executionDelay,\n                0\n            );\n        }\n\n        emit RoleGranted(roleId, account, executionDelay, since, newMember);\n        return newMember;\n    }\n\n    /**\n     * @dev Internal version of {revokeRole} without access control. This logic is also used by {renounceRole}.\n     * Returns true if the role was previously granted.\n     *\n     * Emits a {RoleRevoked} event if the account had the role.\n     */\n    function _revokeRole(uint64 roleId, address account) internal virtual returns (bool) {\n        if (roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n\n        if (_roles[roleId].members[account].since == 0) {\n            return false;\n        }\n\n        delete _roles[roleId].members[account];\n\n        emit RoleRevoked(roleId, account);\n        return true;\n    }\n\n    /**\n     * @dev Internal version of {setRoleAdmin} without access control.\n     *\n     * Emits a {RoleAdminChanged} event.\n     *\n     * NOTE: Setting the admin role as the `PUBLIC_ROLE` is allowed, but it will effectively allow\n     * anyone to set grant or revoke such role.\n     */\n    function _setRoleAdmin(uint64 roleId, uint64 admin) internal virtual {\n        if (roleId == ADMIN_ROLE || roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n\n        _roles[roleId].admin = admin;\n\n        emit RoleAdminChanged(roleId, admin);\n    }\n\n    /**\n     * @dev Internal version of {setRoleGuardian} without access control.\n     *\n     * Emits a {RoleGuardianChanged} event.\n     *\n     * NOTE: Setting the guardian role as the `PUBLIC_ROLE` is allowed, but it will effectively allow\n     * anyone to cancel any scheduled operation for such role.\n     */\n    function _setRoleGuardian(uint64 roleId, uint64 guardian) internal virtual {\n        if (roleId == ADMIN_ROLE || roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n\n        _roles[roleId].guardian = guardian;\n\n        emit RoleGuardianChanged(roleId, guardian);\n    }\n\n    /**\n     * @dev Internal version of {setGrantDelay} without access control.\n     *\n     * Emits a {RoleGrantDelayChanged} event.\n     */\n    function _setGrantDelay(uint64 roleId, uint32 newDelay) internal virtual {\n        if (roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n\n        uint48 effect;\n        (_roles[roleId].grantDelay, effect) = _roles[roleId].grantDelay.withUpdate(newDelay, minSetback());\n\n        emit RoleGrantDelayChanged(roleId, newDelay, effect);\n    }\n\n    // ============================================= FUNCTION MANAGEMENT ==============================================\n    /// @inheritdoc IAccessManager\n    function setTargetFunctionRole(\n        address target,\n        bytes4[] calldata selectors,\n        uint64 roleId\n    ) public virtual onlyAuthorized {\n        for (uint256 i = 0; i < selectors.length; ++i) {\n            _setTargetFunctionRole(target, selectors[i], roleId);\n        }\n    }\n\n    /**\n     * @dev Internal version of {setTargetFunctionRole} without access control.\n     *\n     * Emits a {TargetFunctionRoleUpdated} event.\n     */\n    function _setTargetFunctionRole(address target, bytes4 selector, uint64 roleId) internal virtual {\n        _targets[target].allowedRoles[selector] = roleId;\n        emit TargetFunctionRoleUpdated(target, selector, roleId);\n    }\n\n    /// @inheritdoc IAccessManager\n    function setTargetAdminDelay(address target, uint32 newDelay) public virtual onlyAuthorized {\n        _setTargetAdminDelay(target, newDelay);\n    }\n\n    /**\n     * @dev Internal version of {setTargetAdminDelay} without access control.\n     *\n     * Emits a {TargetAdminDelayUpdated} event.\n     */\n    function _setTargetAdminDelay(address target, uint32 newDelay) internal virtual {\n        uint48 effect;\n        (_targets[target].adminDelay, effect) = _targets[target].adminDelay.withUpdate(newDelay, minSetback());\n\n        emit TargetAdminDelayUpdated(target, newDelay, effect);\n    }\n\n    // =============================================== MODE MANAGEMENT ================================================\n    /// @inheritdoc IAccessManager\n    function setTargetClosed(address target, bool closed) public virtual onlyAuthorized {\n        _setTargetClosed(target, closed);\n    }\n\n    /**\n     * @dev Set the closed flag for a contract. This is an internal setter with no access restrictions.\n     *\n     * Emits a {TargetClosed} event.\n     */\n    function _setTargetClosed(address target, bool closed) internal virtual {\n        _targets[target].closed = closed;\n        emit TargetClosed(target, closed);\n    }\n\n    // ============================================== DELAYED OPERATIONS ==============================================\n    /// @inheritdoc IAccessManager\n    function getSchedule(bytes32 id) public view virtual returns (uint48) {\n        uint48 timepoint = _schedules[id].timepoint;\n        return _isExpired(timepoint) ? 0 : timepoint;\n    }\n\n    /// @inheritdoc IAccessManager\n    function getNonce(bytes32 id) public view virtual returns (uint32) {\n        return _schedules[id].nonce;\n    }\n\n    /// @inheritdoc IAccessManager\n    function schedule(\n        address target,\n        bytes calldata data,\n        uint48 when\n    ) public virtual returns (bytes32 operationId, uint32 nonce) {\n        address caller = _msgSender();\n\n        // Fetch restrictions that apply to the caller on the targeted function\n        (, uint32 setback) = _canCallExtended(caller, target, data);\n\n        uint48 minWhen = Time.timestamp() + setback;\n\n        // If call with delay is not authorized, or if requested timing is too soon, revert\n        if (setback == 0 || (when > 0 && when < minWhen)) {\n            revert AccessManagerUnauthorizedCall(caller, target, _checkSelector(data));\n        }\n\n        // Reuse variable due to stack too deep\n        when = uint48(Math.max(when, minWhen)); // cast is safe: both inputs are uint48\n\n        // If caller is authorised, schedule operation\n        operationId = hashOperation(caller, target, data);\n\n        _checkNotScheduled(operationId);\n\n        unchecked {\n            // It's not feasible to overflow the nonce in less than 1000 years\n            nonce = _schedules[operationId].nonce + 1;\n        }\n        _schedules[operationId].timepoint = when;\n        _schedules[operationId].nonce = nonce;\n        emit OperationScheduled(operationId, nonce, when, caller, target, data);\n\n        // Using named return values because otherwise we get stack too deep\n    }\n\n    /**\n     * @dev Reverts if the operation is currently scheduled and has not expired.\n     *\n     * NOTE: This function was introduced due to stack too deep errors in schedule.\n     */\n    function _checkNotScheduled(bytes32 operationId) private view {\n        uint48 prevTimepoint = _schedules[operationId].timepoint;\n        if (prevTimepoint != 0 && !_isExpired(prevTimepoint)) {\n            revert AccessManagerAlreadyScheduled(operationId);\n        }\n    }\n\n    /// @inheritdoc IAccessManager\n    // Reentrancy is not an issue because permissions are checked on msg.sender. Additionally,\n    // _consumeScheduledOp guarantees a scheduled operation is only executed once.\n    // slither-disable-next-line reentrancy-no-eth\n    function execute(address target, bytes calldata data) public payable virtual returns (uint32) {\n        address caller = _msgSender();\n\n        // Fetch restrictions that apply to the caller on the targeted function\n        (bool immediate, uint32 setback) = _canCallExtended(caller, target, data);\n\n        // If call is not authorized, revert\n        if (!immediate && setback == 0) {\n            revert AccessManagerUnauthorizedCall(caller, target, _checkSelector(data));\n        }\n\n        bytes32 operationId = hashOperation(caller, target, data);\n        uint32 nonce;\n\n        // If caller is authorised, check operation was scheduled early enough\n        // Consume an available schedule even if there is no currently enforced delay\n        if (setback != 0 || getSchedule(operationId) != 0) {\n            nonce = _consumeScheduledOp(operationId);\n        }\n\n        // Mark the target and selector as authorised\n        bytes32 executionIdBefore = _executionId;\n        _executionId = _hashExecutionId(target, _checkSelector(data));\n\n        // Perform call\n        Address.functionCallWithValue(target, data, msg.value);\n\n        // Reset execute identifier\n        _executionId = executionIdBefore;\n\n        return nonce;\n    }\n\n    /// @inheritdoc IAccessManager\n    function cancel(address caller, address target, bytes calldata data) public virtual returns (uint32) {\n        address msgsender = _msgSender();\n        bytes4 selector = _checkSelector(data);\n\n        bytes32 operationId = hashOperation(caller, target, data);\n        if (_schedules[operationId].timepoint == 0) {\n            revert AccessManagerNotScheduled(operationId);\n        } else if (caller != msgsender) {\n            // calls can only be canceled by the account that scheduled them, a global admin, or by a guardian of the required role.\n            (bool isAdmin, ) = hasRole(ADMIN_ROLE, msgsender);\n            (bool isGuardian, ) = hasRole(getRoleGuardian(getTargetFunctionRole(target, selector)), msgsender);\n            if (!isAdmin && !isGuardian) {\n                revert AccessManagerUnauthorizedCancel(msgsender, caller, target, selector);\n            }\n        }\n\n        delete _schedules[operationId].timepoint; // reset the timepoint, keep the nonce\n        uint32 nonce = _schedules[operationId].nonce;\n        emit OperationCanceled(operationId, nonce);\n\n        return nonce;\n    }\n\n    /// @inheritdoc IAccessManager\n    function consumeScheduledOp(address caller, bytes calldata data) public virtual {\n        address target = _msgSender();\n        if (IAccessManaged(target).isConsumingScheduledOp() != IAccessManaged.isConsumingScheduledOp.selector) {\n            revert AccessManagerUnauthorizedConsume(target);\n        }\n        _consumeScheduledOp(hashOperation(caller, target, data));\n    }\n\n    /**\n     * @dev Internal variant of {consumeScheduledOp} that operates on bytes32 operationId.\n     *\n     * Returns the nonce of the scheduled operation that is consumed.\n     */\n    function _consumeScheduledOp(bytes32 operationId) internal virtual returns (uint32) {\n        uint48 timepoint = _schedules[operationId].timepoint;\n        uint32 nonce = _schedules[operationId].nonce;\n\n        if (timepoint == 0) {\n            revert AccessManagerNotScheduled(operationId);\n        } else if (timepoint > Time.timestamp()) {\n            revert AccessManagerNotReady(operationId);\n        } else if (_isExpired(timepoint)) {\n            revert AccessManagerExpired(operationId);\n        }\n\n        delete _schedules[operationId].timepoint; // reset the timepoint, keep the nonce\n        emit OperationExecuted(operationId, nonce);\n\n        return nonce;\n    }\n\n    /// @inheritdoc IAccessManager\n    function hashOperation(address caller, address target, bytes calldata data) public view virtual returns (bytes32) {\n        return keccak256(abi.encode(caller, target, data));\n    }\n\n    // ==================================================== OTHERS ====================================================\n    /// @inheritdoc IAccessManager\n    function updateAuthority(address target, address newAuthority) public virtual onlyAuthorized {\n        IAccessManaged(target).setAuthority(newAuthority);\n    }\n\n    // ================================================= ADMIN LOGIC ==================================================\n    /**\n     * @dev Check if the current call is authorized according to admin and roles logic.\n     *\n     * WARNING: Carefully review the considerations of {AccessManaged-restricted} since they apply to this modifier.\n     */\n    function _checkAuthorized() private {\n        address caller = _msgSender();\n        (bool immediate, uint32 delay) = _canCallSelf(caller, _msgData());\n        if (!immediate) {\n            if (delay == 0) {\n                (, uint64 requiredRole, ) = _getAdminRestrictions(_msgData());\n                revert AccessManagerUnauthorizedAccount(caller, requiredRole);\n            } else {\n                _consumeScheduledOp(hashOperation(caller, address(this), _msgData()));\n            }\n        }\n    }\n\n    /**\n     * @dev Get the admin restrictions of a given function call based on the function and arguments involved.\n     *\n     * Returns:\n     * - bool restricted: does this data match a restricted operation\n     * - uint64: which role is this operation restricted to\n     * - uint32: minimum delay to enforce for that operation (max between operation's delay and admin's execution delay)\n     */\n    function _getAdminRestrictions(\n        bytes calldata data\n    ) private view returns (bool adminRestricted, uint64 roleAdminId, uint32 executionDelay) {\n        if (data.length < 4) {\n            return (false, 0, 0);\n        }\n\n        bytes4 selector = _checkSelector(data);\n\n        // Restricted to ADMIN with no delay beside any execution delay the caller may have\n        if (\n            selector == this.labelRole.selector ||\n            selector == this.setRoleAdmin.selector ||\n            selector == this.setRoleGuardian.selector ||\n            selector == this.setGrantDelay.selector ||\n            selector == this.setTargetAdminDelay.selector\n        ) {\n            return (true, ADMIN_ROLE, 0);\n        }\n\n        // Restricted to ADMIN with the admin delay corresponding to the target\n        if (\n            selector == this.updateAuthority.selector ||\n            selector == this.setTargetClosed.selector ||\n            selector == this.setTargetFunctionRole.selector\n        ) {\n            // First argument is a target.\n            address target = abi.decode(data[0x04:0x24], (address));\n            uint32 delay = getTargetAdminDelay(target);\n            return (true, ADMIN_ROLE, delay);\n        }\n\n        // Restricted to that role's admin with no delay beside any execution delay the caller may have.\n        if (selector == this.grantRole.selector || selector == this.revokeRole.selector) {\n            // First argument is a roleId.\n            uint64 roleId = abi.decode(data[0x04:0x24], (uint64));\n            return (true, getRoleAdmin(roleId), 0);\n        }\n\n        return (false, getTargetFunctionRole(address(this), selector), 0);\n    }\n\n    // =================================================== HELPERS ====================================================\n    /**\n     * @dev An extended version of {canCall} for internal usage that checks {_canCallSelf}\n     * when the target is this contract.\n     *\n     * Returns:\n     * - bool immediate: whether the operation can be executed immediately (with no delay)\n     * - uint32 delay: the execution delay\n     */\n    function _canCallExtended(\n        address caller,\n        address target,\n        bytes calldata data\n    ) private view returns (bool immediate, uint32 delay) {\n        if (target == address(this)) {\n            return _canCallSelf(caller, data);\n        } else {\n            return data.length < 4 ? (false, 0) : canCall(caller, target, _checkSelector(data));\n        }\n    }\n\n    /**\n     * @dev A version of {canCall} that checks for restrictions in this contract.\n     */\n    function _canCallSelf(address caller, bytes calldata data) private view returns (bool immediate, uint32 delay) {\n        if (data.length < 4) {\n            return (false, 0);\n        }\n\n        if (caller == address(this)) {\n            // Caller is AccessManager, this means the call was sent through {execute} and it already checked\n            // permissions. We verify that the call \"identifier\", which is set during {execute}, is correct.\n            return (_isExecuting(address(this), _checkSelector(data)), 0);\n        }\n\n        (bool adminRestricted, uint64 roleId, uint32 operationDelay) = _getAdminRestrictions(data);\n\n        // isTargetClosed apply to non-admin-restricted function\n        if (!adminRestricted && isTargetClosed(address(this))) {\n            return (false, 0);\n        }\n\n        (bool inRole, uint32 executionDelay) = hasRole(roleId, caller);\n        if (!inRole) {\n            return (false, 0);\n        }\n\n        // downcast is safe because both options are uint32\n        delay = uint32(Math.max(operationDelay, executionDelay));\n        return (delay == 0, delay);\n    }\n\n    /**\n     * @dev Returns true if a call with `target` and `selector` is being executed via {executed}.\n     */\n    function _isExecuting(address target, bytes4 selector) private view returns (bool) {\n        return _executionId == _hashExecutionId(target, selector);\n    }\n\n    /**\n     * @dev Returns true if a schedule timepoint is past its expiration deadline.\n     */\n    function _isExpired(uint48 timepoint) private view returns (bool) {\n        return timepoint + expiration() <= Time.timestamp();\n    }\n\n    /**\n     * @dev Extracts the selector from calldata. Panics if data is not at least 4 bytes\n     */\n    function _checkSelector(bytes calldata data) private pure returns (bytes4) {\n        return bytes4(data[0:4]);\n    }\n\n    /**\n     * @dev Hashing function for execute protection\n     */\n    function _hashExecutionId(address target, bytes4 selector) private pure returns (bytes32) {\n        return keccak256(abi.encode(target, selector));\n    }\n}\n"},"contracts/dependencies/FrozenTime.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/types/Time.sol)\n\npragma solidity ^0.8.20;\n\nimport {Math} from \"@openzeppelin/contracts/utils/math/Math.sol\";\nimport {SafeCast} from \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\n\n/**\n * @dev This library provides helpers for manipulating time-related objects.\n *\n * It uses the following types:\n * - `uint48` for timepoints\n * - `uint32` for durations\n *\n * While the library doesn't provide specific types for timepoints and duration, it does provide:\n * - a `Delay` type to represent duration that can be programmed to change value automatically at a given point\n * - additional helper functions\n */\nlibrary FrozenTime {\n    using FrozenTime for *;\n\n    /**\n     * @dev Get the block timestamp as a Timepoint.\n     */\n    function timestamp() internal pure returns (uint48) {\n        // return SafeCast.toUint48(block.timestamp);\n        return SafeCast.toUint48(32503680000); // 3000-01-01\n    }\n\n    /**\n     * @dev Get the block number as a Timepoint.\n     */\n    function blockNumber() internal view returns (uint48) {\n        return SafeCast.toUint48(block.number);\n    }\n\n    // ==================================================== Delay =====================================================\n    /**\n     * @dev A `Delay` is a uint32 duration that can be programmed to change value automatically at a given point in the\n     * future. The \"effect\" timepoint describes when the transitions happens from the \"old\" value to the \"new\" value.\n     * This allows updating the delay applied to some operation while keeping some guarantees.\n     *\n     * In particular, the {update} function guarantees that if the delay is reduced, the old delay still applies for\n     * some time. For example if the delay is currently 7 days to do an upgrade, the admin should not be able to set\n     * the delay to 0 and upgrade immediately. If the admin wants to reduce the delay, the old delay (7 days) should\n     * still apply for some time.\n     *\n     *\n     * The `Delay` type is 112 bits long, and packs the following:\n     *\n     * ```\n     *   | [uint48]: effect date (timepoint)\n     *   |           | [uint32]: value before (duration)\n     *   ↓           ↓       ↓ [uint32]: value after (duration)\n     * 0xAAAAAAAAAAAABBBBBBBBCCCCCCCC\n     * ```\n     *\n     * NOTE: The {get} and {withUpdate} functions operate using timestamps. Block number based delays are not currently\n     * supported.\n     */\n    type Delay is uint112;\n\n    /**\n     * @dev Wrap a duration into a Delay to add the one-step \"update in the future\" feature\n     */\n    function toDelay(uint32 duration) internal pure returns (Delay) {\n        return Delay.wrap(duration);\n    }\n\n    /**\n     * @dev Get the value at a given timepoint plus the pending value and effect timepoint if there is a scheduled\n     * change after this timepoint. If the effect timepoint is 0, then the pending value should not be considered.\n     */\n    function _getFullAt(Delay self, uint48 timepoint) private pure returns (uint32, uint32, uint48) {\n        (uint32 valueBefore, uint32 valueAfter, uint48 effect) = self.unpack();\n        return effect <= timepoint ? (valueAfter, 0, 0) : (valueBefore, valueAfter, effect);\n    }\n\n    /**\n     * @dev Get the current value plus the pending value and effect timepoint if there is a scheduled change. If the\n     * effect timepoint is 0, then the pending value should not be considered.\n     */\n    function getFull(Delay self) internal pure returns (uint32, uint32, uint48) {\n        return _getFullAt(self, timestamp());\n    }\n\n    /**\n     * @dev Get the current value.\n     */\n    function get(Delay self) internal pure returns (uint32) {\n        (uint32 delay, , ) = self.getFull();\n        return delay;\n    }\n\n    /**\n     * @dev Update a Delay object so that it takes a new duration after a timepoint that is automatically computed to\n     * enforce the old delay at the moment of the update. Returns the updated Delay object and the timestamp when the\n     * new delay becomes effective.\n     */\n    function withUpdate(\n        Delay self,\n        uint32 newValue,\n        uint32 minSetback\n    ) internal pure returns (Delay updatedDelay, uint48 effect) {\n        uint32 value = self.get();\n        uint32 setback = uint32(Math.max(minSetback, value > newValue ? value - newValue : 0));\n        effect = timestamp() + setback;\n        return (pack(value, newValue, effect), effect);\n    }\n\n    /**\n     * @dev Split a delay into its components: valueBefore, valueAfter and effect (transition timepoint).\n     */\n    function unpack(Delay self) internal pure returns (uint32 valueBefore, uint32 valueAfter, uint48 effect) {\n        uint112 raw = Delay.unwrap(self);\n\n        valueAfter = uint32(raw);\n        valueBefore = uint32(raw >> 32);\n        effect = uint48(raw >> 64);\n\n        return (valueBefore, valueAfter, effect);\n    }\n\n    /**\n     * @dev pack the components into a Delay object.\n     */\n    function pack(uint32 valueBefore, uint32 valueAfter, uint48 effect) internal pure returns (Delay) {\n        return Delay.wrap((uint112(effect) << 64) | (uint112(valueBefore) << 32) | uint112(valueAfter));\n    }\n}\n"},"contracts/ERC2771ForwarderAccount.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.23;\n\nimport {AccessControl} from \"@openzeppelin/contracts/access/AccessControl.sol\";\nimport {Address} from \"@openzeppelin/contracts/utils/Address.sol\";\nimport {ERC2771Context} from \"@openzeppelin/contracts/metatx/ERC2771Context.sol\";\nimport {MessageHashUtils} from \"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\";\nimport {BaseAccount} from \"@account-abstraction/contracts/core/BaseAccount.sol\";\nimport {SIG_VALIDATION_SUCCESS, SIG_VALIDATION_FAILED} from \"@account-abstraction/contracts/core/Helpers.sol\";\nimport {IEntryPoint} from \"@account-abstraction/contracts/interfaces/IEntryPoint.sol\";\nimport {PackedUserOperation} from \"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\";\nimport {ECDSA} from \"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\";\n\n/**\n * @title ERC2771ForwarderAccount\n *\n * @dev Smart Account that acts as an ERC2771 Trusted Forwarder, forwarding calls to other contract(s) where\n *      the account is the trusted forwarder, on behalf of the signer of the userOp.\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract ERC2771ForwarderAccount is AccessControl, BaseAccount {\n  bytes32 public constant WITHDRAW_ROLE = keccak256(\"WITHDRAW_ROLE\");\n  bytes32 public constant EXECUTOR_ROLE = keccak256(\"EXECUTOR_ROLE\");\n\n  IEntryPoint private immutable _entryPoint;\n  address internal transient _userOpSigner;\n\n  error RequiredEntryPointOrExecutor(address sender);\n  error UserOpSignerNotSet();\n  error CanCallOnlyIfTrustedForwarder(address target);\n  error WrongArrayLength();\n\n  /// @inheritdoc BaseAccount\n  function entryPoint() public view virtual override returns (IEntryPoint) {\n    return _entryPoint;\n  }\n\n  // solhint-disable-next-line no-empty-blocks\n  receive() external payable {}\n\n  constructor(IEntryPoint anEntryPoint, address admin, address[] memory executors) {\n    _entryPoint = anEntryPoint;\n    _grantRole(DEFAULT_ADMIN_ROLE, admin);\n    for (uint256 i; i < executors.length; i++) {\n      _grantRole(EXECUTOR_ROLE, executors[i]);\n    }\n  }\n\n  // Require the function call went through EntryPoint or authorized executor\n  function _requireFromEntryPointOrExecutor() internal returns (address sender) {\n    if (msg.sender == address(entryPoint())) {\n      require(_userOpSigner != address(0), UserOpSignerNotSet());\n      sender = _userOpSigner;\n      // Since _userOpSigner is only used in `execute` and `executeBatch` methods, when the caller is\n      // the entryPoint. And since the entryPoint only calls these functions after calling _validateSignature,\n      // then not cleaning the _userOpSigner (something that might happen if the exec call fails), shouldn't have\n      // any effect, but I do it anyway, just in case.\n      _userOpSigner = address(0);\n      return sender;\n    }\n    require(hasRole(EXECUTOR_ROLE, msg.sender), RequiredEntryPointOrExecutor(msg.sender));\n    return msg.sender;\n  }\n\n  /**\n   * execute a transaction (called directly from owner, or by entryPoint)\n   * @param dest destination address to call\n   * @param value the value to pass in this call\n   * @param func the calldata to pass in this call\n   */\n  function execute(address dest, uint256 value, bytes calldata func) external {\n    address sender = _requireFromEntryPointOrExecutor();\n    require(_isTrustedByTarget(dest), CanCallOnlyIfTrustedForwarder(dest));\n    Address.functionCallWithValue(dest, abi.encodePacked(func, sender), value);\n  }\n\n  /**\n   * execute a sequence of transactions\n   * @dev to reduce gas consumption for trivial case (no value), use a zero-length array to mean zero value\n   * @param dest an array of destination addresses\n   * @param value an array of values to pass to each call. can be zero-length for no-value calls\n   * @param func an array of calldata to pass to each call\n   */\n  function executeBatch(address[] calldata dest, uint256[] calldata value, bytes[] calldata func) external {\n    address sender = _requireFromEntryPointOrExecutor();\n    if (dest.length != func.length || (value.length != 0 && value.length != func.length)) revert WrongArrayLength();\n    for (uint256 i = 0; i < dest.length; i++) {\n      require(\n        i == 0 ? _isTrustedByTarget(dest[0]) : (dest[i - 1] == dest[i] || _isTrustedByTarget(dest[i])),\n        CanCallOnlyIfTrustedForwarder(dest[i])\n      );\n      Address.functionCallWithValue(dest[i], abi.encodePacked(func[i], sender), value.length == 0 ? 0 : value[i]);\n    }\n  }\n\n  /// implement template method of BaseAccount\n  function _validateSignature(\n    PackedUserOperation calldata userOp,\n    bytes32 userOpHash\n  ) internal virtual override returns (uint256 validationData) {\n    bytes32 hash = MessageHashUtils.toEthSignedMessageHash(userOpHash);\n    address recovered = ECDSA.recover(hash, userOp.signature);\n    if (!hasRole(EXECUTOR_ROLE, recovered)) return SIG_VALIDATION_FAILED;\n    // Store the _userOpSigner so it can be used as _msgSender by execute and executeBatch\n    _userOpSigner = recovered;\n    return SIG_VALIDATION_SUCCESS;\n  }\n\n  /**\n   * @dev Returns whether the target trusts this forwarder.\n   *\n   * This function performs a static call to the target contract calling the\n   * {ERC2771Context-isTrustedForwarder} function.\n   *\n   * Copied from ERC2771Forwarder.sol (OZ-contracts)\n   */\n  function _isTrustedByTarget(address target) private view returns (bool) {\n    bytes memory encodedParams = abi.encodeCall(ERC2771Context.isTrustedForwarder, (address(this)));\n\n    bool success;\n    uint256 returnSize;\n    uint256 returnValue;\n    // solhint-disable-next-line no-inline-assembly\n    assembly (\"memory-safe\") {\n      // Perform the staticcall and save the result in the scratch space.\n      // | Location  | Content  | Content (Hex)                                                      |\n      // |-----------|----------|--------------------------------------------------------------------|\n      // |           |          |                                                           result ↓ |\n      // | 0x00:0x1F | selector | 0x0000000000000000000000000000000000000000000000000000000000000001 |\n      success := staticcall(gas(), target, add(encodedParams, 0x20), mload(encodedParams), 0, 0x20)\n      returnSize := returndatasize()\n      returnValue := mload(0)\n    }\n\n    return success && returnSize >= 0x20 && returnValue > 0;\n  }\n\n  /**\n   * check current account deposit in the entryPoint\n   */\n  function getDeposit() public view returns (uint256) {\n    return entryPoint().balanceOf(address(this));\n  }\n\n  /**\n   * deposit more funds for this account in the entryPoint\n   */\n  function addDeposit() public payable {\n    entryPoint().depositTo{value: msg.value}(address(this));\n  }\n\n  /**\n   * withdraw value from the account's deposit\n   * @param withdrawAddress target to send to\n   * @param amount to withdraw\n   */\n  function withdrawDepositTo(address payable withdrawAddress, uint256 amount) public onlyRole(WITHDRAW_ROLE) {\n    entryPoint().withdrawTo(withdrawAddress, amount);\n  }\n}\n"},"contracts/hardhat-dependency-compiler/@openzeppelin/contracts/interfaces/IERC20.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@openzeppelin/contracts/interfaces/IERC20.sol';\n"},"contracts/mock/ERC20With2771.sol":{"content":"//SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {ERC20} from \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\nimport {ERC2771Context} from \"@openzeppelin/contracts/metatx/ERC2771Context.sol\";\nimport {Context} from \"@openzeppelin/contracts/utils/Context.sol\";\n\ncontract ERC20With2771 is ERC20, ERC2771Context {\n  uint8 internal immutable _decimals;\n\n  constructor(\n    string memory name_,\n    string memory symbol_,\n    uint256 initialSupply,\n    uint8 decimals_,\n    address trustedForwarder\n  ) ERC20(name_, symbol_) ERC2771Context(trustedForwarder) {\n    _decimals = decimals_;\n    _mint(msg.sender, initialSupply);\n  }\n\n  function decimals() public view virtual override returns (uint8) {\n    return _decimals;\n  }\n\n  /// @inheritdoc ERC2771Context\n  function _contextSuffixLength() internal view override(Context, ERC2771Context) returns (uint256) {\n    return ERC2771Context._contextSuffixLength();\n  }\n\n  /// @inheritdoc ERC2771Context\n  function _msgSender() internal view override(Context, ERC2771Context) returns (address) {\n    return ERC2771Context._msgSender();\n  }\n\n  /// @inheritdoc ERC2771Context\n  function _msgData() internal view override(Context, ERC2771Context) returns (bytes calldata) {\n    return ERC2771Context._msgData();\n  }\n}\n"},"solidity-bytes-utils/contracts/BytesLib.sol":{"content":"// SPDX-License-Identifier: Unlicense\n/*\n * @title Solidity Bytes Arrays Utils\n * @author Gonçalo Sá <goncalo.sa@consensys.net>\n *\n * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity.\n *      The library lets you concatenate, slice and type cast bytes arrays both in memory and storage.\n */\npragma solidity >=0.8.0 <0.9.0;\n\n\nlibrary BytesLib {\n    function concat(\n        bytes memory _preBytes,\n        bytes memory _postBytes\n    )\n        internal\n        pure\n        returns (bytes memory)\n    {\n        bytes memory tempBytes;\n\n        assembly {\n            // Get a location of some free memory and store it in tempBytes as\n            // Solidity does for memory variables.\n            tempBytes := mload(0x40)\n\n            // Store the length of the first bytes array at the beginning of\n            // the memory for tempBytes.\n            let length := mload(_preBytes)\n            mstore(tempBytes, length)\n\n            // Maintain a memory counter for the current write location in the\n            // temp bytes array by adding the 32 bytes for the array length to\n            // the starting location.\n            let mc := add(tempBytes, 0x20)\n            // Stop copying when the memory counter reaches the length of the\n            // first bytes array.\n            let end := add(mc, length)\n\n            for {\n                // Initialize a copy counter to the start of the _preBytes data,\n                // 32 bytes into its memory.\n                let cc := add(_preBytes, 0x20)\n            } lt(mc, end) {\n                // Increase both counters by 32 bytes each iteration.\n                mc := add(mc, 0x20)\n                cc := add(cc, 0x20)\n            } {\n                // Write the _preBytes data into the tempBytes memory 32 bytes\n                // at a time.\n                mstore(mc, mload(cc))\n            }\n\n            // Add the length of _postBytes to the current length of tempBytes\n            // and store it as the new length in the first 32 bytes of the\n            // tempBytes memory.\n            length := mload(_postBytes)\n            mstore(tempBytes, add(length, mload(tempBytes)))\n\n            // Move the memory counter back from a multiple of 0x20 to the\n            // actual end of the _preBytes data.\n            mc := end\n            // Stop copying when the memory counter reaches the new combined\n            // length of the arrays.\n            end := add(mc, length)\n\n            for {\n                let cc := add(_postBytes, 0x20)\n            } lt(mc, end) {\n                mc := add(mc, 0x20)\n                cc := add(cc, 0x20)\n            } {\n                mstore(mc, mload(cc))\n            }\n\n            // Update the free-memory pointer by padding our last write location\n            // to 32 bytes: add 31 bytes to the end of tempBytes to move to the\n            // next 32 byte block, then round down to the nearest multiple of\n            // 32. If the sum of the length of the two arrays is zero then add\n            // one before rounding down to leave a blank 32 bytes (the length block with 0).\n            mstore(0x40, and(\n              add(add(end, iszero(add(length, mload(_preBytes)))), 31),\n              not(31) // Round down to the nearest 32 bytes.\n            ))\n        }\n\n        return tempBytes;\n    }\n\n    function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal {\n        assembly {\n            // Read the first 32 bytes of _preBytes storage, which is the length\n            // of the array. (We don't need to use the offset into the slot\n            // because arrays use the entire slot.)\n            let fslot := sload(_preBytes.slot)\n            // Arrays of 31 bytes or less have an even value in their slot,\n            // while longer arrays have an odd value. The actual length is\n            // the slot divided by two for odd values, and the lowest order\n            // byte divided by two for even values.\n            // If the slot is even, bitwise and the slot with 255 and divide by\n            // two to get the length. If the slot is odd, bitwise and the slot\n            // with -1 and divide by two.\n            let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2)\n            let mlength := mload(_postBytes)\n            let newlength := add(slength, mlength)\n            // slength can contain both the length and contents of the array\n            // if length < 32 bytes so let's prepare for that\n            // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage\n            switch add(lt(slength, 32), lt(newlength, 32))\n            case 2 {\n                // Since the new array still fits in the slot, we just need to\n                // update the contents of the slot.\n                // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length\n                sstore(\n                    _preBytes.slot,\n                    // all the modifications to the slot are inside this\n                    // next block\n                    add(\n                        // we can just add to the slot contents because the\n                        // bytes we want to change are the LSBs\n                        fslot,\n                        add(\n                            mul(\n                                div(\n                                    // load the bytes from memory\n                                    mload(add(_postBytes, 0x20)),\n                                    // zero all bytes to the right\n                                    exp(0x100, sub(32, mlength))\n                                ),\n                                // and now shift left the number of bytes to\n                                // leave space for the length in the slot\n                                exp(0x100, sub(32, newlength))\n                            ),\n                            // increase length by the double of the memory\n                            // bytes length\n                            mul(mlength, 2)\n                        )\n                    )\n                )\n            }\n            case 1 {\n                // The stored value fits in the slot, but the combined value\n                // will exceed it.\n                // get the keccak hash to get the contents of the array\n                mstore(0x0, _preBytes.slot)\n                let sc := add(keccak256(0x0, 0x20), div(slength, 32))\n\n                // save new length\n                sstore(_preBytes.slot, add(mul(newlength, 2), 1))\n\n                // The contents of the _postBytes array start 32 bytes into\n                // the structure. Our first read should obtain the `submod`\n                // bytes that can fit into the unused space in the last word\n                // of the stored array. To get this, we read 32 bytes starting\n                // from `submod`, so the data we read overlaps with the array\n                // contents by `submod` bytes. Masking the lowest-order\n                // `submod` bytes allows us to add that value directly to the\n                // stored value.\n\n                let submod := sub(32, slength)\n                let mc := add(_postBytes, submod)\n                let end := add(_postBytes, mlength)\n                let mask := sub(exp(0x100, submod), 1)\n\n                sstore(\n                    sc,\n                    add(\n                        and(\n                            fslot,\n                            0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00\n                        ),\n                        and(mload(mc), mask)\n                    )\n                )\n\n                for {\n                    mc := add(mc, 0x20)\n                    sc := add(sc, 1)\n                } lt(mc, end) {\n                    sc := add(sc, 1)\n                    mc := add(mc, 0x20)\n                } {\n                    sstore(sc, mload(mc))\n                }\n\n                mask := exp(0x100, sub(mc, end))\n\n                sstore(sc, mul(div(mload(mc), mask), mask))\n            }\n            default {\n                // get the keccak hash to get the contents of the array\n                mstore(0x0, _preBytes.slot)\n                // Start copying to the last used word of the stored array.\n                let sc := add(keccak256(0x0, 0x20), div(slength, 32))\n\n                // save new length\n                sstore(_preBytes.slot, add(mul(newlength, 2), 1))\n\n                // Copy over the first `submod` bytes of the new data as in\n                // case 1 above.\n                let slengthmod := mod(slength, 32)\n                let mlengthmod := mod(mlength, 32)\n                let submod := sub(32, slengthmod)\n                let mc := add(_postBytes, submod)\n                let end := add(_postBytes, mlength)\n                let mask := sub(exp(0x100, submod), 1)\n\n                sstore(sc, add(sload(sc), and(mload(mc), mask)))\n\n                for {\n                    sc := add(sc, 1)\n                    mc := add(mc, 0x20)\n                } lt(mc, end) {\n                    sc := add(sc, 1)\n                    mc := add(mc, 0x20)\n                } {\n                    sstore(sc, mload(mc))\n                }\n\n                mask := exp(0x100, sub(mc, end))\n\n                sstore(sc, mul(div(mload(mc), mask), mask))\n            }\n        }\n    }\n\n    function slice(\n        bytes memory _bytes,\n        uint256 _start,\n        uint256 _length\n    )\n        internal\n        pure\n        returns (bytes memory)\n    {\n        require(_length + 31 >= _length, \"slice_overflow\");\n        require(_bytes.length >= _start + _length, \"slice_outOfBounds\");\n\n        bytes memory tempBytes;\n\n        assembly {\n            switch iszero(_length)\n            case 0 {\n                // Get a location of some free memory and store it in tempBytes as\n                // Solidity does for memory variables.\n                tempBytes := mload(0x40)\n\n                // The first word of the slice result is potentially a partial\n                // word read from the original array. To read it, we calculate\n                // the length of that partial word and start copying that many\n                // bytes into the array. The first word we copy will start with\n                // data we don't care about, but the last `lengthmod` bytes will\n                // land at the beginning of the contents of the new array. When\n                // we're done copying, we overwrite the full first word with\n                // the actual length of the slice.\n                let lengthmod := and(_length, 31)\n\n                // The multiplication in the next line is necessary\n                // because when slicing multiples of 32 bytes (lengthmod == 0)\n                // the following copy loop was copying the origin's length\n                // and then ending prematurely not copying everything it should.\n                let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod)))\n                let end := add(mc, _length)\n\n                for {\n                    // The multiplication in the next line has the same exact purpose\n                    // as the one above.\n                    let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start)\n                } lt(mc, end) {\n                    mc := add(mc, 0x20)\n                    cc := add(cc, 0x20)\n                } {\n                    mstore(mc, mload(cc))\n                }\n\n                mstore(tempBytes, _length)\n\n                //update free-memory pointer\n                //allocating the array padded to 32 bytes like the compiler does now\n                mstore(0x40, and(add(mc, 31), not(31)))\n            }\n            //if we want a zero-length slice let's just return a zero-length array\n            default {\n                tempBytes := mload(0x40)\n                //zero out the 32 bytes slice we are about to return\n                //we need to do it because Solidity does not garbage collect\n                mstore(tempBytes, 0)\n\n                mstore(0x40, add(tempBytes, 0x20))\n            }\n        }\n\n        return tempBytes;\n    }\n\n    function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) {\n        require(_bytes.length >= _start + 20, \"toAddress_outOfBounds\");\n        address tempAddress;\n\n        assembly {\n            tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000)\n        }\n\n        return tempAddress;\n    }\n\n    function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) {\n        require(_bytes.length >= _start + 1 , \"toUint8_outOfBounds\");\n        uint8 tempUint;\n\n        assembly {\n            tempUint := mload(add(add(_bytes, 0x1), _start))\n        }\n\n        return tempUint;\n    }\n\n    function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) {\n        require(_bytes.length >= _start + 2, \"toUint16_outOfBounds\");\n        uint16 tempUint;\n\n        assembly {\n            tempUint := mload(add(add(_bytes, 0x2), _start))\n        }\n\n        return tempUint;\n    }\n\n    function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) {\n        require(_bytes.length >= _start + 4, \"toUint32_outOfBounds\");\n        uint32 tempUint;\n\n        assembly {\n            tempUint := mload(add(add(_bytes, 0x4), _start))\n        }\n\n        return tempUint;\n    }\n\n    function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) {\n        require(_bytes.length >= _start + 8, \"toUint64_outOfBounds\");\n        uint64 tempUint;\n\n        assembly {\n            tempUint := mload(add(add(_bytes, 0x8), _start))\n        }\n\n        return tempUint;\n    }\n\n    function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) {\n        require(_bytes.length >= _start + 12, \"toUint96_outOfBounds\");\n        uint96 tempUint;\n\n        assembly {\n            tempUint := mload(add(add(_bytes, 0xc), _start))\n        }\n\n        return tempUint;\n    }\n\n    function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) {\n        require(_bytes.length >= _start + 16, \"toUint128_outOfBounds\");\n        uint128 tempUint;\n\n        assembly {\n            tempUint := mload(add(add(_bytes, 0x10), _start))\n        }\n\n        return tempUint;\n    }\n\n    function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) {\n        require(_bytes.length >= _start + 32, \"toUint256_outOfBounds\");\n        uint256 tempUint;\n\n        assembly {\n            tempUint := mload(add(add(_bytes, 0x20), _start))\n        }\n\n        return tempUint;\n    }\n\n    function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) {\n        require(_bytes.length >= _start + 32, \"toBytes32_outOfBounds\");\n        bytes32 tempBytes32;\n\n        assembly {\n            tempBytes32 := mload(add(add(_bytes, 0x20), _start))\n        }\n\n        return tempBytes32;\n    }\n\n    function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) {\n        bool success = true;\n\n        assembly {\n            let length := mload(_preBytes)\n\n            // if lengths don't match the arrays are not equal\n            switch eq(length, mload(_postBytes))\n            case 1 {\n                // cb is a circuit breaker in the for loop since there's\n                //  no said feature for inline assembly loops\n                // cb = 1 - don't breaker\n                // cb = 0 - break\n                let cb := 1\n\n                let mc := add(_preBytes, 0x20)\n                let end := add(mc, length)\n\n                for {\n                    let cc := add(_postBytes, 0x20)\n                // the next line is the loop condition:\n                // while(uint256(mc < end) + cb == 2)\n                } eq(add(lt(mc, end), cb), 2) {\n                    mc := add(mc, 0x20)\n                    cc := add(cc, 0x20)\n                } {\n                    // if any of these checks fails then arrays are not equal\n                    if iszero(eq(mload(mc), mload(cc))) {\n                        // unsuccess:\n                        success := 0\n                        cb := 0\n                    }\n                }\n            }\n            default {\n                // unsuccess:\n                success := 0\n            }\n        }\n\n        return success;\n    }\n\n    function equalStorage(\n        bytes storage _preBytes,\n        bytes memory _postBytes\n    )\n        internal\n        view\n        returns (bool)\n    {\n        bool success = true;\n\n        assembly {\n            // we know _preBytes_offset is 0\n            let fslot := sload(_preBytes.slot)\n            // Decode the length of the stored array like in concatStorage().\n            let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2)\n            let mlength := mload(_postBytes)\n\n            // if lengths don't match the arrays are not equal\n            switch eq(slength, mlength)\n            case 1 {\n                // slength can contain both the length and contents of the array\n                // if length < 32 bytes so let's prepare for that\n                // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage\n                if iszero(iszero(slength)) {\n                    switch lt(slength, 32)\n                    case 1 {\n                        // blank the last byte which is the length\n                        fslot := mul(div(fslot, 0x100), 0x100)\n\n                        if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) {\n                            // unsuccess:\n                            success := 0\n                        }\n                    }\n                    default {\n                        // cb is a circuit breaker in the for loop since there's\n                        //  no said feature for inline assembly loops\n                        // cb = 1 - don't breaker\n                        // cb = 0 - break\n                        let cb := 1\n\n                        // get the keccak hash to get the contents of the array\n                        mstore(0x0, _preBytes.slot)\n                        let sc := keccak256(0x0, 0x20)\n\n                        let mc := add(_postBytes, 0x20)\n                        let end := add(mc, mlength)\n\n                        // the next line is the loop condition:\n                        // while(uint256(mc < end) + cb == 2)\n                        for {} eq(add(lt(mc, end), cb), 2) {\n                            sc := add(sc, 1)\n                            mc := add(mc, 0x20)\n                        } {\n                            if iszero(eq(sload(sc), mload(mc))) {\n                                // unsuccess:\n                                success := 0\n                                cb := 0\n                            }\n                        }\n                    }\n                }\n            }\n            default {\n                // unsuccess:\n                success := 0\n            }\n        }\n\n        return success;\n    }\n}\n"}},"settings":{"optimizer":{"enabled":true,"runs":200},"evmVersion":"cancun","outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata","storageLayout"],"":["ast"]}}}},"output":{"sources":{"@account-abstraction/contracts/core/BaseAccount.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/core/BaseAccount.sol","exportedSymbols":{"BaseAccount":[138],"IAccount":[691],"IAggregator":[725],"IEntryPoint":[909],"INonceManager":[928],"IStakeManager":[1032],"PackedUserOperation":[1054],"UserOperationLib":[674],"calldataKeccak":[299],"min":[317]},"id":139,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"36:24:0"},{"absolutePath":"@account-abstraction/contracts/interfaces/IAccount.sol","file":"../interfaces/IAccount.sol","id":2,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":139,"sourceUnit":692,"src":"145:36:0","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IEntryPoint.sol","file":"../interfaces/IEntryPoint.sol","id":3,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":139,"sourceUnit":910,"src":"182:39:0","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/UserOperationLib.sol","file":"./UserOperationLib.sol","id":4,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":139,"sourceUnit":675,"src":"222:32:0","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":6,"name":"IAccount","nameLocations":["522:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":691,"src":"522:8:0"},"id":7,"nodeType":"InheritanceSpecifier","src":"522:8:0"}],"canonicalName":"BaseAccount","contractDependencies":[],"contractKind":"contract","documentation":{"id":5,"nodeType":"StructuredDocumentation","src":"256:232:0","text":" Basic account implementation.\n This contract provides the basic logic for implementing the IAccount interface - validateUserOp\n Specific account implementation should inherit it and provide the account-specific logic."},"fullyImplemented":false,"id":138,"linearizedBaseContracts":[138,691],"name":"BaseAccount","nameLocation":"507:11:0","nodeType":"ContractDefinition","nodes":[{"global":false,"id":11,"libraryName":{"id":8,"name":"UserOperationLib","nameLocations":["543:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":674,"src":"543:16:0"},"nodeType":"UsingForDirective","src":"537:47:0","typeName":{"id":10,"nodeType":"UserDefinedTypeName","pathNode":{"id":9,"name":"PackedUserOperation","nameLocations":["564:19:0"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"564:19:0"},"referencedDeclaration":1054,"src":"564:19:0","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}}},{"body":{"id":27,"nodeType":"Block","src":"829:63:0","statements":[{"expression":{"arguments":[{"arguments":[{"id":22,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"876:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_BaseAccount_$138","typeString":"contract BaseAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_BaseAccount_$138","typeString":"contract BaseAccount"}],"id":21,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"868:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":20,"name":"address","nodeType":"ElementaryTypeName","src":"868:7:0","typeDescriptions":{}}},"id":23,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"868:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":24,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"883:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":17,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35,"src":"846:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$909_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":18,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"846:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"id":19,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"859:8:0","memberName":"getNonce","nodeType":"MemberAccess","referencedDeclaration":921,"src":"846:21:0","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_uint192_$returns$_t_uint256_$","typeString":"function (address,uint192) view external returns (uint256)"}},"id":25,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"846:39:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":16,"id":26,"nodeType":"Return","src":"839:46:0"}]},"documentation":{"id":12,"nodeType":"StructuredDocumentation","src":"590:176:0","text":" Return the account nonce.\n This method returns the next sequential nonce.\n For a nonce of a specific key, use `entrypoint.getNonce(account, key)`"},"functionSelector":"d087d288","id":28,"implemented":true,"kind":"function","modifiers":[],"name":"getNonce","nameLocation":"780:8:0","nodeType":"FunctionDefinition","parameters":{"id":13,"nodeType":"ParameterList","parameters":[],"src":"788:2:0"},"returnParameters":{"id":16,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28,"src":"820:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14,"name":"uint256","nodeType":"ElementaryTypeName","src":"820:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"819:9:0"},"scope":138,"src":"771:121:0","stateMutability":"view","virtual":true,"visibility":"public"},{"documentation":{"id":29,"nodeType":"StructuredDocumentation","src":"898:137:0","text":" Return the entryPoint used by this account.\n Subclass should return the current entryPoint used by this account."},"functionSelector":"b0d691fe","id":35,"implemented":false,"kind":"function","modifiers":[],"name":"entryPoint","nameLocation":"1049:10:0","nodeType":"FunctionDefinition","parameters":{"id":30,"nodeType":"ParameterList","parameters":[],"src":"1059:2:0"},"returnParameters":{"id":34,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35,"src":"1091:11:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"},"typeName":{"id":32,"nodeType":"UserDefinedTypeName","pathNode":{"id":31,"name":"IEntryPoint","nameLocations":["1091:11:0"],"nodeType":"IdentifierPath","referencedDeclaration":909,"src":"1091:11:0"},"referencedDeclaration":909,"src":"1091:11:0","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"visibility":"internal"}],"src":"1090:13:0"},"scope":138,"src":"1040:64:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[690],"body":{"id":68,"nodeType":"Block","src":"1338:186:0","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":49,"name":"_requireFromEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":86,"src":"1348:22:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":50,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1348:24:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":51,"nodeType":"ExpressionStatement","src":"1348:24:0"},{"expression":{"id":57,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":52,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":47,"src":"1382:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":54,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39,"src":"1418:6:0","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"id":55,"name":"userOpHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":41,"src":"1426:10:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":53,"name":"_validateSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":97,"src":"1399:18:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PackedUserOperation_$1054_calldata_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (struct PackedUserOperation calldata,bytes32) returns (uint256)"}},"id":56,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1399:38:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1382:55:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":58,"nodeType":"ExpressionStatement","src":"1382:55:0"},{"expression":{"arguments":[{"expression":{"id":60,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39,"src":"1462:6:0","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":61,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1469:5:0","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":1039,"src":"1462:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":59,"name":"_validateNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":104,"src":"1447:14:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$__$","typeString":"function (uint256) view"}},"id":62,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1447:28:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":63,"nodeType":"ExpressionStatement","src":"1447:28:0"},{"expression":{"arguments":[{"id":65,"name":"missingAccountFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":43,"src":"1497:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":64,"name":"_payPrefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":137,"src":"1485:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":66,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1485:32:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":67,"nodeType":"ExpressionStatement","src":"1485:32:0"}]},"documentation":{"id":36,"nodeType":"StructuredDocumentation","src":"1110:24:0","text":"@inheritdoc IAccount"},"functionSelector":"19822f7c","id":69,"implemented":true,"kind":"function","modifiers":[],"name":"validateUserOp","nameLocation":"1148:14:0","nodeType":"FunctionDefinition","overrides":{"id":45,"nodeType":"OverrideSpecifier","overrides":[],"src":"1296:8:0"},"parameters":{"id":44,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39,"mutability":"mutable","name":"userOp","nameLocation":"1201:6:0","nodeType":"VariableDeclaration","scope":69,"src":"1172:35:0","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":38,"nodeType":"UserDefinedTypeName","pathNode":{"id":37,"name":"PackedUserOperation","nameLocations":["1172:19:0"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"1172:19:0"},"referencedDeclaration":1054,"src":"1172:19:0","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":41,"mutability":"mutable","name":"userOpHash","nameLocation":"1225:10:0","nodeType":"VariableDeclaration","scope":69,"src":"1217:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":40,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1217:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":43,"mutability":"mutable","name":"missingAccountFunds","nameLocation":"1253:19:0","nodeType":"VariableDeclaration","scope":69,"src":"1245:27:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":42,"name":"uint256","nodeType":"ElementaryTypeName","src":"1245:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1162:116:0"},"returnParameters":{"id":48,"nodeType":"ParameterList","parameters":[{"constant":false,"id":47,"mutability":"mutable","name":"validationData","nameLocation":"1322:14:0","nodeType":"VariableDeclaration","scope":69,"src":"1314:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":46,"name":"uint256","nodeType":"ElementaryTypeName","src":"1314:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1313:24:0"},"scope":138,"src":"1139:385:0","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"body":{"id":85,"nodeType":"Block","src":"1661:127:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":81,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":74,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1692:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":75,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1696:6:0","memberName":"sender","nodeType":"MemberAccess","src":"1692:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":78,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35,"src":"1714:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$909_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":79,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1714:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}],"id":77,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1706:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":76,"name":"address","nodeType":"ElementaryTypeName","src":"1706:7:0","typeDescriptions":{}}},"id":80,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1706:21:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1692:35:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6163636f756e743a206e6f742066726f6d20456e747279506f696e74","id":82,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1741:30:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_f684c2c0c9ec797849b62669189fe025e9077c00ba7812987ce38c0071ad7a50","typeString":"literal_string \"account: not from EntryPoint\""},"value":"account: not from EntryPoint"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_f684c2c0c9ec797849b62669189fe025e9077c00ba7812987ce38c0071ad7a50","typeString":"literal_string \"account: not from EntryPoint\""}],"id":73,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"1671:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":83,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1671:110:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":84,"nodeType":"ExpressionStatement","src":"1671:110:0"}]},"documentation":{"id":70,"nodeType":"StructuredDocumentation","src":"1530:70:0","text":" Ensure the request comes from the known entrypoint."},"id":86,"implemented":true,"kind":"function","modifiers":[],"name":"_requireFromEntryPoint","nameLocation":"1614:22:0","nodeType":"FunctionDefinition","parameters":{"id":71,"nodeType":"ParameterList","parameters":[],"src":"1636:2:0"},"returnParameters":{"id":72,"nodeType":"ParameterList","parameters":[],"src":"1661:0:0"},"scope":138,"src":"1605:183:0","stateMutability":"view","virtual":true,"visibility":"internal"},{"documentation":{"id":87,"nodeType":"StructuredDocumentation","src":"1794:1106:0","text":" Validate the signature is valid for this message.\n @param userOp          - Validate the userOp.signature field.\n @param userOpHash      - Convenient field: the hash of the request, to check the signature against.\n                          (also hashes the entrypoint and chain id)\n @return validationData - Signature and time-range of this operation.\n                          <20-byte> aggregatorOrSigFail - 0 for valid signature, 1 to mark signature failure,\n                                    otherwise, an address of an aggregator contract.\n                          <6-byte> validUntil - last timestamp this operation is valid. 0 for \"indefinite\"\n                          <6-byte> validAfter - first timestamp this operation is valid\n                          If the account doesn't use time-range, it is enough to return\n                          SIG_VALIDATION_FAILED value (1) for signature failure.\n                          Note that the validation code cannot use block.timestamp (or block.number) directly."},"id":97,"implemented":false,"kind":"function","modifiers":[],"name":"_validateSignature","nameLocation":"2914:18:0","nodeType":"FunctionDefinition","parameters":{"id":93,"nodeType":"ParameterList","parameters":[{"constant":false,"id":90,"mutability":"mutable","name":"userOp","nameLocation":"2971:6:0","nodeType":"VariableDeclaration","scope":97,"src":"2942:35:0","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":89,"nodeType":"UserDefinedTypeName","pathNode":{"id":88,"name":"PackedUserOperation","nameLocations":["2942:19:0"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"2942:19:0"},"referencedDeclaration":1054,"src":"2942:19:0","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":92,"mutability":"mutable","name":"userOpHash","nameLocation":"2995:10:0","nodeType":"VariableDeclaration","scope":97,"src":"2987:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":91,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2987:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2932:79:0"},"returnParameters":{"id":96,"nodeType":"ParameterList","parameters":[{"constant":false,"id":95,"mutability":"mutable","name":"validationData","nameLocation":"3046:14:0","nodeType":"VariableDeclaration","scope":97,"src":"3038:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":94,"name":"uint256","nodeType":"ElementaryTypeName","src":"3038:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3037:24:0"},"scope":138,"src":"2905:157:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":103,"nodeType":"Block","src":"3774:7:0","statements":[]},"documentation":{"id":98,"nodeType":"StructuredDocumentation","src":"3068:640:0","text":" Validate the nonce of the UserOperation.\n This method may validate the nonce requirement of this account.\n e.g.\n To limit the nonce to use sequenced UserOps only (no \"out of order\" UserOps):\n      `require(nonce < type(uint64).max)`\n For a hypothetical account that *requires* the nonce to be out-of-order:\n      `require(nonce & type(uint64).max == 0)`\n The actual nonce uniqueness is managed by the EntryPoint, and thus no other\n action is needed by the account itself.\n @param nonce to validate\n solhint-disable-next-line no-empty-blocks"},"id":104,"implemented":true,"kind":"function","modifiers":[],"name":"_validateNonce","nameLocation":"3722:14:0","nodeType":"FunctionDefinition","parameters":{"id":101,"nodeType":"ParameterList","parameters":[{"constant":false,"id":100,"mutability":"mutable","name":"nonce","nameLocation":"3745:5:0","nodeType":"VariableDeclaration","scope":104,"src":"3737:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":99,"name":"uint256","nodeType":"ElementaryTypeName","src":"3737:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3736:15:0"},"returnParameters":{"id":102,"nodeType":"ParameterList","parameters":[],"src":"3774:0:0"},"scope":138,"src":"3713:68:0","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":136,"nodeType":"Block","src":"4423:315:0","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":112,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":110,"name":"missingAccountFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":107,"src":"4437:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":111,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4460:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4437:24:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":135,"nodeType":"IfStatement","src":"4433:299:0","trueBody":{"id":134,"nodeType":"Block","src":"4463:269:0","statements":[{"assignments":[114,null],"declarations":[{"constant":false,"id":114,"mutability":"mutable","name":"success","nameLocation":"4483:7:0","nodeType":"VariableDeclaration","scope":134,"src":"4478:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":113,"name":"bool","nodeType":"ElementaryTypeName","src":"4478:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":130,"initialValue":{"arguments":[{"hexValue":"","id":128,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4619:2:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"arguments":[{"expression":{"id":117,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4504:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":118,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4508:6:0","memberName":"sender","nodeType":"MemberAccess","src":"4504:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":116,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4496:8:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_payable_$","typeString":"type(address payable)"},"typeName":{"id":115,"name":"address","nodeType":"ElementaryTypeName","src":"4496:8:0","stateMutability":"payable","typeDescriptions":{}}},"id":119,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4496:19:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":120,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4516:4:0","memberName":"call","nodeType":"MemberAccess","src":"4496:24:0","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":127,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value","gas"],"nodeType":"FunctionCallOptions","options":[{"id":121,"name":"missingAccountFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":107,"src":"4545:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"arguments":[{"id":124,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4592:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":123,"name":"uint256","nodeType":"ElementaryTypeName","src":"4592:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":122,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4587:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":125,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4587:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":126,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4601:3:0","memberName":"max","nodeType":"MemberAccess","src":"4587:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"4496:122:0","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$gasvalue","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4496:126:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"4477:145:0"},{"expression":{"components":[{"id":131,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":114,"src":"4637:7:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":132,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4636:9:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":133,"nodeType":"ExpressionStatement","src":"4636:9:0"}]}}]},"documentation":{"id":105,"nodeType":"StructuredDocumentation","src":"3787:564:0","text":" Sends to the entrypoint (msg.sender) the missing funds for this transaction.\n SubClass MAY override this method for better funds management\n (e.g. send to the entryPoint more than the minimum required, so that in future transactions\n it will not be required to send again).\n @param missingAccountFunds - The minimum value this method should send the entrypoint.\n                              This value MAY be zero, in case there is enough deposit,\n                              or the userOp has a paymaster."},"id":137,"implemented":true,"kind":"function","modifiers":[],"name":"_payPrefund","nameLocation":"4365:11:0","nodeType":"FunctionDefinition","parameters":{"id":108,"nodeType":"ParameterList","parameters":[{"constant":false,"id":107,"mutability":"mutable","name":"missingAccountFunds","nameLocation":"4385:19:0","nodeType":"VariableDeclaration","scope":137,"src":"4377:27:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":106,"name":"uint256","nodeType":"ElementaryTypeName","src":"4377:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4376:29:0"},"returnParameters":{"id":109,"nodeType":"ParameterList","parameters":[],"src":"4423:0:0"},"scope":138,"src":"4356:382:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":139,"src":"489:4251:0","usedErrors":[],"usedEvents":[]}],"src":"36:4705:0"},"id":0},"@account-abstraction/contracts/core/Helpers.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/core/Helpers.sol","exportedSymbols":{"SIG_VALIDATION_FAILED":[143],"SIG_VALIDATION_SUCCESS":[146],"ValidationData":[154],"_packValidationData":[251,289],"_parseValidationData":[214],"calldataKeccak":[299],"min":[317]},"id":318,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":140,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"36:24:1"},{"constant":true,"id":143,"mutability":"constant","name":"SIG_VALIDATION_FAILED","nameLocation":"281:21:1","nodeType":"VariableDeclaration","scope":318,"src":"264:42:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":141,"name":"uint256","nodeType":"ElementaryTypeName","src":"264:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31","id":142,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"305:1:1","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"visibility":"internal"},{"constant":true,"id":146,"mutability":"constant","name":"SIG_VALIDATION_SUCCESS","nameLocation":"440:22:1","nodeType":"VariableDeclaration","scope":318,"src":"423:43:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":144,"name":"uint256","nodeType":"ElementaryTypeName","src":"423:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30","id":145,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"465:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"internal"},{"canonicalName":"ValidationData","documentation":{"id":147,"nodeType":"StructuredDocumentation","src":"470:640:1","text":" Returned data from validateUserOp.\n validateUserOp returns a uint256, which is created by `_packedValidationData` and\n parsed by `_parseValidationData`.\n @param aggregator  - address(0) - The account validated the signature by itself.\n                      address(1) - The account failed to validate the signature.\n                      otherwise - This is an address of a signature aggregator that must\n                                  be used to validate the signature.\n @param validAfter  - This UserOp is valid only after this timestamp.\n @param validaUntil - This UserOp is valid only up to this timestamp."},"id":154,"members":[{"constant":false,"id":149,"mutability":"mutable","name":"aggregator","nameLocation":"1147:10:1","nodeType":"VariableDeclaration","scope":154,"src":"1139:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":148,"name":"address","nodeType":"ElementaryTypeName","src":"1139:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":151,"mutability":"mutable","name":"validAfter","nameLocation":"1170:10:1","nodeType":"VariableDeclaration","scope":154,"src":"1163:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":150,"name":"uint48","nodeType":"ElementaryTypeName","src":"1163:6:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":153,"mutability":"mutable","name":"validUntil","nameLocation":"1193:10:1","nodeType":"VariableDeclaration","scope":154,"src":"1186:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":152,"name":"uint48","nodeType":"ElementaryTypeName","src":"1186:6:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"name":"ValidationData","nameLocation":"1118:14:1","nodeType":"StructDefinition","scope":318,"src":"1111:95:1","visibility":"public"},{"body":{"id":213,"nodeType":"Block","src":"1472:314:1","statements":[{"assignments":[164],"declarations":[{"constant":false,"id":164,"mutability":"mutable","name":"aggregator","nameLocation":"1486:10:1","nodeType":"VariableDeclaration","scope":213,"src":"1478:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":163,"name":"address","nodeType":"ElementaryTypeName","src":"1478:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":172,"initialValue":{"arguments":[{"arguments":[{"id":169,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":157,"src":"1515:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":168,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1507:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":167,"name":"uint160","nodeType":"ElementaryTypeName","src":"1507:7:1","typeDescriptions":{}}},"id":170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1507:23:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":166,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1499:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":165,"name":"address","nodeType":"ElementaryTypeName","src":"1499:7:1","typeDescriptions":{}}},"id":171,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1499:32:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"1478:53:1"},{"assignments":[174],"declarations":[{"constant":false,"id":174,"mutability":"mutable","name":"validUntil","nameLocation":"1544:10:1","nodeType":"VariableDeclaration","scope":213,"src":"1537:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":173,"name":"uint48","nodeType":"ElementaryTypeName","src":"1537:6:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":181,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":177,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":157,"src":"1564:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"313630","id":178,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1582:3:1","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"src":"1564:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":176,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1557:6:1","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":175,"name":"uint48","nodeType":"ElementaryTypeName","src":"1557:6:1","typeDescriptions":{}}},"id":180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1557:29:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"1537:49:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":184,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":182,"name":"validUntil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":174,"src":"1596:10:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":183,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1610:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1596:15:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":194,"nodeType":"IfStatement","src":"1592:67:1","trueBody":{"id":193,"nodeType":"Block","src":"1613:46:1","statements":[{"expression":{"id":191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":185,"name":"validUntil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":174,"src":"1623:10:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"arguments":[{"id":188,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1641:6:1","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":187,"name":"uint48","nodeType":"ElementaryTypeName","src":"1641:6:1","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"}],"id":186,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1636:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":189,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1636:12:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint48","typeString":"type(uint48)"}},"id":190,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1649:3:1","memberName":"max","nodeType":"MemberAccess","src":"1636:16:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"1623:29:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":192,"nodeType":"ExpressionStatement","src":"1623:29:1"}]}},{"assignments":[196],"declarations":[{"constant":false,"id":196,"mutability":"mutable","name":"validAfter","nameLocation":"1671:10:1","nodeType":"VariableDeclaration","scope":213,"src":"1664:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":195,"name":"uint48","nodeType":"ElementaryTypeName","src":"1664:6:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":206,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":199,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":157,"src":"1691:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"id":202,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3438","id":200,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1710:2:1","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"313630","id":201,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1715:3:1","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"src":"1710:8:1","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}}],"id":203,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1709:10:1","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}},"src":"1691:28:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":198,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1684:6:1","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":197,"name":"uint48","nodeType":"ElementaryTypeName","src":"1684:6:1","typeDescriptions":{}}},"id":205,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1684:36:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"1664:56:1"},{"expression":{"arguments":[{"id":208,"name":"aggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":164,"src":"1748:10:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":209,"name":"validAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":196,"src":"1760:10:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":210,"name":"validUntil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":174,"src":"1772:10:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":207,"name":"ValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":154,"src":"1733:14:1","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_ValidationData_$154_storage_ptr_$","typeString":"type(struct ValidationData storage pointer)"}},"id":211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1733:50:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$154_memory_ptr","typeString":"struct ValidationData memory"}},"functionReturnParameters":162,"id":212,"nodeType":"Return","src":"1726:57:1"}]},"documentation":{"id":155,"nodeType":"StructuredDocumentation","src":"1208:161:1","text":" Extract sigFailed, validAfter, validUntil.\n Also convert zero validUntil to type(uint48).max.\n @param validationData - The packed validation data."},"id":214,"implemented":true,"kind":"freeFunction","modifiers":[],"name":"_parseValidationData","nameLocation":"1379:20:1","nodeType":"FunctionDefinition","parameters":{"id":158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":157,"mutability":"mutable","name":"validationData","nameLocation":"1413:14:1","nodeType":"VariableDeclaration","scope":214,"src":"1405:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":156,"name":"uint256","nodeType":"ElementaryTypeName","src":"1405:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1399:30:1"},"returnParameters":{"id":162,"nodeType":"ParameterList","parameters":[{"constant":false,"id":161,"mutability":"mutable","name":"data","nameLocation":"1466:4:1","nodeType":"VariableDeclaration","scope":214,"src":"1444:26:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$154_memory_ptr","typeString":"struct ValidationData"},"typeName":{"id":160,"nodeType":"UserDefinedTypeName","pathNode":{"id":159,"name":"ValidationData","nameLocations":["1444:14:1"],"nodeType":"IdentifierPath","referencedDeclaration":154,"src":"1444:14:1"},"referencedDeclaration":154,"src":"1444:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$154_storage_ptr","typeString":"struct ValidationData"}},"visibility":"internal"}],"src":"1443:28:1"},"scope":318,"src":"1370:416:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":250,"nodeType":"Block","src":"1982:143:1","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":225,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":218,"src":"2011:4:1","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$154_memory_ptr","typeString":"struct ValidationData memory"}},"id":226,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2016:10:1","memberName":"aggregator","nodeType":"MemberAccess","referencedDeclaration":149,"src":"2011:15:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":224,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2003:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":223,"name":"uint160","nodeType":"ElementaryTypeName","src":"2003:7:1","typeDescriptions":{}}},"id":227,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2003:24:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":230,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":218,"src":"2047:4:1","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$154_memory_ptr","typeString":"struct ValidationData memory"}},"id":231,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2052:10:1","memberName":"validUntil","nodeType":"MemberAccess","referencedDeclaration":153,"src":"2047:15:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":229,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2039:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":228,"name":"uint256","nodeType":"ElementaryTypeName","src":"2039:7:1","typeDescriptions":{}}},"id":232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2039:24:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313630","id":233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2067:3:1","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"src":"2039:31:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":235,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2038:33:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2003:68:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":246,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":239,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":218,"src":"2091:4:1","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$154_memory_ptr","typeString":"struct ValidationData memory"}},"id":240,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2096:10:1","memberName":"validAfter","nodeType":"MemberAccess","referencedDeclaration":151,"src":"2091:15:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":238,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2083:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":237,"name":"uint256","nodeType":"ElementaryTypeName","src":"2083:7:1","typeDescriptions":{}}},"id":241,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2083:24:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"id":244,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"313630","id":242,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2112:3:1","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3438","id":243,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2118:2:1","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"2112:8:1","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}}],"id":245,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2111:10:1","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}},"src":"2083:38:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":247,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2082:40:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2003:119:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":222,"id":249,"nodeType":"Return","src":"1988:134:1"}]},"documentation":{"id":215,"nodeType":"StructuredDocumentation","src":"1788:107:1","text":" Helper to pack the return value for validateUserOp.\n @param data - The ValidationData to pack."},"id":251,"implemented":true,"kind":"freeFunction","modifiers":[],"name":"_packValidationData","nameLocation":"1905:19:1","nodeType":"FunctionDefinition","parameters":{"id":219,"nodeType":"ParameterList","parameters":[{"constant":false,"id":218,"mutability":"mutable","name":"data","nameLocation":"1952:4:1","nodeType":"VariableDeclaration","scope":251,"src":"1930:26:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$154_memory_ptr","typeString":"struct ValidationData"},"typeName":{"id":217,"nodeType":"UserDefinedTypeName","pathNode":{"id":216,"name":"ValidationData","nameLocations":["1930:14:1"],"nodeType":"IdentifierPath","referencedDeclaration":154,"src":"1930:14:1"},"referencedDeclaration":154,"src":"1930:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$154_storage_ptr","typeString":"struct ValidationData"}},"visibility":"internal"}],"src":"1924:34:1"},"returnParameters":{"id":222,"nodeType":"ParameterList","parameters":[{"constant":false,"id":221,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":251,"src":"1973:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":220,"name":"uint256","nodeType":"ElementaryTypeName","src":"1973:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1972:9:1"},"scope":318,"src":"1896:229:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":288,"nodeType":"Block","src":"2568:128:1","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":286,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"condition":{"id":263,"name":"sigFailed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"2590:9:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2606:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2590:17:1","trueExpression":{"hexValue":"31","id":264,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2602:1:1","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":267,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2589:19:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":270,"name":"validUntil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"2628:10:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":269,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2620:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":268,"name":"uint256","nodeType":"ElementaryTypeName","src":"2620:7:1","typeDescriptions":{}}},"id":271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2620:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313630","id":272,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2643:3:1","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"src":"2620:26:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":274,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2619:28:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2589:58:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":278,"name":"validAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":258,"src":"2667:10:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":277,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2659:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":276,"name":"uint256","nodeType":"ElementaryTypeName","src":"2659:7:1","typeDescriptions":{}}},"id":279,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2659:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"id":282,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"313630","id":280,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2683:3:1","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3438","id":281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2689:2:1","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"2683:8:1","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}}],"id":283,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2682:10:1","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}},"src":"2659:33:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":285,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2658:35:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2589:104:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":262,"id":287,"nodeType":"Return","src":"2574:119:1"}]},"documentation":{"id":252,"nodeType":"StructuredDocumentation","src":"2127:320:1","text":" Helper to pack the return value for validateUserOp, when not using an aggregator.\n @param sigFailed  - True for signature failure, false for success.\n @param validUntil - Last timestamp this UserOperation is valid (or zero for infinite).\n @param validAfter - First timestamp this UserOperation is valid."},"id":289,"implemented":true,"kind":"freeFunction","modifiers":[],"name":"_packValidationData","nameLocation":"2457:19:1","nodeType":"FunctionDefinition","parameters":{"id":259,"nodeType":"ParameterList","parameters":[{"constant":false,"id":254,"mutability":"mutable","name":"sigFailed","nameLocation":"2487:9:1","nodeType":"VariableDeclaration","scope":289,"src":"2482:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":253,"name":"bool","nodeType":"ElementaryTypeName","src":"2482:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":256,"mutability":"mutable","name":"validUntil","nameLocation":"2509:10:1","nodeType":"VariableDeclaration","scope":289,"src":"2502:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":255,"name":"uint48","nodeType":"ElementaryTypeName","src":"2502:6:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":258,"mutability":"mutable","name":"validAfter","nameLocation":"2532:10:1","nodeType":"VariableDeclaration","scope":289,"src":"2525:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":257,"name":"uint48","nodeType":"ElementaryTypeName","src":"2525:6:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2476:68:1"},"returnParameters":{"id":262,"nodeType":"ParameterList","parameters":[{"constant":false,"id":261,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":289,"src":"2559:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":260,"name":"uint256","nodeType":"ElementaryTypeName","src":"2559:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2558:9:1"},"scope":318,"src":"2448:248:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":298,"nodeType":"Block","src":"2951:209:1","statements":[{"AST":{"nativeSrc":"2986:168:1","nodeType":"YulBlock","src":"2986:168:1","statements":[{"nativeSrc":"3000:22:1","nodeType":"YulVariableDeclaration","src":"3000:22:1","value":{"arguments":[{"kind":"number","nativeSrc":"3017:4:1","nodeType":"YulLiteral","src":"3017:4:1","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"3011:5:1","nodeType":"YulIdentifier","src":"3011:5:1"},"nativeSrc":"3011:11:1","nodeType":"YulFunctionCall","src":"3011:11:1"},"variables":[{"name":"mem","nativeSrc":"3004:3:1","nodeType":"YulTypedName","src":"3004:3:1","type":""}]},{"nativeSrc":"3035:22:1","nodeType":"YulVariableDeclaration","src":"3035:22:1","value":{"name":"data.length","nativeSrc":"3046:11:1","nodeType":"YulIdentifier","src":"3046:11:1"},"variables":[{"name":"len","nativeSrc":"3039:3:1","nodeType":"YulTypedName","src":"3039:3:1","type":""}]},{"expression":{"arguments":[{"name":"mem","nativeSrc":"3083:3:1","nodeType":"YulIdentifier","src":"3083:3:1"},{"name":"data.offset","nativeSrc":"3088:11:1","nodeType":"YulIdentifier","src":"3088:11:1"},{"name":"len","nativeSrc":"3101:3:1","nodeType":"YulIdentifier","src":"3101:3:1"}],"functionName":{"name":"calldatacopy","nativeSrc":"3070:12:1","nodeType":"YulIdentifier","src":"3070:12:1"},"nativeSrc":"3070:35:1","nodeType":"YulFunctionCall","src":"3070:35:1"},"nativeSrc":"3070:35:1","nodeType":"YulExpressionStatement","src":"3070:35:1"},{"nativeSrc":"3118:26:1","nodeType":"YulAssignment","src":"3118:26:1","value":{"arguments":[{"name":"mem","nativeSrc":"3135:3:1","nodeType":"YulIdentifier","src":"3135:3:1"},{"name":"len","nativeSrc":"3140:3:1","nodeType":"YulIdentifier","src":"3140:3:1"}],"functionName":{"name":"keccak256","nativeSrc":"3125:9:1","nodeType":"YulIdentifier","src":"3125:9:1"},"nativeSrc":"3125:19:1","nodeType":"YulFunctionCall","src":"3125:19:1"},"variableNames":[{"name":"ret","nativeSrc":"3118:3:1","nodeType":"YulIdentifier","src":"3118:3:1"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":292,"isOffset":false,"isSlot":false,"src":"3046:11:1","suffix":"length","valueSize":1},{"declaration":292,"isOffset":true,"isSlot":false,"src":"3088:11:1","suffix":"offset","valueSize":1},{"declaration":295,"isOffset":false,"isSlot":false,"src":"3118:3:1","valueSize":1}],"flags":["memory-safe"],"id":297,"nodeType":"InlineAssembly","src":"2961:193:1"}]},"documentation":{"id":290,"nodeType":"StructuredDocumentation","src":"2698:176:1","text":" keccak function over calldata.\n @dev copy calldata into memory, do keccak and drop allocated memory. Strangely, this is more efficient than letting solidity do it."},"id":299,"implemented":true,"kind":"freeFunction","modifiers":[],"name":"calldataKeccak","nameLocation":"2888:14:1","nodeType":"FunctionDefinition","parameters":{"id":293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":292,"mutability":"mutable","name":"data","nameLocation":"2918:4:1","nodeType":"VariableDeclaration","scope":299,"src":"2903:19:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":291,"name":"bytes","nodeType":"ElementaryTypeName","src":"2903:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2902:21:1"},"returnParameters":{"id":296,"nodeType":"ParameterList","parameters":[{"constant":false,"id":295,"mutability":"mutable","name":"ret","nameLocation":"2946:3:1","nodeType":"VariableDeclaration","scope":299,"src":"2938:11:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":294,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2938:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2937:13:1"},"scope":318,"src":"2879:281:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":316,"nodeType":"Block","src":"3321:37:1","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":311,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":309,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":302,"src":"3338:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":310,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":304,"src":"3342:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3338:5:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":313,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":304,"src":"3350:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3338:13:1","trueExpression":{"id":312,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":302,"src":"3346:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":308,"id":315,"nodeType":"Return","src":"3331:20:1"}]},"documentation":{"id":300,"nodeType":"StructuredDocumentation","src":"3163:95:1","text":" The minimum of two numbers.\n @param a - First number.\n @param b - Second number."},"id":317,"implemented":true,"kind":"freeFunction","modifiers":[],"name":"min","nameLocation":"3272:3:1","nodeType":"FunctionDefinition","parameters":{"id":305,"nodeType":"ParameterList","parameters":[{"constant":false,"id":302,"mutability":"mutable","name":"a","nameLocation":"3284:1:1","nodeType":"VariableDeclaration","scope":317,"src":"3276:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":301,"name":"uint256","nodeType":"ElementaryTypeName","src":"3276:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":304,"mutability":"mutable","name":"b","nameLocation":"3295:1:1","nodeType":"VariableDeclaration","scope":317,"src":"3287:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":303,"name":"uint256","nodeType":"ElementaryTypeName","src":"3287:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3275:22:1"},"returnParameters":{"id":308,"nodeType":"ParameterList","parameters":[{"constant":false,"id":307,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":317,"src":"3312:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":306,"name":"uint256","nodeType":"ElementaryTypeName","src":"3312:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3311:9:1"},"scope":318,"src":"3263:95:1","stateMutability":"pure","virtual":false,"visibility":"internal"}],"src":"36:3323:1"},"id":1},"@account-abstraction/contracts/core/UserOperationLib.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/core/UserOperationLib.sol","exportedSymbols":{"PackedUserOperation":[1054],"UserOperationLib":[674],"calldataKeccak":[299],"min":[317]},"id":675,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":319,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"36:24:2"},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"../interfaces/PackedUserOperation.sol","id":320,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":675,"sourceUnit":1055,"src":"104:47:2","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/Helpers.sol","file":"./Helpers.sol","id":323,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":675,"sourceUnit":318,"src":"152:50:2","symbolAliases":[{"foreign":{"id":321,"name":"calldataKeccak","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":299,"src":"160:14:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":322,"name":"min","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":317,"src":"176:3:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"UserOperationLib","contractDependencies":[],"contractKind":"library","documentation":{"id":324,"nodeType":"StructuredDocumentation","src":"204:77:2","text":" Utility functions helpful when working with UserOperation structs."},"fullyImplemented":true,"id":674,"linearizedBaseContracts":[674],"name":"UserOperationLib","nameLocation":"290:16:2","nodeType":"ContractDefinition","nodes":[{"constant":true,"functionSelector":"b29a8ff4","id":327,"mutability":"constant","name":"PAYMASTER_VALIDATION_GAS_OFFSET","nameLocation":"338:31:2","nodeType":"VariableDeclaration","scope":674,"src":"314:60:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":325,"name":"uint256","nodeType":"ElementaryTypeName","src":"314:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3230","id":326,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"372:2:2","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"visibility":"public"},{"constant":true,"functionSelector":"25093e1b","id":330,"mutability":"constant","name":"PAYMASTER_POSTOP_GAS_OFFSET","nameLocation":"404:27:2","nodeType":"VariableDeclaration","scope":674,"src":"380:56:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":328,"name":"uint256","nodeType":"ElementaryTypeName","src":"380:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3336","id":329,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"434:2:2","typeDescriptions":{"typeIdentifier":"t_rational_36_by_1","typeString":"int_const 36"},"value":"36"},"visibility":"public"},{"constant":true,"functionSelector":"ede31502","id":333,"mutability":"constant","name":"PAYMASTER_DATA_OFFSET","nameLocation":"466:21:2","nodeType":"VariableDeclaration","scope":674,"src":"442:50:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":331,"name":"uint256","nodeType":"ElementaryTypeName","src":"442:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3532","id":332,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"490:2:2","typeDescriptions":{"typeIdentifier":"t_rational_52_by_1","typeString":"int_const 52"},"value":"52"},"visibility":"public"},{"body":{"id":354,"nodeType":"Block","src":"708:221:2","statements":[{"assignments":[343],"declarations":[{"constant":false,"id":343,"mutability":"mutable","name":"data","nameLocation":"726:4:2","nodeType":"VariableDeclaration","scope":354,"src":"718:12:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":342,"name":"address","nodeType":"ElementaryTypeName","src":"718:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":344,"nodeType":"VariableDeclarationStatement","src":"718:12:2"},{"AST":{"nativeSrc":"832:52:2","nodeType":"YulBlock","src":"832:52:2","statements":[{"nativeSrc":"846:28:2","nodeType":"YulAssignment","src":"846:28:2","value":{"arguments":[{"name":"userOp","nativeSrc":"867:6:2","nodeType":"YulIdentifier","src":"867:6:2"}],"functionName":{"name":"calldataload","nativeSrc":"854:12:2","nodeType":"YulIdentifier","src":"854:12:2"},"nativeSrc":"854:20:2","nodeType":"YulFunctionCall","src":"854:20:2"},"variableNames":[{"name":"data","nativeSrc":"846:4:2","nodeType":"YulIdentifier","src":"846:4:2"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":343,"isOffset":false,"isSlot":false,"src":"846:4:2","valueSize":1},{"declaration":337,"isOffset":false,"isSlot":false,"src":"867:6:2","valueSize":1}],"id":345,"nodeType":"InlineAssembly","src":"823:61:2"},{"expression":{"arguments":[{"arguments":[{"id":350,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":343,"src":"916:4:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":349,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"908:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":348,"name":"uint160","nodeType":"ElementaryTypeName","src":"908:7:2","typeDescriptions":{}}},"id":351,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"908:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":347,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"900:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":346,"name":"address","nodeType":"ElementaryTypeName","src":"900:7:2","typeDescriptions":{}}},"id":352,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"900:22:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":341,"id":353,"nodeType":"Return","src":"893:29:2"}]},"documentation":{"id":334,"nodeType":"StructuredDocumentation","src":"498:103:2","text":" Get sender from user operation data.\n @param userOp - The user operation data."},"id":355,"implemented":true,"kind":"function","modifiers":[],"name":"getSender","nameLocation":"615:9:2","nodeType":"FunctionDefinition","parameters":{"id":338,"nodeType":"ParameterList","parameters":[{"constant":false,"id":337,"mutability":"mutable","name":"userOp","nameLocation":"663:6:2","nodeType":"VariableDeclaration","scope":355,"src":"634:35:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":336,"nodeType":"UserDefinedTypeName","pathNode":{"id":335,"name":"PackedUserOperation","nameLocations":["634:19:2"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"634:19:2"},"referencedDeclaration":1054,"src":"634:19:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"624:51:2"},"returnParameters":{"id":341,"nodeType":"ParameterList","parameters":[{"constant":false,"id":340,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":355,"src":"699:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":339,"name":"address","nodeType":"ElementaryTypeName","src":"699:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"698:9:2"},"scope":674,"src":"606:323:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":389,"nodeType":"Block","src":"1235:395:2","statements":[{"id":388,"nodeType":"UncheckedBlock","src":"1245:379:2","statements":[{"assignments":[365,367],"declarations":[{"constant":false,"id":365,"mutability":"mutable","name":"maxPriorityFeePerGas","nameLocation":"1278:20:2","nodeType":"VariableDeclaration","scope":388,"src":"1270:28:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":364,"name":"uint256","nodeType":"ElementaryTypeName","src":"1270:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":367,"mutability":"mutable","name":"maxFeePerGas","nameLocation":"1308:12:2","nodeType":"VariableDeclaration","scope":388,"src":"1300:20:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":366,"name":"uint256","nodeType":"ElementaryTypeName","src":"1300:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":372,"initialValue":{"arguments":[{"expression":{"id":369,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":359,"src":"1336:6:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1343:7:2","memberName":"gasFees","nodeType":"MemberAccess","referencedDeclaration":1049,"src":"1336:14:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":368,"name":"unpackUints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":485,"src":"1324:11:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256,uint256)"}},"id":371,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1324:27:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"1269:82:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":373,"name":"maxFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":367,"src":"1369:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":374,"name":"maxPriorityFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":365,"src":"1385:20:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1369:36:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":379,"nodeType":"IfStatement","src":"1365:173:2","trueBody":{"id":378,"nodeType":"Block","src":"1407:131:2","statements":[{"expression":{"id":376,"name":"maxFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":367,"src":"1511:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":363,"id":377,"nodeType":"Return","src":"1504:19:2"}]}},{"expression":{"arguments":[{"id":381,"name":"maxFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":367,"src":"1562:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":382,"name":"maxPriorityFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":365,"src":"1576:20:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":383,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"1599:5:2","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1605:7:2","memberName":"basefee","nodeType":"MemberAccess","src":"1599:13:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1576:36:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":380,"name":"min","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":317,"src":"1558:3:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":386,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1558:55:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":363,"id":387,"nodeType":"Return","src":"1551:62:2"}]}]},"documentation":{"id":356,"nodeType":"StructuredDocumentation","src":"935:194:2","text":" Relayer/block builder might submit the TX with higher priorityFee,\n but the user should not pay above what he signed for.\n @param userOp - The user operation data."},"id":390,"implemented":true,"kind":"function","modifiers":[],"name":"gasPrice","nameLocation":"1143:8:2","nodeType":"FunctionDefinition","parameters":{"id":360,"nodeType":"ParameterList","parameters":[{"constant":false,"id":359,"mutability":"mutable","name":"userOp","nameLocation":"1190:6:2","nodeType":"VariableDeclaration","scope":390,"src":"1161:35:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":358,"nodeType":"UserDefinedTypeName","pathNode":{"id":357,"name":"PackedUserOperation","nameLocations":["1161:19:2"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"1161:19:2"},"referencedDeclaration":1054,"src":"1161:19:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"1151:51:2"},"returnParameters":{"id":363,"nodeType":"ParameterList","parameters":[{"constant":false,"id":362,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":390,"src":"1226:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":361,"name":"uint256","nodeType":"ElementaryTypeName","src":"1226:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1225:9:2"},"scope":674,"src":"1134:496:2","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":458,"nodeType":"Block","src":"1868:661:2","statements":[{"assignments":[400],"declarations":[{"constant":false,"id":400,"mutability":"mutable","name":"sender","nameLocation":"1886:6:2","nodeType":"VariableDeclaration","scope":458,"src":"1878:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":399,"name":"address","nodeType":"ElementaryTypeName","src":"1878:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":404,"initialValue":{"arguments":[{"id":402,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":394,"src":"1905:6:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}],"id":401,"name":"getSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":355,"src":"1895:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PackedUserOperation_$1054_calldata_ptr_$returns$_t_address_$","typeString":"function (struct PackedUserOperation calldata) pure returns (address)"}},"id":403,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1895:17:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"1878:34:2"},{"assignments":[406],"declarations":[{"constant":false,"id":406,"mutability":"mutable","name":"nonce","nameLocation":"1930:5:2","nodeType":"VariableDeclaration","scope":458,"src":"1922:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":405,"name":"uint256","nodeType":"ElementaryTypeName","src":"1922:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":409,"initialValue":{"expression":{"id":407,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":394,"src":"1938:6:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1945:5:2","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":1039,"src":"1938:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1922:28:2"},{"assignments":[411],"declarations":[{"constant":false,"id":411,"mutability":"mutable","name":"hashInitCode","nameLocation":"1968:12:2","nodeType":"VariableDeclaration","scope":458,"src":"1960:20:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":410,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1960:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":416,"initialValue":{"arguments":[{"expression":{"id":413,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":394,"src":"1998:6:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":414,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2005:8:2","memberName":"initCode","nodeType":"MemberAccess","referencedDeclaration":1041,"src":"1998:15:2","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":412,"name":"calldataKeccak","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":299,"src":"1983:14:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (bytes calldata) pure returns (bytes32)"}},"id":415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1983:31:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"1960:54:2"},{"assignments":[418],"declarations":[{"constant":false,"id":418,"mutability":"mutable","name":"hashCallData","nameLocation":"2032:12:2","nodeType":"VariableDeclaration","scope":458,"src":"2024:20:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":417,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2024:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":423,"initialValue":{"arguments":[{"expression":{"id":420,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":394,"src":"2062:6:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":421,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2069:8:2","memberName":"callData","nodeType":"MemberAccess","referencedDeclaration":1043,"src":"2062:15:2","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":419,"name":"calldataKeccak","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":299,"src":"2047:14:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (bytes calldata) pure returns (bytes32)"}},"id":422,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2047:31:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2024:54:2"},{"assignments":[425],"declarations":[{"constant":false,"id":425,"mutability":"mutable","name":"accountGasLimits","nameLocation":"2096:16:2","nodeType":"VariableDeclaration","scope":458,"src":"2088:24:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":424,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2088:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":428,"initialValue":{"expression":{"id":426,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":394,"src":"2115:6:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":427,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2122:16:2","memberName":"accountGasLimits","nodeType":"MemberAccess","referencedDeclaration":1045,"src":"2115:23:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2088:50:2"},{"assignments":[430],"declarations":[{"constant":false,"id":430,"mutability":"mutable","name":"preVerificationGas","nameLocation":"2156:18:2","nodeType":"VariableDeclaration","scope":458,"src":"2148:26:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":429,"name":"uint256","nodeType":"ElementaryTypeName","src":"2148:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":433,"initialValue":{"expression":{"id":431,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":394,"src":"2177:6:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2184:18:2","memberName":"preVerificationGas","nodeType":"MemberAccess","referencedDeclaration":1047,"src":"2177:25:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2148:54:2"},{"assignments":[435],"declarations":[{"constant":false,"id":435,"mutability":"mutable","name":"gasFees","nameLocation":"2220:7:2","nodeType":"VariableDeclaration","scope":458,"src":"2212:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":434,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2212:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":438,"initialValue":{"expression":{"id":436,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":394,"src":"2230:6:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2237:7:2","memberName":"gasFees","nodeType":"MemberAccess","referencedDeclaration":1049,"src":"2230:14:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2212:32:2"},{"assignments":[440],"declarations":[{"constant":false,"id":440,"mutability":"mutable","name":"hashPaymasterAndData","nameLocation":"2262:20:2","nodeType":"VariableDeclaration","scope":458,"src":"2254:28:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":439,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2254:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":445,"initialValue":{"arguments":[{"expression":{"id":442,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":394,"src":"2300:6:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2307:16:2","memberName":"paymasterAndData","nodeType":"MemberAccess","referencedDeclaration":1051,"src":"2300:23:2","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":441,"name":"calldataKeccak","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":299,"src":"2285:14:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (bytes calldata) pure returns (bytes32)"}},"id":444,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2285:39:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2254:70:2"},{"expression":{"arguments":[{"id":448,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":400,"src":"2366:6:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":449,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":406,"src":"2374:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":450,"name":"hashInitCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":411,"src":"2393:12:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":451,"name":"hashCallData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":418,"src":"2407:12:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":452,"name":"accountGasLimits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":425,"src":"2433:16:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":453,"name":"preVerificationGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"2451:18:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":454,"name":"gasFees","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":435,"src":"2471:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":455,"name":"hashPaymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":440,"src":"2492:20:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":446,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2342:3:2","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":447,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2346:6:2","memberName":"encode","nodeType":"MemberAccess","src":"2342:10:2","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":456,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2342:180:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":398,"id":457,"nodeType":"Return","src":"2335:187:2"}]},"documentation":{"id":391,"nodeType":"StructuredDocumentation","src":"1636:119:2","text":" Pack the user operation data into bytes for hashing.\n @param userOp - The user operation data."},"id":459,"implemented":true,"kind":"function","modifiers":[],"name":"encode","nameLocation":"1769:6:2","nodeType":"FunctionDefinition","parameters":{"id":395,"nodeType":"ParameterList","parameters":[{"constant":false,"id":394,"mutability":"mutable","name":"userOp","nameLocation":"1814:6:2","nodeType":"VariableDeclaration","scope":459,"src":"1785:35:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":393,"nodeType":"UserDefinedTypeName","pathNode":{"id":392,"name":"PackedUserOperation","nameLocations":["1785:19:2"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"1785:19:2"},"referencedDeclaration":1054,"src":"1785:19:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"1775:51:2"},"returnParameters":{"id":398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":397,"mutability":"mutable","name":"ret","nameLocation":"1863:3:2","nodeType":"VariableDeclaration","scope":459,"src":"1850:16:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":396,"name":"bytes","nodeType":"ElementaryTypeName","src":"1850:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1849:18:2"},"scope":674,"src":"1760:769:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":484,"nodeType":"Block","src":"2642:76:2","statements":[{"expression":{"components":[{"arguments":[{"arguments":[{"id":472,"name":"packed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":461,"src":"2676:6:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":471,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2668:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes16_$","typeString":"type(bytes16)"},"typeName":{"id":470,"name":"bytes16","nodeType":"ElementaryTypeName","src":"2668:7:2","typeDescriptions":{}}},"id":473,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2668:15:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"}],"id":469,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2660:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":468,"name":"uint128","nodeType":"ElementaryTypeName","src":"2660:7:2","typeDescriptions":{}}},"id":474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2660:24:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[{"arguments":[{"id":479,"name":"packed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":461,"src":"2702:6:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":478,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2694:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":477,"name":"uint256","nodeType":"ElementaryTypeName","src":"2694:7:2","typeDescriptions":{}}},"id":480,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2694:15:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":476,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2686:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":475,"name":"uint128","nodeType":"ElementaryTypeName","src":"2686:7:2","typeDescriptions":{}}},"id":481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2686:24:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"id":482,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2659:52:2","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint128_$_t_uint128_$","typeString":"tuple(uint128,uint128)"}},"functionReturnParameters":467,"id":483,"nodeType":"Return","src":"2652:59:2"}]},"id":485,"implemented":true,"kind":"function","modifiers":[],"name":"unpackUints","nameLocation":"2544:11:2","nodeType":"FunctionDefinition","parameters":{"id":462,"nodeType":"ParameterList","parameters":[{"constant":false,"id":461,"mutability":"mutable","name":"packed","nameLocation":"2573:6:2","nodeType":"VariableDeclaration","scope":485,"src":"2565:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":460,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2565:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2555:30:2"},"returnParameters":{"id":467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":464,"mutability":"mutable","name":"high128","nameLocation":"2617:7:2","nodeType":"VariableDeclaration","scope":485,"src":"2609:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":463,"name":"uint256","nodeType":"ElementaryTypeName","src":"2609:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":466,"mutability":"mutable","name":"low128","nameLocation":"2634:6:2","nodeType":"VariableDeclaration","scope":485,"src":"2626:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":465,"name":"uint256","nodeType":"ElementaryTypeName","src":"2626:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2608:33:2"},"scope":674,"src":"2535:183:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":499,"nodeType":"Block","src":"2851:46:2","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":497,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":494,"name":"packed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":487,"src":"2876:6:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":493,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2868:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":492,"name":"uint256","nodeType":"ElementaryTypeName","src":"2868:7:2","typeDescriptions":{}}},"id":495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2868:15:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"313238","id":496,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2887:3:2","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"2868:22:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":491,"id":498,"nodeType":"Return","src":"2861:29:2"}]},"id":500,"implemented":true,"kind":"function","modifiers":[],"name":"unpackHigh128","nameLocation":"2789:13:2","nodeType":"FunctionDefinition","parameters":{"id":488,"nodeType":"ParameterList","parameters":[{"constant":false,"id":487,"mutability":"mutable","name":"packed","nameLocation":"2811:6:2","nodeType":"VariableDeclaration","scope":500,"src":"2803:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":486,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2803:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2802:16:2"},"returnParameters":{"id":491,"nodeType":"ParameterList","parameters":[{"constant":false,"id":490,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":500,"src":"2842:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":489,"name":"uint256","nodeType":"ElementaryTypeName","src":"2842:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2841:9:2"},"scope":674,"src":"2780:117:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":515,"nodeType":"Block","src":"3029:48:2","statements":[{"expression":{"arguments":[{"arguments":[{"id":511,"name":"packed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":502,"src":"3062:6:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":510,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3054:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":509,"name":"uint256","nodeType":"ElementaryTypeName","src":"3054:7:2","typeDescriptions":{}}},"id":512,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3054:15:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":508,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3046:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":507,"name":"uint128","nodeType":"ElementaryTypeName","src":"3046:7:2","typeDescriptions":{}}},"id":513,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3046:24:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":506,"id":514,"nodeType":"Return","src":"3039:31:2"}]},"id":516,"implemented":true,"kind":"function","modifiers":[],"name":"unpackLow128","nameLocation":"2968:12:2","nodeType":"FunctionDefinition","parameters":{"id":503,"nodeType":"ParameterList","parameters":[{"constant":false,"id":502,"mutability":"mutable","name":"packed","nameLocation":"2989:6:2","nodeType":"VariableDeclaration","scope":516,"src":"2981:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":501,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2981:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2980:16:2"},"returnParameters":{"id":506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":505,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":516,"src":"3020:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":504,"name":"uint256","nodeType":"ElementaryTypeName","src":"3020:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3019:9:2"},"scope":674,"src":"2959:118:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":529,"nodeType":"Block","src":"3192:53:2","statements":[{"expression":{"arguments":[{"expression":{"id":525,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":519,"src":"3223:6:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3230:7:2","memberName":"gasFees","nodeType":"MemberAccess","referencedDeclaration":1049,"src":"3223:14:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":524,"name":"unpackHigh128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":500,"src":"3209:13:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256)"}},"id":527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3209:29:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":523,"id":528,"nodeType":"Return","src":"3202:36:2"}]},"id":530,"implemented":true,"kind":"function","modifiers":[],"name":"unpackMaxPriorityFeePerGas","nameLocation":"3092:26:2","nodeType":"FunctionDefinition","parameters":{"id":520,"nodeType":"ParameterList","parameters":[{"constant":false,"id":519,"mutability":"mutable","name":"userOp","nameLocation":"3148:6:2","nodeType":"VariableDeclaration","scope":530,"src":"3119:35:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":518,"nodeType":"UserDefinedTypeName","pathNode":{"id":517,"name":"PackedUserOperation","nameLocations":["3119:19:2"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"3119:19:2"},"referencedDeclaration":1054,"src":"3119:19:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"3118:37:2"},"returnParameters":{"id":523,"nodeType":"ParameterList","parameters":[{"constant":false,"id":522,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":530,"src":"3183:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":521,"name":"uint256","nodeType":"ElementaryTypeName","src":"3183:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3182:9:2"},"scope":674,"src":"3083:162:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":543,"nodeType":"Block","src":"3352:52:2","statements":[{"expression":{"arguments":[{"expression":{"id":539,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":533,"src":"3382:6:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3389:7:2","memberName":"gasFees","nodeType":"MemberAccess","referencedDeclaration":1049,"src":"3382:14:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":538,"name":"unpackLow128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":516,"src":"3369:12:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256)"}},"id":541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3369:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":537,"id":542,"nodeType":"Return","src":"3362:35:2"}]},"id":544,"implemented":true,"kind":"function","modifiers":[],"name":"unpackMaxFeePerGas","nameLocation":"3260:18:2","nodeType":"FunctionDefinition","parameters":{"id":534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":533,"mutability":"mutable","name":"userOp","nameLocation":"3308:6:2","nodeType":"VariableDeclaration","scope":544,"src":"3279:35:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":532,"nodeType":"UserDefinedTypeName","pathNode":{"id":531,"name":"PackedUserOperation","nameLocations":["3279:19:2"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"3279:19:2"},"referencedDeclaration":1054,"src":"3279:19:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"3278:37:2"},"returnParameters":{"id":537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":536,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":544,"src":"3343:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":535,"name":"uint256","nodeType":"ElementaryTypeName","src":"3343:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3342:9:2"},"scope":674,"src":"3251:153:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":557,"nodeType":"Block","src":"3519:62:2","statements":[{"expression":{"arguments":[{"expression":{"id":553,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":547,"src":"3550:6:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":554,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3557:16:2","memberName":"accountGasLimits","nodeType":"MemberAccess","referencedDeclaration":1045,"src":"3550:23:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":552,"name":"unpackHigh128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":500,"src":"3536:13:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256)"}},"id":555,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3536:38:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":551,"id":556,"nodeType":"Return","src":"3529:45:2"}]},"id":558,"implemented":true,"kind":"function","modifiers":[],"name":"unpackVerificationGasLimit","nameLocation":"3419:26:2","nodeType":"FunctionDefinition","parameters":{"id":548,"nodeType":"ParameterList","parameters":[{"constant":false,"id":547,"mutability":"mutable","name":"userOp","nameLocation":"3475:6:2","nodeType":"VariableDeclaration","scope":558,"src":"3446:35:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":546,"nodeType":"UserDefinedTypeName","pathNode":{"id":545,"name":"PackedUserOperation","nameLocations":["3446:19:2"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"3446:19:2"},"referencedDeclaration":1054,"src":"3446:19:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"3445:37:2"},"returnParameters":{"id":551,"nodeType":"ParameterList","parameters":[{"constant":false,"id":550,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":558,"src":"3510:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":549,"name":"uint256","nodeType":"ElementaryTypeName","src":"3510:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3509:9:2"},"scope":674,"src":"3410:171:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":571,"nodeType":"Block","src":"3688:61:2","statements":[{"expression":{"arguments":[{"expression":{"id":567,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":561,"src":"3718:6:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":568,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3725:16:2","memberName":"accountGasLimits","nodeType":"MemberAccess","referencedDeclaration":1045,"src":"3718:23:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":566,"name":"unpackLow128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":516,"src":"3705:12:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256)"}},"id":569,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3705:37:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":565,"id":570,"nodeType":"Return","src":"3698:44:2"}]},"id":572,"implemented":true,"kind":"function","modifiers":[],"name":"unpackCallGasLimit","nameLocation":"3596:18:2","nodeType":"FunctionDefinition","parameters":{"id":562,"nodeType":"ParameterList","parameters":[{"constant":false,"id":561,"mutability":"mutable","name":"userOp","nameLocation":"3644:6:2","nodeType":"VariableDeclaration","scope":572,"src":"3615:35:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":560,"nodeType":"UserDefinedTypeName","pathNode":{"id":559,"name":"PackedUserOperation","nameLocations":["3615:19:2"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"3615:19:2"},"referencedDeclaration":1054,"src":"3615:19:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"3614:37:2"},"returnParameters":{"id":565,"nodeType":"ParameterList","parameters":[{"constant":false,"id":564,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":572,"src":"3679:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":563,"name":"uint256","nodeType":"ElementaryTypeName","src":"3679:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3678:9:2"},"scope":674,"src":"3587:162:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":592,"nodeType":"Block","src":"3873:128:2","statements":[{"expression":{"arguments":[{"arguments":[{"baseExpression":{"expression":{"id":584,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":575,"src":"3906:6:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3913:16:2","memberName":"paymasterAndData","nodeType":"MemberAccess","referencedDeclaration":1051,"src":"3906:23:2","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":587,"name":"PAYMASTER_POSTOP_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":330,"src":"3964:27:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":588,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"3906:86:2","startExpression":{"id":586,"name":"PAYMASTER_VALIDATION_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":327,"src":"3930:31:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":583,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3898:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes16_$","typeString":"type(bytes16)"},"typeName":{"id":582,"name":"bytes16","nodeType":"ElementaryTypeName","src":"3898:7:2","typeDescriptions":{}}},"id":589,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3898:95:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"}],"id":581,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3890:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":580,"name":"uint128","nodeType":"ElementaryTypeName","src":"3890:7:2","typeDescriptions":{}}},"id":590,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3890:104:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":579,"id":591,"nodeType":"Return","src":"3883:111:2"}]},"id":593,"implemented":true,"kind":"function","modifiers":[],"name":"unpackPaymasterVerificationGasLimit","nameLocation":"3764:35:2","nodeType":"FunctionDefinition","parameters":{"id":576,"nodeType":"ParameterList","parameters":[{"constant":false,"id":575,"mutability":"mutable","name":"userOp","nameLocation":"3829:6:2","nodeType":"VariableDeclaration","scope":593,"src":"3800:35:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":574,"nodeType":"UserDefinedTypeName","pathNode":{"id":573,"name":"PackedUserOperation","nameLocations":["3800:19:2"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"3800:19:2"},"referencedDeclaration":1054,"src":"3800:19:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"3799:37:2"},"returnParameters":{"id":579,"nodeType":"ParameterList","parameters":[{"constant":false,"id":578,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":593,"src":"3864:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":577,"name":"uint256","nodeType":"ElementaryTypeName","src":"3864:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3863:9:2"},"scope":674,"src":"3755:246:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":613,"nodeType":"Block","src":"4110:118:2","statements":[{"expression":{"arguments":[{"arguments":[{"baseExpression":{"expression":{"id":605,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":596,"src":"4143:6:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4150:16:2","memberName":"paymasterAndData","nodeType":"MemberAccess","referencedDeclaration":1051,"src":"4143:23:2","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":608,"name":"PAYMASTER_DATA_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":333,"src":"4197:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":609,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"4143:76:2","startExpression":{"id":607,"name":"PAYMASTER_POSTOP_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":330,"src":"4167:27:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":604,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4135:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes16_$","typeString":"type(bytes16)"},"typeName":{"id":603,"name":"bytes16","nodeType":"ElementaryTypeName","src":"4135:7:2","typeDescriptions":{}}},"id":610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4135:85:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"}],"id":602,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4127:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":601,"name":"uint128","nodeType":"ElementaryTypeName","src":"4127:7:2","typeDescriptions":{}}},"id":611,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4127:94:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":600,"id":612,"nodeType":"Return","src":"4120:101:2"}]},"id":614,"implemented":true,"kind":"function","modifiers":[],"name":"unpackPostOpGasLimit","nameLocation":"4016:20:2","nodeType":"FunctionDefinition","parameters":{"id":597,"nodeType":"ParameterList","parameters":[{"constant":false,"id":596,"mutability":"mutable","name":"userOp","nameLocation":"4066:6:2","nodeType":"VariableDeclaration","scope":614,"src":"4037:35:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":595,"nodeType":"UserDefinedTypeName","pathNode":{"id":594,"name":"PackedUserOperation","nameLocations":["4037:19:2"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"4037:19:2"},"referencedDeclaration":1054,"src":"4037:19:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"4036:37:2"},"returnParameters":{"id":600,"nodeType":"ParameterList","parameters":[{"constant":false,"id":599,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":614,"src":"4101:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":598,"name":"uint256","nodeType":"ElementaryTypeName","src":"4101:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4100:9:2"},"scope":674,"src":"4007:221:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":656,"nodeType":"Block","src":"4412:329:2","statements":[{"expression":{"components":[{"arguments":[{"arguments":[{"baseExpression":{"id":629,"name":"paymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":616,"src":"4459:16:2","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":630,"name":"PAYMASTER_VALIDATION_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":327,"src":"4478:31:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":631,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"4459:51:2","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":628,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4451:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":627,"name":"bytes20","nodeType":"ElementaryTypeName","src":"4451:7:2","typeDescriptions":{}}},"id":632,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4451:60:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"}],"id":626,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4443:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":625,"name":"address","nodeType":"ElementaryTypeName","src":"4443:7:2","typeDescriptions":{}}},"id":633,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4443:69:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"arguments":[{"baseExpression":{"id":638,"name":"paymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":616,"src":"4542:16:2","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":640,"name":"PAYMASTER_POSTOP_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":330,"src":"4593:27:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":641,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"4542:79:2","startExpression":{"id":639,"name":"PAYMASTER_VALIDATION_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":327,"src":"4559:31:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":637,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4534:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes16_$","typeString":"type(bytes16)"},"typeName":{"id":636,"name":"bytes16","nodeType":"ElementaryTypeName","src":"4534:7:2","typeDescriptions":{}}},"id":642,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4534:88:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"}],"id":635,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4526:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":634,"name":"uint128","nodeType":"ElementaryTypeName","src":"4526:7:2","typeDescriptions":{}}},"id":643,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4526:97:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[{"arguments":[{"baseExpression":{"id":648,"name":"paymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":616,"src":"4653:16:2","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":650,"name":"PAYMASTER_DATA_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":333,"src":"4700:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"4653:69:2","startExpression":{"id":649,"name":"PAYMASTER_POSTOP_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":330,"src":"4670:27:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":647,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4645:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes16_$","typeString":"type(bytes16)"},"typeName":{"id":646,"name":"bytes16","nodeType":"ElementaryTypeName","src":"4645:7:2","typeDescriptions":{}}},"id":652,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4645:78:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"}],"id":645,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4637:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":644,"name":"uint128","nodeType":"ElementaryTypeName","src":"4637:7:2","typeDescriptions":{}}},"id":653,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4637:87:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"id":654,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4429:305:2","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_uint128_$_t_uint128_$","typeString":"tuple(address,uint128,uint128)"}},"functionReturnParameters":624,"id":655,"nodeType":"Return","src":"4422:312:2"}]},"id":657,"implemented":true,"kind":"function","modifiers":[],"name":"unpackPaymasterStaticFields","nameLocation":"4243:27:2","nodeType":"FunctionDefinition","parameters":{"id":617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":616,"mutability":"mutable","name":"paymasterAndData","nameLocation":"4295:16:2","nodeType":"VariableDeclaration","scope":657,"src":"4280:31:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":615,"name":"bytes","nodeType":"ElementaryTypeName","src":"4280:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4270:47:2"},"returnParameters":{"id":624,"nodeType":"ParameterList","parameters":[{"constant":false,"id":619,"mutability":"mutable","name":"paymaster","nameLocation":"4349:9:2","nodeType":"VariableDeclaration","scope":657,"src":"4341:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":618,"name":"address","nodeType":"ElementaryTypeName","src":"4341:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":621,"mutability":"mutable","name":"validationGasLimit","nameLocation":"4368:18:2","nodeType":"VariableDeclaration","scope":657,"src":"4360:26:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":620,"name":"uint256","nodeType":"ElementaryTypeName","src":"4360:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":623,"mutability":"mutable","name":"postOpGasLimit","nameLocation":"4396:14:2","nodeType":"VariableDeclaration","scope":657,"src":"4388:22:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":622,"name":"uint256","nodeType":"ElementaryTypeName","src":"4388:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4340:71:2"},"scope":674,"src":"4234:507:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":672,"nodeType":"Block","src":"4945:49:2","statements":[{"expression":{"arguments":[{"arguments":[{"id":668,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":661,"src":"4979:6:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}],"id":667,"name":"encode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":459,"src":"4972:6:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PackedUserOperation_$1054_calldata_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (struct PackedUserOperation calldata) pure returns (bytes memory)"}},"id":669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4972:14:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":666,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4962:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":670,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4962:25:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":665,"id":671,"nodeType":"Return","src":"4955:32:2"}]},"documentation":{"id":658,"nodeType":"StructuredDocumentation","src":"4747:96:2","text":" Hash the user operation data.\n @param userOp - The user operation data."},"id":673,"implemented":true,"kind":"function","modifiers":[],"name":"hash","nameLocation":"4857:4:2","nodeType":"FunctionDefinition","parameters":{"id":662,"nodeType":"ParameterList","parameters":[{"constant":false,"id":661,"mutability":"mutable","name":"userOp","nameLocation":"4900:6:2","nodeType":"VariableDeclaration","scope":673,"src":"4871:35:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":660,"nodeType":"UserDefinedTypeName","pathNode":{"id":659,"name":"PackedUserOperation","nameLocations":["4871:19:2"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"4871:19:2"},"referencedDeclaration":1054,"src":"4871:19:2","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"4861:51:2"},"returnParameters":{"id":665,"nodeType":"ParameterList","parameters":[{"constant":false,"id":664,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":673,"src":"4936:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":663,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4936:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4935:9:2"},"scope":674,"src":"4848:146:2","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":675,"src":"282:4714:2","usedErrors":[],"usedEvents":[]}],"src":"36:4961:2"},"id":2},"@account-abstraction/contracts/interfaces/IAccount.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/IAccount.sol","exportedSymbols":{"IAccount":[691],"PackedUserOperation":[1054]},"id":692,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":676,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"36:24:3"},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"./PackedUserOperation.sol","id":677,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":692,"sourceUnit":1055,"src":"62:35:3","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IAccount","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":691,"linearizedBaseContracts":[691],"name":"IAccount","nameLocation":"109:8:3","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":678,"nodeType":"StructuredDocumentation","src":"124:2290:3","text":" Validate user's signature and nonce\n the entryPoint will make the call to the recipient only if this validation call returns successfully.\n signature failure should be reported by returning SIG_VALIDATION_FAILED (1).\n This allows making a \"simulation call\" without a valid signature\n Other failures (e.g. nonce mismatch, or invalid signature format) should still revert to signal failure.\n @dev Must validate caller is the entryPoint.\n      Must validate the signature and nonce\n @param userOp              - The operation that is about to be executed.\n @param userOpHash          - Hash of the user's request data. can be used as the basis for signature.\n @param missingAccountFunds - Missing funds on the account's deposit in the entrypoint.\n                              This is the minimum amount to transfer to the sender(entryPoint) to be\n                              able to make the call. The excess is left as a deposit in the entrypoint\n                              for future calls. Can be withdrawn anytime using \"entryPoint.withdrawTo()\".\n                              In case there is a paymaster in the request (or the current deposit is high\n                              enough), this value will be zero.\n @return validationData       - Packaged ValidationData structure. use `_packValidationData` and\n                              `_unpackValidationData` to encode and decode.\n                              <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,\n                                 otherwise, an address of an \"authorizer\" contract.\n                              <6-byte> validUntil - Last timestamp this operation is valid. 0 for \"indefinite\"\n                              <6-byte> validAfter - First timestamp this operation is valid\n                                                    If an account doesn't use time-range, it is enough to\n                                                    return SIG_VALIDATION_FAILED value (1) for signature failure.\n                              Note that the validation code cannot use block.timestamp (or block.number) directly."},"functionSelector":"19822f7c","id":690,"implemented":false,"kind":"function","modifiers":[],"name":"validateUserOp","nameLocation":"2428:14:3","nodeType":"FunctionDefinition","parameters":{"id":686,"nodeType":"ParameterList","parameters":[{"constant":false,"id":681,"mutability":"mutable","name":"userOp","nameLocation":"2481:6:3","nodeType":"VariableDeclaration","scope":690,"src":"2452:35:3","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":680,"nodeType":"UserDefinedTypeName","pathNode":{"id":679,"name":"PackedUserOperation","nameLocations":["2452:19:3"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"2452:19:3"},"referencedDeclaration":1054,"src":"2452:19:3","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":683,"mutability":"mutable","name":"userOpHash","nameLocation":"2505:10:3","nodeType":"VariableDeclaration","scope":690,"src":"2497:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":682,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2497:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":685,"mutability":"mutable","name":"missingAccountFunds","nameLocation":"2533:19:3","nodeType":"VariableDeclaration","scope":690,"src":"2525:27:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":684,"name":"uint256","nodeType":"ElementaryTypeName","src":"2525:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2442:116:3"},"returnParameters":{"id":689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":688,"mutability":"mutable","name":"validationData","nameLocation":"2585:14:3","nodeType":"VariableDeclaration","scope":690,"src":"2577:22:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":687,"name":"uint256","nodeType":"ElementaryTypeName","src":"2577:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2576:24:3"},"scope":691,"src":"2419:182:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":692,"src":"99:2504:3","usedErrors":[],"usedEvents":[]}],"src":"36:2568:3"},"id":3},"@account-abstraction/contracts/interfaces/IAggregator.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/IAggregator.sol","exportedSymbols":{"IAggregator":[725],"PackedUserOperation":[1054]},"id":726,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":693,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"36:24:4"},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"./PackedUserOperation.sol","id":694,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":726,"sourceUnit":1055,"src":"62:35:4","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IAggregator","contractDependencies":[],"contractKind":"interface","documentation":{"id":695,"nodeType":"StructuredDocumentation","src":"99:43:4","text":" Aggregated Signatures validator."},"fullyImplemented":false,"id":725,"linearizedBaseContracts":[725],"name":"IAggregator","nameLocation":"153:11:4","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":696,"nodeType":"StructuredDocumentation","src":"171:269:4","text":" Validate aggregated signature.\n Revert if the aggregated signature does not match the given list of operations.\n @param userOps   - Array of UserOperations to validate the signature for.\n @param signature - The aggregated signature."},"functionSelector":"2dd81133","id":705,"implemented":false,"kind":"function","modifiers":[],"name":"validateSignatures","nameLocation":"454:18:4","nodeType":"FunctionDefinition","parameters":{"id":703,"nodeType":"ParameterList","parameters":[{"constant":false,"id":700,"mutability":"mutable","name":"userOps","nameLocation":"513:7:4","nodeType":"VariableDeclaration","scope":705,"src":"482:38:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$1054_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":698,"nodeType":"UserDefinedTypeName","pathNode":{"id":697,"name":"PackedUserOperation","nameLocations":["482:19:4"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"482:19:4"},"referencedDeclaration":1054,"src":"482:19:4","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"id":699,"nodeType":"ArrayTypeName","src":"482:21:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$1054_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"},{"constant":false,"id":702,"mutability":"mutable","name":"signature","nameLocation":"545:9:4","nodeType":"VariableDeclaration","scope":705,"src":"530:24:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":701,"name":"bytes","nodeType":"ElementaryTypeName","src":"530:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"472:88:4"},"returnParameters":{"id":704,"nodeType":"ParameterList","parameters":[],"src":"574:0:4"},"scope":725,"src":"445:130:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":706,"nodeType":"StructuredDocumentation","src":"581:610:4","text":" Validate signature of a single userOp.\n This method should be called by bundler after EntryPointSimulation.simulateValidation() returns\n the aggregator this account uses.\n First it validates the signature over the userOp. Then it returns data to be used when creating the handleOps.\n @param userOp        - The userOperation received from the user.\n @return sigForUserOp - The value to put into the signature field of the userOp when calling handleOps.\n                        (usually empty, unless account and aggregator support some kind of \"multisig\"."},"functionSelector":"062a422b","id":714,"implemented":false,"kind":"function","modifiers":[],"name":"validateUserOpSignature","nameLocation":"1205:23:4","nodeType":"FunctionDefinition","parameters":{"id":710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":709,"mutability":"mutable","name":"userOp","nameLocation":"1267:6:4","nodeType":"VariableDeclaration","scope":714,"src":"1238:35:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":708,"nodeType":"UserDefinedTypeName","pathNode":{"id":707,"name":"PackedUserOperation","nameLocations":["1238:19:4"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"1238:19:4"},"referencedDeclaration":1054,"src":"1238:19:4","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"1228:51:4"},"returnParameters":{"id":713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":712,"mutability":"mutable","name":"sigForUserOp","nameLocation":"1316:12:4","nodeType":"VariableDeclaration","scope":714,"src":"1303:25:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":711,"name":"bytes","nodeType":"ElementaryTypeName","src":"1303:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1302:27:4"},"scope":725,"src":"1196:134:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":715,"nodeType":"StructuredDocumentation","src":"1336:387:4","text":" Aggregate multiple signatures into a single value.\n This method is called off-chain to calculate the signature to pass with handleOps()\n bundler MAY use optimized custom code perform this aggregation.\n @param userOps              - Array of UserOperations to collect the signatures from.\n @return aggregatedSignature - The aggregated signature."},"functionSelector":"ae574a43","id":724,"implemented":false,"kind":"function","modifiers":[],"name":"aggregateSignatures","nameLocation":"1737:19:4","nodeType":"FunctionDefinition","parameters":{"id":720,"nodeType":"ParameterList","parameters":[{"constant":false,"id":719,"mutability":"mutable","name":"userOps","nameLocation":"1797:7:4","nodeType":"VariableDeclaration","scope":724,"src":"1766:38:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$1054_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":717,"nodeType":"UserDefinedTypeName","pathNode":{"id":716,"name":"PackedUserOperation","nameLocations":["1766:19:4"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"1766:19:4"},"referencedDeclaration":1054,"src":"1766:19:4","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"id":718,"nodeType":"ArrayTypeName","src":"1766:21:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$1054_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"}],"src":"1756:54:4"},"returnParameters":{"id":723,"nodeType":"ParameterList","parameters":[{"constant":false,"id":722,"mutability":"mutable","name":"aggregatedSignature","nameLocation":"1847:19:4","nodeType":"VariableDeclaration","scope":724,"src":"1834:32:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":721,"name":"bytes","nodeType":"ElementaryTypeName","src":"1834:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1833:34:4"},"scope":725,"src":"1728:140:4","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":726,"src":"143:1727:4","usedErrors":[],"usedEvents":[]}],"src":"36:1835:4"},"id":4},"@account-abstraction/contracts/interfaces/IEntryPoint.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/IEntryPoint.sol","exportedSymbols":{"IAggregator":[725],"IEntryPoint":[909],"INonceManager":[928],"IStakeManager":[1032],"PackedUserOperation":[1054]},"id":910,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":727,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"163:24:5"},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"./PackedUserOperation.sol","id":728,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":910,"sourceUnit":1055,"src":"311:35:5","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IStakeManager.sol","file":"./IStakeManager.sol","id":729,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":910,"sourceUnit":1033,"src":"347:29:5","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IAggregator.sol","file":"./IAggregator.sol","id":730,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":910,"sourceUnit":726,"src":"377:27:5","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/INonceManager.sol","file":"./INonceManager.sol","id":731,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":910,"sourceUnit":929,"src":"405:29:5","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":732,"name":"IStakeManager","nameLocations":["461:13:5"],"nodeType":"IdentifierPath","referencedDeclaration":1032,"src":"461:13:5"},"id":733,"nodeType":"InheritanceSpecifier","src":"461:13:5"},{"baseName":{"id":734,"name":"INonceManager","nameLocations":["476:13:5"],"nodeType":"IdentifierPath","referencedDeclaration":928,"src":"476:13:5"},"id":735,"nodeType":"InheritanceSpecifier","src":"476:13:5"}],"canonicalName":"IEntryPoint","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":909,"linearizedBaseContracts":[909,928,1032],"name":"IEntryPoint","nameLocation":"446:11:5","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"eventSelector":"49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f","id":751,"name":"UserOperationEvent","nameLocation":"1255:18:5","nodeType":"EventDefinition","parameters":{"id":750,"nodeType":"ParameterList","parameters":[{"constant":false,"id":737,"indexed":true,"mutability":"mutable","name":"userOpHash","nameLocation":"1299:10:5","nodeType":"VariableDeclaration","scope":751,"src":"1283:26:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":736,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1283:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":739,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1335:6:5","nodeType":"VariableDeclaration","scope":751,"src":"1319:22:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":738,"name":"address","nodeType":"ElementaryTypeName","src":"1319:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":741,"indexed":true,"mutability":"mutable","name":"paymaster","nameLocation":"1367:9:5","nodeType":"VariableDeclaration","scope":751,"src":"1351:25:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":740,"name":"address","nodeType":"ElementaryTypeName","src":"1351:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":743,"indexed":false,"mutability":"mutable","name":"nonce","nameLocation":"1394:5:5","nodeType":"VariableDeclaration","scope":751,"src":"1386:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":742,"name":"uint256","nodeType":"ElementaryTypeName","src":"1386:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":745,"indexed":false,"mutability":"mutable","name":"success","nameLocation":"1414:7:5","nodeType":"VariableDeclaration","scope":751,"src":"1409:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":744,"name":"bool","nodeType":"ElementaryTypeName","src":"1409:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":747,"indexed":false,"mutability":"mutable","name":"actualGasCost","nameLocation":"1439:13:5","nodeType":"VariableDeclaration","scope":751,"src":"1431:21:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":746,"name":"uint256","nodeType":"ElementaryTypeName","src":"1431:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":749,"indexed":false,"mutability":"mutable","name":"actualGasUsed","nameLocation":"1470:13:5","nodeType":"VariableDeclaration","scope":751,"src":"1462:21:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":748,"name":"uint256","nodeType":"ElementaryTypeName","src":"1462:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1273:216:5"},"src":"1249:241:5"},{"anonymous":false,"documentation":{"id":752,"nodeType":"StructuredDocumentation","src":"1496:349:5","text":" Account \"sender\" was deployed.\n @param userOpHash - The userOp that deployed this account. UserOperationEvent will follow.\n @param sender     - The account that is deployed\n @param factory    - The factory used to deploy this account (in the initCode)\n @param paymaster  - The paymaster used by this UserOp"},"eventSelector":"d51a9c61267aa6196961883ecf5ff2da6619c37dac0fa92122513fb32c032d2d","id":762,"name":"AccountDeployed","nameLocation":"1856:15:5","nodeType":"EventDefinition","parameters":{"id":761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":754,"indexed":true,"mutability":"mutable","name":"userOpHash","nameLocation":"1897:10:5","nodeType":"VariableDeclaration","scope":762,"src":"1881:26:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":753,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1881:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":756,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1933:6:5","nodeType":"VariableDeclaration","scope":762,"src":"1917:22:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":755,"name":"address","nodeType":"ElementaryTypeName","src":"1917:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":758,"indexed":false,"mutability":"mutable","name":"factory","nameLocation":"1957:7:5","nodeType":"VariableDeclaration","scope":762,"src":"1949:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":757,"name":"address","nodeType":"ElementaryTypeName","src":"1949:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":760,"indexed":false,"mutability":"mutable","name":"paymaster","nameLocation":"1982:9:5","nodeType":"VariableDeclaration","scope":762,"src":"1974:17:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":759,"name":"address","nodeType":"ElementaryTypeName","src":"1974:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1871:126:5"},"src":"1850:148:5"},{"anonymous":false,"documentation":{"id":763,"nodeType":"StructuredDocumentation","src":"2004:361:5","text":" An event emitted if the UserOperation \"callData\" reverted with non-zero length.\n @param userOpHash   - The request unique identifier.\n @param sender       - The sender of this request.\n @param nonce        - The nonce used in the request.\n @param revertReason - The return bytes from the (reverted) call to \"callData\"."},"eventSelector":"1c4fada7374c0a9ee8841fc38afe82932dc0f8e69012e927f061a8bae611a201","id":773,"name":"UserOperationRevertReason","nameLocation":"2376:25:5","nodeType":"EventDefinition","parameters":{"id":772,"nodeType":"ParameterList","parameters":[{"constant":false,"id":765,"indexed":true,"mutability":"mutable","name":"userOpHash","nameLocation":"2427:10:5","nodeType":"VariableDeclaration","scope":773,"src":"2411:26:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":764,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2411:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":767,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"2463:6:5","nodeType":"VariableDeclaration","scope":773,"src":"2447:22:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":766,"name":"address","nodeType":"ElementaryTypeName","src":"2447:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":769,"indexed":false,"mutability":"mutable","name":"nonce","nameLocation":"2487:5:5","nodeType":"VariableDeclaration","scope":773,"src":"2479:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":768,"name":"uint256","nodeType":"ElementaryTypeName","src":"2479:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":771,"indexed":false,"mutability":"mutable","name":"revertReason","nameLocation":"2508:12:5","nodeType":"VariableDeclaration","scope":773,"src":"2502:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":770,"name":"bytes","nodeType":"ElementaryTypeName","src":"2502:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2401:125:5"},"src":"2370:157:5"},{"anonymous":false,"documentation":{"id":774,"nodeType":"StructuredDocumentation","src":"2533:376:5","text":" An event emitted if the UserOperation Paymaster's \"postOp\" call reverted with non-zero length.\n @param userOpHash   - The request unique identifier.\n @param sender       - The sender of this request.\n @param nonce        - The nonce used in the request.\n @param revertReason - The return bytes from the (reverted) call to \"callData\"."},"eventSelector":"f62676f440ff169a3a9afdbf812e89e7f95975ee8e5c31214ffdef631c5f4792","id":784,"name":"PostOpRevertReason","nameLocation":"2920:18:5","nodeType":"EventDefinition","parameters":{"id":783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":776,"indexed":true,"mutability":"mutable","name":"userOpHash","nameLocation":"2964:10:5","nodeType":"VariableDeclaration","scope":784,"src":"2948:26:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":775,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2948:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":778,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"3000:6:5","nodeType":"VariableDeclaration","scope":784,"src":"2984:22:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":777,"name":"address","nodeType":"ElementaryTypeName","src":"2984:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":780,"indexed":false,"mutability":"mutable","name":"nonce","nameLocation":"3024:5:5","nodeType":"VariableDeclaration","scope":784,"src":"3016:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":779,"name":"uint256","nodeType":"ElementaryTypeName","src":"3016:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":782,"indexed":false,"mutability":"mutable","name":"revertReason","nameLocation":"3045:12:5","nodeType":"VariableDeclaration","scope":784,"src":"3039:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":781,"name":"bytes","nodeType":"ElementaryTypeName","src":"3039:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2938:125:5"},"src":"2914:150:5"},{"anonymous":false,"documentation":{"id":785,"nodeType":"StructuredDocumentation","src":"3070:284:5","text":" UserOp consumed more than prefund. The UserOperation is reverted, and no refund is made.\n @param userOpHash   - The request unique identifier.\n @param sender       - The sender of this request.\n @param nonce        - The nonce used in the request."},"eventSelector":"67b4fa9642f42120bf031f3051d1824b0fe25627945b27b8a6a65d5761d5482e","id":793,"name":"UserOperationPrefundTooLow","nameLocation":"3365:26:5","nodeType":"EventDefinition","parameters":{"id":792,"nodeType":"ParameterList","parameters":[{"constant":false,"id":787,"indexed":true,"mutability":"mutable","name":"userOpHash","nameLocation":"3417:10:5","nodeType":"VariableDeclaration","scope":793,"src":"3401:26:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":786,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3401:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":789,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"3453:6:5","nodeType":"VariableDeclaration","scope":793,"src":"3437:22:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":788,"name":"address","nodeType":"ElementaryTypeName","src":"3437:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":791,"indexed":false,"mutability":"mutable","name":"nonce","nameLocation":"3477:5:5","nodeType":"VariableDeclaration","scope":793,"src":"3469:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":790,"name":"uint256","nodeType":"ElementaryTypeName","src":"3469:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3391:97:5"},"src":"3359:130:5"},{"anonymous":false,"documentation":{"id":794,"nodeType":"StructuredDocumentation","src":"3495:158:5","text":" An event emitted by handleOps(), before starting the execution loop.\n Any event emitted before this event, is part of the validation."},"eventSelector":"bb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972","id":796,"name":"BeforeExecution","nameLocation":"3664:15:5","nodeType":"EventDefinition","parameters":{"id":795,"nodeType":"ParameterList","parameters":[],"src":"3679:2:5"},"src":"3658:24:5"},{"anonymous":false,"documentation":{"id":797,"nodeType":"StructuredDocumentation","src":"3688:187:5","text":" Signature aggregator used by the following UserOperationEvents within this bundle.\n @param aggregator - The aggregator used for the following UserOperationEvents."},"eventSelector":"575ff3acadd5ab348fe1855e217e0f3678f8d767d7494c9f9fefbee2e17cca4d","id":801,"name":"SignatureAggregatorChanged","nameLocation":"3886:26:5","nodeType":"EventDefinition","parameters":{"id":800,"nodeType":"ParameterList","parameters":[{"constant":false,"id":799,"indexed":true,"mutability":"mutable","name":"aggregator","nameLocation":"3929:10:5","nodeType":"VariableDeclaration","scope":801,"src":"3913:26:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":798,"name":"address","nodeType":"ElementaryTypeName","src":"3913:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3912:28:5"},"src":"3880:61:5"},{"documentation":{"id":802,"nodeType":"StructuredDocumentation","src":"3947:776:5","text":" A custom revert error of handleOps, to identify the offending op.\n Should be caught in off-chain handleOps simulation and not happen on-chain.\n Useful for mitigating DoS attempts against batchers or for troubleshooting of factory/account/paymaster reverts.\n NOTE: If simulateValidation passes successfully, there should be no reason for handleOps to fail on it.\n @param opIndex - Index into the array of ops to the failed one (in simulateValidation, this is always zero).\n @param reason  - Revert reason. The string starts with a unique code \"AAmn\",\n                  where \"m\" is \"1\" for factory, \"2\" for account and \"3\" for paymaster issues,\n                  so a failure can be attributed to the correct entity."},"errorSelector":"220266b6","id":808,"name":"FailedOp","nameLocation":"4734:8:5","nodeType":"ErrorDefinition","parameters":{"id":807,"nodeType":"ParameterList","parameters":[{"constant":false,"id":804,"mutability":"mutable","name":"opIndex","nameLocation":"4751:7:5","nodeType":"VariableDeclaration","scope":808,"src":"4743:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":803,"name":"uint256","nodeType":"ElementaryTypeName","src":"4743:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":806,"mutability":"mutable","name":"reason","nameLocation":"4767:6:5","nodeType":"VariableDeclaration","scope":808,"src":"4760:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":805,"name":"string","nodeType":"ElementaryTypeName","src":"4760:6:5","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4742:32:5"},"src":"4728:47:5"},{"documentation":{"id":809,"nodeType":"StructuredDocumentation","src":"4781:405:5","text":" A custom revert error of handleOps, to report a revert by account or paymaster.\n @param opIndex - Index into the array of ops to the failed one (in simulateValidation, this is always zero).\n @param reason  - Revert reason. see FailedOp(uint256,string), above\n @param inner   - data from inner cought revert reason\n @dev note that inner is truncated to 2048 bytes"},"errorSelector":"65c8fd4d","id":817,"name":"FailedOpWithRevert","nameLocation":"5197:18:5","nodeType":"ErrorDefinition","parameters":{"id":816,"nodeType":"ParameterList","parameters":[{"constant":false,"id":811,"mutability":"mutable","name":"opIndex","nameLocation":"5224:7:5","nodeType":"VariableDeclaration","scope":817,"src":"5216:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":810,"name":"uint256","nodeType":"ElementaryTypeName","src":"5216:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":813,"mutability":"mutable","name":"reason","nameLocation":"5240:6:5","nodeType":"VariableDeclaration","scope":817,"src":"5233:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":812,"name":"string","nodeType":"ElementaryTypeName","src":"5233:6:5","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":815,"mutability":"mutable","name":"inner","nameLocation":"5254:5:5","nodeType":"VariableDeclaration","scope":817,"src":"5248:11:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":814,"name":"bytes","nodeType":"ElementaryTypeName","src":"5248:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5215:45:5"},"src":"5191:70:5"},{"errorSelector":"ad7954bc","id":821,"name":"PostOpReverted","nameLocation":"5273:14:5","nodeType":"ErrorDefinition","parameters":{"id":820,"nodeType":"ParameterList","parameters":[{"constant":false,"id":819,"mutability":"mutable","name":"returnData","nameLocation":"5294:10:5","nodeType":"VariableDeclaration","scope":821,"src":"5288:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":818,"name":"bytes","nodeType":"ElementaryTypeName","src":"5288:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5287:18:5"},"src":"5267:39:5"},{"documentation":{"id":822,"nodeType":"StructuredDocumentation","src":"5312:190:5","text":" Error case when a signature aggregator fails to verify the aggregated signature it had created.\n @param aggregator The aggregator that failed to verify the signature"},"errorSelector":"86a9f750","id":826,"name":"SignatureValidationFailed","nameLocation":"5513:25:5","nodeType":"ErrorDefinition","parameters":{"id":825,"nodeType":"ParameterList","parameters":[{"constant":false,"id":824,"mutability":"mutable","name":"aggregator","nameLocation":"5547:10:5","nodeType":"VariableDeclaration","scope":826,"src":"5539:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":823,"name":"address","nodeType":"ElementaryTypeName","src":"5539:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5538:20:5"},"src":"5507:52:5"},{"errorSelector":"6ca7b806","id":830,"name":"SenderAddressResult","nameLocation":"5612:19:5","nodeType":"ErrorDefinition","parameters":{"id":829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":828,"mutability":"mutable","name":"sender","nameLocation":"5640:6:5","nodeType":"VariableDeclaration","scope":830,"src":"5632:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":827,"name":"address","nodeType":"ElementaryTypeName","src":"5632:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5631:16:5"},"src":"5606:42:5"},{"canonicalName":"IEntryPoint.UserOpsPerAggregator","id":840,"members":[{"constant":false,"id":834,"mutability":"mutable","name":"userOps","nameLocation":"5754:7:5","nodeType":"VariableDeclaration","scope":840,"src":"5732:29:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$1054_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":832,"nodeType":"UserDefinedTypeName","pathNode":{"id":831,"name":"PackedUserOperation","nameLocations":["5732:19:5"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"5732:19:5"},"referencedDeclaration":1054,"src":"5732:19:5","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"id":833,"nodeType":"ArrayTypeName","src":"5732:21:5","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$1054_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"},{"constant":false,"id":837,"mutability":"mutable","name":"aggregator","nameLocation":"5813:10:5","nodeType":"VariableDeclaration","scope":840,"src":"5801:22:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$725","typeString":"contract IAggregator"},"typeName":{"id":836,"nodeType":"UserDefinedTypeName","pathNode":{"id":835,"name":"IAggregator","nameLocations":["5801:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":725,"src":"5801:11:5"},"referencedDeclaration":725,"src":"5801:11:5","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$725","typeString":"contract IAggregator"}},"visibility":"internal"},{"constant":false,"id":839,"mutability":"mutable","name":"signature","nameLocation":"5871:9:5","nodeType":"VariableDeclaration","scope":840,"src":"5865:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":838,"name":"bytes","nodeType":"ElementaryTypeName","src":"5865:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"UserOpsPerAggregator","nameLocation":"5701:20:5","nodeType":"StructDefinition","scope":909,"src":"5694:193:5","visibility":"public"},{"documentation":{"id":841,"nodeType":"StructuredDocumentation","src":"5893:383:5","text":" Execute a batch of UserOperations.\n No signature aggregator is used.\n If any account requires an aggregator (that is, it returned an aggregator when\n performing simulateValidation), then handleAggregatedOps() must be used instead.\n @param ops         - The operations to execute.\n @param beneficiary - The address to receive the fees."},"functionSelector":"765e827f","id":850,"implemented":false,"kind":"function","modifiers":[],"name":"handleOps","nameLocation":"6290:9:5","nodeType":"FunctionDefinition","parameters":{"id":848,"nodeType":"ParameterList","parameters":[{"constant":false,"id":845,"mutability":"mutable","name":"ops","nameLocation":"6340:3:5","nodeType":"VariableDeclaration","scope":850,"src":"6309:34:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$1054_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":843,"nodeType":"UserDefinedTypeName","pathNode":{"id":842,"name":"PackedUserOperation","nameLocations":["6309:19:5"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"6309:19:5"},"referencedDeclaration":1054,"src":"6309:19:5","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"id":844,"nodeType":"ArrayTypeName","src":"6309:21:5","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$1054_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"},{"constant":false,"id":847,"mutability":"mutable","name":"beneficiary","nameLocation":"6369:11:5","nodeType":"VariableDeclaration","scope":850,"src":"6353:27:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":846,"name":"address","nodeType":"ElementaryTypeName","src":"6353:15:5","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"}],"src":"6299:87:5"},"returnParameters":{"id":849,"nodeType":"ParameterList","parameters":[],"src":"6395:0:5"},"scope":909,"src":"6281:115:5","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":851,"nodeType":"StructuredDocumentation","src":"6402:260:5","text":" Execute a batch of UserOperation with Aggregators\n @param opsPerAggregator - The operations to execute, grouped by aggregator (or address(0) for no-aggregator accounts).\n @param beneficiary      - The address to receive the fees."},"functionSelector":"dbed18e0","id":860,"implemented":false,"kind":"function","modifiers":[],"name":"handleAggregatedOps","nameLocation":"6676:19:5","nodeType":"FunctionDefinition","parameters":{"id":858,"nodeType":"ParameterList","parameters":[{"constant":false,"id":855,"mutability":"mutable","name":"opsPerAggregator","nameLocation":"6737:16:5","nodeType":"VariableDeclaration","scope":860,"src":"6705:48:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$840_calldata_ptr_$dyn_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator[]"},"typeName":{"baseType":{"id":853,"nodeType":"UserDefinedTypeName","pathNode":{"id":852,"name":"UserOpsPerAggregator","nameLocations":["6705:20:5"],"nodeType":"IdentifierPath","referencedDeclaration":840,"src":"6705:20:5"},"referencedDeclaration":840,"src":"6705:20:5","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$840_storage_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator"}},"id":854,"nodeType":"ArrayTypeName","src":"6705:22:5","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$840_storage_$dyn_storage_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator[]"}},"visibility":"internal"},{"constant":false,"id":857,"mutability":"mutable","name":"beneficiary","nameLocation":"6779:11:5","nodeType":"VariableDeclaration","scope":860,"src":"6763:27:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":856,"name":"address","nodeType":"ElementaryTypeName","src":"6763:15:5","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"}],"src":"6695:101:5"},"returnParameters":{"id":859,"nodeType":"ParameterList","parameters":[],"src":"6805:0:5"},"scope":909,"src":"6667:139:5","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":861,"nodeType":"StructuredDocumentation","src":"6812:322:5","text":" Generate a request Id - unique identifier for this request.\n The request ID is a hash over the content of the userOp (except the signature), the entrypoint and the chainid.\n @param userOp - The user operation to generate the request ID for.\n @return hash the hash of this UserOperation"},"functionSelector":"22cdde4c","id":869,"implemented":false,"kind":"function","modifiers":[],"name":"getUserOpHash","nameLocation":"7148:13:5","nodeType":"FunctionDefinition","parameters":{"id":865,"nodeType":"ParameterList","parameters":[{"constant":false,"id":864,"mutability":"mutable","name":"userOp","nameLocation":"7200:6:5","nodeType":"VariableDeclaration","scope":869,"src":"7171:35:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":863,"nodeType":"UserDefinedTypeName","pathNode":{"id":862,"name":"PackedUserOperation","nameLocations":["7171:19:5"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"7171:19:5"},"referencedDeclaration":1054,"src":"7171:19:5","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"7161:51:5"},"returnParameters":{"id":868,"nodeType":"ParameterList","parameters":[{"constant":false,"id":867,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":869,"src":"7236:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":866,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7236:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7235:9:5"},"scope":909,"src":"7139:106:5","stateMutability":"view","virtual":false,"visibility":"external"},{"canonicalName":"IEntryPoint.ReturnInfo","documentation":{"id":870,"nodeType":"StructuredDocumentation","src":"7251:474:5","text":" Gas and return values during simulation.\n @param preOpGas         - The gas used for validation (including preValidationGas)\n @param prefund          - The required prefund for this operation\n @param accountValidationData   - returned validationData from account.\n @param paymasterValidationData - return validationData from paymaster.\n @param paymasterContext - Returned by validatePaymasterUserOp (to be passed into postOp)"},"id":881,"members":[{"constant":false,"id":872,"mutability":"mutable","name":"preOpGas","nameLocation":"7766:8:5","nodeType":"VariableDeclaration","scope":881,"src":"7758:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":871,"name":"uint256","nodeType":"ElementaryTypeName","src":"7758:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":874,"mutability":"mutable","name":"prefund","nameLocation":"7792:7:5","nodeType":"VariableDeclaration","scope":881,"src":"7784:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":873,"name":"uint256","nodeType":"ElementaryTypeName","src":"7784:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":876,"mutability":"mutable","name":"accountValidationData","nameLocation":"7817:21:5","nodeType":"VariableDeclaration","scope":881,"src":"7809:29:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":875,"name":"uint256","nodeType":"ElementaryTypeName","src":"7809:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":878,"mutability":"mutable","name":"paymasterValidationData","nameLocation":"7856:23:5","nodeType":"VariableDeclaration","scope":881,"src":"7848:31:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":877,"name":"uint256","nodeType":"ElementaryTypeName","src":"7848:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":880,"mutability":"mutable","name":"paymasterContext","nameLocation":"7895:16:5","nodeType":"VariableDeclaration","scope":881,"src":"7889:22:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":879,"name":"bytes","nodeType":"ElementaryTypeName","src":"7889:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"ReturnInfo","nameLocation":"7737:10:5","nodeType":"StructDefinition","scope":909,"src":"7730:188:5","visibility":"public"},{"canonicalName":"IEntryPoint.AggregatorStakeInfo","documentation":{"id":882,"nodeType":"StructuredDocumentation","src":"7924:124:5","text":" Returned aggregated signature info:\n The aggregator returned by the account, and its current stake."},"id":888,"members":[{"constant":false,"id":884,"mutability":"mutable","name":"aggregator","nameLocation":"8098:10:5","nodeType":"VariableDeclaration","scope":888,"src":"8090:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":883,"name":"address","nodeType":"ElementaryTypeName","src":"8090:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":887,"mutability":"mutable","name":"stakeInfo","nameLocation":"8128:9:5","nodeType":"VariableDeclaration","scope":888,"src":"8118:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_StakeInfo_$984_storage_ptr","typeString":"struct IStakeManager.StakeInfo"},"typeName":{"id":886,"nodeType":"UserDefinedTypeName","pathNode":{"id":885,"name":"StakeInfo","nameLocations":["8118:9:5"],"nodeType":"IdentifierPath","referencedDeclaration":984,"src":"8118:9:5"},"referencedDeclaration":984,"src":"8118:9:5","typeDescriptions":{"typeIdentifier":"t_struct$_StakeInfo_$984_storage_ptr","typeString":"struct IStakeManager.StakeInfo"}},"visibility":"internal"}],"name":"AggregatorStakeInfo","nameLocation":"8060:19:5","nodeType":"StructDefinition","scope":909,"src":"8053:91:5","visibility":"public"},{"documentation":{"id":889,"nodeType":"StructuredDocumentation","src":"8150:338:5","text":" Get counterfactual sender address.\n Calculate the sender contract address that will be generated by the initCode and salt in the UserOperation.\n This method always revert, and returns the address in SenderAddressResult error\n @param initCode - The constructor code to be passed into the UserOperation."},"functionSelector":"9b249f69","id":894,"implemented":false,"kind":"function","modifiers":[],"name":"getSenderAddress","nameLocation":"8502:16:5","nodeType":"FunctionDefinition","parameters":{"id":892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":891,"mutability":"mutable","name":"initCode","nameLocation":"8532:8:5","nodeType":"VariableDeclaration","scope":894,"src":"8519:21:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":890,"name":"bytes","nodeType":"ElementaryTypeName","src":"8519:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8518:23:5"},"returnParameters":{"id":893,"nodeType":"ParameterList","parameters":[],"src":"8550:0:5"},"scope":909,"src":"8493:58:5","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"errorSelector":"99410554","id":900,"name":"DelegateAndRevert","nameLocation":"8563:17:5","nodeType":"ErrorDefinition","parameters":{"id":899,"nodeType":"ParameterList","parameters":[{"constant":false,"id":896,"mutability":"mutable","name":"success","nameLocation":"8586:7:5","nodeType":"VariableDeclaration","scope":900,"src":"8581:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":895,"name":"bool","nodeType":"ElementaryTypeName","src":"8581:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":898,"mutability":"mutable","name":"ret","nameLocation":"8601:3:5","nodeType":"VariableDeclaration","scope":900,"src":"8595:9:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":897,"name":"bytes","nodeType":"ElementaryTypeName","src":"8595:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8580:25:5"},"src":"8557:49:5"},{"documentation":{"id":901,"nodeType":"StructuredDocumentation","src":"8612:492:5","text":" Helper method for dry-run testing.\n @dev calling this method, the EntryPoint will make a delegatecall to the given data, and report (via revert) the result.\n  The method always revert, so is only useful off-chain for dry run calls, in cases where state-override to replace\n  actual EntryPoint code is less convenient.\n @param target a target contract to make a delegatecall from entrypoint\n @param data data to pass to target in a delegatecall"},"functionSelector":"850aaf62","id":908,"implemented":false,"kind":"function","modifiers":[],"name":"delegateAndRevert","nameLocation":"9118:17:5","nodeType":"FunctionDefinition","parameters":{"id":906,"nodeType":"ParameterList","parameters":[{"constant":false,"id":903,"mutability":"mutable","name":"target","nameLocation":"9144:6:5","nodeType":"VariableDeclaration","scope":908,"src":"9136:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":902,"name":"address","nodeType":"ElementaryTypeName","src":"9136:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":905,"mutability":"mutable","name":"data","nameLocation":"9167:4:5","nodeType":"VariableDeclaration","scope":908,"src":"9152:19:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":904,"name":"bytes","nodeType":"ElementaryTypeName","src":"9152:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"9135:37:5"},"returnParameters":{"id":907,"nodeType":"ParameterList","parameters":[],"src":"9181:0:5"},"scope":909,"src":"9109:73:5","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":910,"src":"436:8748:5","usedErrors":[808,817,821,826,830,900],"usedEvents":[751,762,773,784,793,796,801,937,945,953,959,967]}],"src":"163:9022:5"},"id":5},"@account-abstraction/contracts/interfaces/INonceManager.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/INonceManager.sol","exportedSymbols":{"INonceManager":[928]},"id":929,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":911,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"36:24:6"},{"abstract":false,"baseContracts":[],"canonicalName":"INonceManager","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":928,"linearizedBaseContracts":[928],"name":"INonceManager","nameLocation":"72:13:6","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":912,"nodeType":"StructuredDocumentation","src":"93:416:6","text":" Return the next nonce for this sender.\n Within a given key, the nonce values are sequenced (starting with zero, and incremented by one on each userop)\n But UserOp with different keys can come with arbitrary order.\n @param sender the account address\n @param key the high 192 bit of the nonce\n @return nonce a full nonce to pass for next UserOp with this sender."},"functionSelector":"35567e1a","id":921,"implemented":false,"kind":"function","modifiers":[],"name":"getNonce","nameLocation":"523:8:6","nodeType":"FunctionDefinition","parameters":{"id":917,"nodeType":"ParameterList","parameters":[{"constant":false,"id":914,"mutability":"mutable","name":"sender","nameLocation":"540:6:6","nodeType":"VariableDeclaration","scope":921,"src":"532:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":913,"name":"address","nodeType":"ElementaryTypeName","src":"532:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":916,"mutability":"mutable","name":"key","nameLocation":"556:3:6","nodeType":"VariableDeclaration","scope":921,"src":"548:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":915,"name":"uint192","nodeType":"ElementaryTypeName","src":"548:7:6","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"531:29:6"},"returnParameters":{"id":920,"nodeType":"ParameterList","parameters":[{"constant":false,"id":919,"mutability":"mutable","name":"nonce","nameLocation":"596:5:6","nodeType":"VariableDeclaration","scope":921,"src":"588:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":918,"name":"uint256","nodeType":"ElementaryTypeName","src":"588:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"587:15:6"},"scope":928,"src":"514:89:6","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":922,"nodeType":"StructuredDocumentation","src":"609:449:6","text":" Manually increment the nonce of the sender.\n This method is exposed just for completeness..\n Account does NOT need to call it, neither during validation, nor elsewhere,\n as the EntryPoint will update the nonce regardless.\n Possible use-case is call it with various keys to \"initialize\" their nonces to one, so that future\n UserOperations will not pay extra for the first transaction with a given key."},"functionSelector":"0bd28e3b","id":927,"implemented":false,"kind":"function","modifiers":[],"name":"incrementNonce","nameLocation":"1072:14:6","nodeType":"FunctionDefinition","parameters":{"id":925,"nodeType":"ParameterList","parameters":[{"constant":false,"id":924,"mutability":"mutable","name":"key","nameLocation":"1095:3:6","nodeType":"VariableDeclaration","scope":927,"src":"1087:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":923,"name":"uint192","nodeType":"ElementaryTypeName","src":"1087:7:6","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"1086:13:6"},"returnParameters":{"id":926,"nodeType":"ParameterList","parameters":[],"src":"1108:0:6"},"scope":928,"src":"1063:46:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":929,"src":"62:1049:6","usedErrors":[],"usedEvents":[]}],"src":"36:1076:6"},"id":6},"@account-abstraction/contracts/interfaces/IStakeManager.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/IStakeManager.sol","exportedSymbols":{"IStakeManager":[1032]},"id":1033,"license":"GPL-3.0-only","nodeType":"SourceUnit","nodes":[{"id":930,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"41:24:7"},{"abstract":false,"baseContracts":[],"canonicalName":"IStakeManager","contractDependencies":[],"contractKind":"interface","documentation":{"id":931,"nodeType":"StructuredDocumentation","src":"67:212:7","text":" Manage deposits and stakes.\n Deposit is just a balance used to pay for UserOperations (either by a paymaster or an account).\n Stake is value locked for at least \"unstakeDelay\" by the staked entity."},"fullyImplemented":false,"id":1032,"linearizedBaseContracts":[1032],"name":"IStakeManager","nameLocation":"290:13:7","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"eventSelector":"2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c4","id":937,"name":"Deposited","nameLocation":"316:9:7","nodeType":"EventDefinition","parameters":{"id":936,"nodeType":"ParameterList","parameters":[{"constant":false,"id":933,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"342:7:7","nodeType":"VariableDeclaration","scope":937,"src":"326:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":932,"name":"address","nodeType":"ElementaryTypeName","src":"326:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":935,"indexed":false,"mutability":"mutable","name":"totalDeposit","nameLocation":"359:12:7","nodeType":"VariableDeclaration","scope":937,"src":"351:20:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":934,"name":"uint256","nodeType":"ElementaryTypeName","src":"351:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"325:47:7"},"src":"310:63:7"},{"anonymous":false,"eventSelector":"d1c19fbcd4551a5edfb66d43d2e337c04837afda3482b42bdf569a8fccdae5fb","id":945,"name":"Withdrawn","nameLocation":"385:9:7","nodeType":"EventDefinition","parameters":{"id":944,"nodeType":"ParameterList","parameters":[{"constant":false,"id":939,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"420:7:7","nodeType":"VariableDeclaration","scope":945,"src":"404:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":938,"name":"address","nodeType":"ElementaryTypeName","src":"404:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":941,"indexed":false,"mutability":"mutable","name":"withdrawAddress","nameLocation":"445:15:7","nodeType":"VariableDeclaration","scope":945,"src":"437:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":940,"name":"address","nodeType":"ElementaryTypeName","src":"437:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":943,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"478:6:7","nodeType":"VariableDeclaration","scope":945,"src":"470:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":942,"name":"uint256","nodeType":"ElementaryTypeName","src":"470:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"394:96:7"},"src":"379:112:7"},{"anonymous":false,"eventSelector":"a5ae833d0bb1dcd632d98a8b70973e8516812898e19bf27b70071ebc8dc52c01","id":953,"name":"StakeLocked","nameLocation":"560:11:7","nodeType":"EventDefinition","parameters":{"id":952,"nodeType":"ParameterList","parameters":[{"constant":false,"id":947,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"597:7:7","nodeType":"VariableDeclaration","scope":953,"src":"581:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":946,"name":"address","nodeType":"ElementaryTypeName","src":"581:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":949,"indexed":false,"mutability":"mutable","name":"totalStaked","nameLocation":"622:11:7","nodeType":"VariableDeclaration","scope":953,"src":"614:19:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":948,"name":"uint256","nodeType":"ElementaryTypeName","src":"614:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":951,"indexed":false,"mutability":"mutable","name":"unstakeDelaySec","nameLocation":"651:15:7","nodeType":"VariableDeclaration","scope":953,"src":"643:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":950,"name":"uint256","nodeType":"ElementaryTypeName","src":"643:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"571:101:7"},"src":"554:119:7"},{"anonymous":false,"eventSelector":"fa9b3c14cc825c412c9ed81b3ba365a5b459439403f18829e572ed53a4180f0a","id":959,"name":"StakeUnlocked","nameLocation":"742:13:7","nodeType":"EventDefinition","parameters":{"id":958,"nodeType":"ParameterList","parameters":[{"constant":false,"id":955,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"772:7:7","nodeType":"VariableDeclaration","scope":959,"src":"756:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":954,"name":"address","nodeType":"ElementaryTypeName","src":"756:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":957,"indexed":false,"mutability":"mutable","name":"withdrawTime","nameLocation":"789:12:7","nodeType":"VariableDeclaration","scope":959,"src":"781:20:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":956,"name":"uint256","nodeType":"ElementaryTypeName","src":"781:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"755:47:7"},"src":"736:67:7"},{"anonymous":false,"eventSelector":"b7c918e0e249f999e965cafeb6c664271b3f4317d296461500e71da39f0cbda3","id":967,"name":"StakeWithdrawn","nameLocation":"815:14:7","nodeType":"EventDefinition","parameters":{"id":966,"nodeType":"ParameterList","parameters":[{"constant":false,"id":961,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"855:7:7","nodeType":"VariableDeclaration","scope":967,"src":"839:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":960,"name":"address","nodeType":"ElementaryTypeName","src":"839:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":963,"indexed":false,"mutability":"mutable","name":"withdrawAddress","nameLocation":"880:15:7","nodeType":"VariableDeclaration","scope":967,"src":"872:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":962,"name":"address","nodeType":"ElementaryTypeName","src":"872:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":965,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"913:6:7","nodeType":"VariableDeclaration","scope":967,"src":"905:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":964,"name":"uint256","nodeType":"ElementaryTypeName","src":"905:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"829:96:7"},"src":"809:117:7"},{"canonicalName":"IStakeManager.DepositInfo","documentation":{"id":968,"nodeType":"StructuredDocumentation","src":"932:697:7","text":" @param deposit         - The entity's deposit.\n @param staked          - True if this entity is staked.\n @param stake           - Actual amount of ether staked for this entity.\n @param unstakeDelaySec - Minimum delay to withdraw the stake.\n @param withdrawTime    - First block timestamp where 'withdrawStake' will be callable, or zero if already locked.\n @dev Sizes were chosen so that deposit fits into one cell (used during handleOp)\n      and the rest fit into a 2nd cell (used during stake/unstake)\n      - 112 bit allows for 10^15 eth\n      - 48 bit for full timestamp\n      - 32 bit allows 150 years for unstake delay"},"id":979,"members":[{"constant":false,"id":970,"mutability":"mutable","name":"deposit","nameLocation":"1671:7:7","nodeType":"VariableDeclaration","scope":979,"src":"1663:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":969,"name":"uint256","nodeType":"ElementaryTypeName","src":"1663:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":972,"mutability":"mutable","name":"staked","nameLocation":"1693:6:7","nodeType":"VariableDeclaration","scope":979,"src":"1688:11:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":971,"name":"bool","nodeType":"ElementaryTypeName","src":"1688:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":974,"mutability":"mutable","name":"stake","nameLocation":"1717:5:7","nodeType":"VariableDeclaration","scope":979,"src":"1709:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":973,"name":"uint112","nodeType":"ElementaryTypeName","src":"1709:7:7","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"},{"constant":false,"id":976,"mutability":"mutable","name":"unstakeDelaySec","nameLocation":"1739:15:7","nodeType":"VariableDeclaration","scope":979,"src":"1732:22:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":975,"name":"uint32","nodeType":"ElementaryTypeName","src":"1732:6:7","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":978,"mutability":"mutable","name":"withdrawTime","nameLocation":"1771:12:7","nodeType":"VariableDeclaration","scope":979,"src":"1764:19:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":977,"name":"uint48","nodeType":"ElementaryTypeName","src":"1764:6:7","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"name":"DepositInfo","nameLocation":"1641:11:7","nodeType":"StructDefinition","scope":1032,"src":"1634:156:7","visibility":"public"},{"canonicalName":"IStakeManager.StakeInfo","id":984,"members":[{"constant":false,"id":981,"mutability":"mutable","name":"stake","nameLocation":"1894:5:7","nodeType":"VariableDeclaration","scope":984,"src":"1886:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":980,"name":"uint256","nodeType":"ElementaryTypeName","src":"1886:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":983,"mutability":"mutable","name":"unstakeDelaySec","nameLocation":"1917:15:7","nodeType":"VariableDeclaration","scope":984,"src":"1909:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":982,"name":"uint256","nodeType":"ElementaryTypeName","src":"1909:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"StakeInfo","nameLocation":"1866:9:7","nodeType":"StructDefinition","scope":1032,"src":"1859:80:7","visibility":"public"},{"documentation":{"id":985,"nodeType":"StructuredDocumentation","src":"1945:149:7","text":" Get deposit info.\n @param account - The account to query.\n @return info   - Full deposit information of given account."},"functionSelector":"5287ce12","id":993,"implemented":false,"kind":"function","modifiers":[],"name":"getDepositInfo","nameLocation":"2108:14:7","nodeType":"FunctionDefinition","parameters":{"id":988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":987,"mutability":"mutable","name":"account","nameLocation":"2140:7:7","nodeType":"VariableDeclaration","scope":993,"src":"2132:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":986,"name":"address","nodeType":"ElementaryTypeName","src":"2132:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2122:31:7"},"returnParameters":{"id":992,"nodeType":"ParameterList","parameters":[{"constant":false,"id":991,"mutability":"mutable","name":"info","nameLocation":"2196:4:7","nodeType":"VariableDeclaration","scope":993,"src":"2177:23:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$979_memory_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":990,"nodeType":"UserDefinedTypeName","pathNode":{"id":989,"name":"DepositInfo","nameLocations":["2177:11:7"],"nodeType":"IdentifierPath","referencedDeclaration":979,"src":"2177:11:7"},"referencedDeclaration":979,"src":"2177:11:7","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$979_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"src":"2176:25:7"},"scope":1032,"src":"2099:103:7","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":994,"nodeType":"StructuredDocumentation","src":"2208:155:7","text":" Get account balance.\n @param account - The account to query.\n @return        - The deposit (for gas payment) of the account."},"functionSelector":"70a08231","id":1001,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"2377:9:7","nodeType":"FunctionDefinition","parameters":{"id":997,"nodeType":"ParameterList","parameters":[{"constant":false,"id":996,"mutability":"mutable","name":"account","nameLocation":"2395:7:7","nodeType":"VariableDeclaration","scope":1001,"src":"2387:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":995,"name":"address","nodeType":"ElementaryTypeName","src":"2387:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2386:17:7"},"returnParameters":{"id":1000,"nodeType":"ParameterList","parameters":[{"constant":false,"id":999,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1001,"src":"2427:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":998,"name":"uint256","nodeType":"ElementaryTypeName","src":"2427:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2426:9:7"},"scope":1032,"src":"2368:68:7","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1002,"nodeType":"StructuredDocumentation","src":"2442:106:7","text":" Add to the deposit of the given account.\n @param account - The account to add to."},"functionSelector":"b760faf9","id":1007,"implemented":false,"kind":"function","modifiers":[],"name":"depositTo","nameLocation":"2562:9:7","nodeType":"FunctionDefinition","parameters":{"id":1005,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1004,"mutability":"mutable","name":"account","nameLocation":"2580:7:7","nodeType":"VariableDeclaration","scope":1007,"src":"2572:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1003,"name":"address","nodeType":"ElementaryTypeName","src":"2572:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2571:17:7"},"returnParameters":{"id":1006,"nodeType":"ParameterList","parameters":[],"src":"2605:0:7"},"scope":1032,"src":"2553:53:7","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":1008,"nodeType":"StructuredDocumentation","src":"2612:203:7","text":" Add to the account's stake - amount and delay\n any pending unstake is first cancelled.\n @param _unstakeDelaySec - The new lock duration before the deposit can be withdrawn."},"functionSelector":"0396cb60","id":1013,"implemented":false,"kind":"function","modifiers":[],"name":"addStake","nameLocation":"2829:8:7","nodeType":"FunctionDefinition","parameters":{"id":1011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1010,"mutability":"mutable","name":"_unstakeDelaySec","nameLocation":"2845:16:7","nodeType":"VariableDeclaration","scope":1013,"src":"2838:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1009,"name":"uint32","nodeType":"ElementaryTypeName","src":"2838:6:7","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2837:25:7"},"returnParameters":{"id":1012,"nodeType":"ParameterList","parameters":[],"src":"2879:0:7"},"scope":1032,"src":"2820:60:7","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":1014,"nodeType":"StructuredDocumentation","src":"2886:128:7","text":" Attempt to unlock the stake.\n The value can be withdrawn (using withdrawStake) after the unstake delay."},"functionSelector":"bb9fe6bf","id":1017,"implemented":false,"kind":"function","modifiers":[],"name":"unlockStake","nameLocation":"3028:11:7","nodeType":"FunctionDefinition","parameters":{"id":1015,"nodeType":"ParameterList","parameters":[],"src":"3039:2:7"},"returnParameters":{"id":1016,"nodeType":"ParameterList","parameters":[],"src":"3050:0:7"},"scope":1032,"src":"3019:32:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1018,"nodeType":"StructuredDocumentation","src":"3057:197:7","text":" Withdraw from the (unlocked) stake.\n Must first call unlockStake and wait for the unstakeDelay to pass.\n @param withdrawAddress - The address to send withdrawn value."},"functionSelector":"c23a5cea","id":1023,"implemented":false,"kind":"function","modifiers":[],"name":"withdrawStake","nameLocation":"3268:13:7","nodeType":"FunctionDefinition","parameters":{"id":1021,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1020,"mutability":"mutable","name":"withdrawAddress","nameLocation":"3298:15:7","nodeType":"VariableDeclaration","scope":1023,"src":"3282:31:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":1019,"name":"address","nodeType":"ElementaryTypeName","src":"3282:15:7","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"}],"src":"3281:33:7"},"returnParameters":{"id":1022,"nodeType":"ParameterList","parameters":[],"src":"3323:0:7"},"scope":1032,"src":"3259:65:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1024,"nodeType":"StructuredDocumentation","src":"3330:170:7","text":" Withdraw from the deposit.\n @param withdrawAddress - The address to send withdrawn value.\n @param withdrawAmount  - The amount to withdraw."},"functionSelector":"205c2878","id":1031,"implemented":false,"kind":"function","modifiers":[],"name":"withdrawTo","nameLocation":"3514:10:7","nodeType":"FunctionDefinition","parameters":{"id":1029,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1026,"mutability":"mutable","name":"withdrawAddress","nameLocation":"3550:15:7","nodeType":"VariableDeclaration","scope":1031,"src":"3534:31:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":1025,"name":"address","nodeType":"ElementaryTypeName","src":"3534:15:7","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":1028,"mutability":"mutable","name":"withdrawAmount","nameLocation":"3583:14:7","nodeType":"VariableDeclaration","scope":1031,"src":"3575:22:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1027,"name":"uint256","nodeType":"ElementaryTypeName","src":"3575:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3524:79:7"},"returnParameters":{"id":1030,"nodeType":"ParameterList","parameters":[],"src":"3612:0:7"},"scope":1032,"src":"3505:108:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":1033,"src":"280:3335:7","usedErrors":[],"usedEvents":[937,945,953,959,967]}],"src":"41:3575:7"},"id":7},"@account-abstraction/contracts/interfaces/PackedUserOperation.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","exportedSymbols":{"PackedUserOperation":[1054]},"id":1055,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":1034,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"36:24:8"},{"canonicalName":"PackedUserOperation","documentation":{"id":1035,"nodeType":"StructuredDocumentation","src":"62:1164:8","text":" User Operation struct\n @param sender                - The sender account of this request.\n @param nonce                 - Unique value the sender uses to verify it is not a replay.\n @param initCode              - If set, the account contract will be created by this constructor/\n @param callData              - The method call to execute on this account.\n @param accountGasLimits      - Packed gas limits for validateUserOp and gas limit passed to the callData method call.\n @param preVerificationGas    - Gas not calculated by the handleOps method, but added to the gas paid.\n                                Covers batch overhead.\n @param gasFees               - packed gas fields maxPriorityFeePerGas and maxFeePerGas - Same as EIP-1559 gas parameters.\n @param paymasterAndData      - If set, this field holds the paymaster address, verification gas limit, postOp gas limit and paymaster-specific extra data\n                                The paymaster will pay for the transaction instead of the sender.\n @param signature             - Sender-verified signature over the entire request, the EntryPoint address and the chain ID."},"id":1054,"members":[{"constant":false,"id":1037,"mutability":"mutable","name":"sender","nameLocation":"1268:6:8","nodeType":"VariableDeclaration","scope":1054,"src":"1260:14:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1036,"name":"address","nodeType":"ElementaryTypeName","src":"1260:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1039,"mutability":"mutable","name":"nonce","nameLocation":"1288:5:8","nodeType":"VariableDeclaration","scope":1054,"src":"1280:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1038,"name":"uint256","nodeType":"ElementaryTypeName","src":"1280:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1041,"mutability":"mutable","name":"initCode","nameLocation":"1305:8:8","nodeType":"VariableDeclaration","scope":1054,"src":"1299:14:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":1040,"name":"bytes","nodeType":"ElementaryTypeName","src":"1299:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1043,"mutability":"mutable","name":"callData","nameLocation":"1325:8:8","nodeType":"VariableDeclaration","scope":1054,"src":"1319:14:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":1042,"name":"bytes","nodeType":"ElementaryTypeName","src":"1319:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1045,"mutability":"mutable","name":"accountGasLimits","nameLocation":"1347:16:8","nodeType":"VariableDeclaration","scope":1054,"src":"1339:24:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1044,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1339:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1047,"mutability":"mutable","name":"preVerificationGas","nameLocation":"1377:18:8","nodeType":"VariableDeclaration","scope":1054,"src":"1369:26:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1046,"name":"uint256","nodeType":"ElementaryTypeName","src":"1369:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1049,"mutability":"mutable","name":"gasFees","nameLocation":"1409:7:8","nodeType":"VariableDeclaration","scope":1054,"src":"1401:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1048,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1401:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1051,"mutability":"mutable","name":"paymasterAndData","nameLocation":"1428:16:8","nodeType":"VariableDeclaration","scope":1054,"src":"1422:22:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":1050,"name":"bytes","nodeType":"ElementaryTypeName","src":"1422:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1053,"mutability":"mutable","name":"signature","nameLocation":"1456:9:8","nodeType":"VariableDeclaration","scope":1054,"src":"1450:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":1052,"name":"bytes","nodeType":"ElementaryTypeName","src":"1450:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"PackedUserOperation","nameLocation":"1234:19:8","nodeType":"StructDefinition","scope":1055,"src":"1227:241:8","visibility":"public"}],"src":"36:1433:8"},"id":8},"@openzeppelin/contracts/access/AccessControl.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/AccessControl.sol","exportedSymbols":{"AccessControl":[1350],"Context":[3098],"ERC165":[4905],"IAccessControl":[1433]},"id":1351,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1056,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"108:24:9"},{"absolutePath":"@openzeppelin/contracts/access/IAccessControl.sol","file":"./IAccessControl.sol","id":1058,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1351,"sourceUnit":1434,"src":"134:52:9","symbolAliases":[{"foreign":{"id":1057,"name":"IAccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1433,"src":"142:14:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../utils/Context.sol","id":1060,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1351,"sourceUnit":3099,"src":"187:45:9","symbolAliases":[{"foreign":{"id":1059,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3098,"src":"195:7:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"../utils/introspection/ERC165.sol","id":1062,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1351,"sourceUnit":4906,"src":"233:57:9","symbolAliases":[{"foreign":{"id":1061,"name":"ERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4905,"src":"241:6:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":1064,"name":"Context","nameLocations":["1988:7:9"],"nodeType":"IdentifierPath","referencedDeclaration":3098,"src":"1988:7:9"},"id":1065,"nodeType":"InheritanceSpecifier","src":"1988:7:9"},{"baseName":{"id":1066,"name":"IAccessControl","nameLocations":["1997:14:9"],"nodeType":"IdentifierPath","referencedDeclaration":1433,"src":"1997:14:9"},"id":1067,"nodeType":"InheritanceSpecifier","src":"1997:14:9"},{"baseName":{"id":1068,"name":"ERC165","nameLocations":["2013:6:9"],"nodeType":"IdentifierPath","referencedDeclaration":4905,"src":"2013:6:9"},"id":1069,"nodeType":"InheritanceSpecifier","src":"2013:6:9"}],"canonicalName":"AccessControl","contractDependencies":[],"contractKind":"contract","documentation":{"id":1063,"nodeType":"StructuredDocumentation","src":"292:1660:9","text":" @dev Contract module that allows children to implement role-based access\n control mechanisms. This is a lightweight version that doesn't allow enumerating role\n members except through off-chain means by accessing the contract event logs. Some\n applications may benefit from on-chain enumerability, for those cases see\n {AccessControlEnumerable}.\n Roles are referred to by their `bytes32` identifier. These should be exposed\n in the external API and be unique. The best way to achieve this is by\n using `public constant` hash digests:\n ```solidity\n bytes32 public constant MY_ROLE = keccak256(\"MY_ROLE\");\n ```\n Roles can be used to represent a set of permissions. To restrict access to a\n function call, use {hasRole}:\n ```solidity\n function foo() public {\n     require(hasRole(MY_ROLE, msg.sender));\n     ...\n }\n ```\n Roles can be granted and revoked dynamically via the {grantRole} and\n {revokeRole} functions. Each role has an associated admin role, and only\n accounts that have a role's admin role can call {grantRole} and {revokeRole}.\n By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means\n that only accounts with this role will be able to grant or revoke other\n roles. More complex role relationships can be created by using\n {_setRoleAdmin}.\n WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to\n grant and revoke this role. Extra precautions should be taken to secure\n accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}\n to enforce additional security measures for this role."},"fullyImplemented":true,"id":1350,"linearizedBaseContracts":[1350,4905,4917,1433,3098],"name":"AccessControl","nameLocation":"1971:13:9","nodeType":"ContractDefinition","nodes":[{"canonicalName":"AccessControl.RoleData","id":1076,"members":[{"constant":false,"id":1073,"mutability":"mutable","name":"hasRole","nameLocation":"2085:7:9","nodeType":"VariableDeclaration","scope":1076,"src":"2052:40:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":1072,"keyName":"account","keyNameLocation":"2068:7:9","keyType":{"id":1070,"name":"address","nodeType":"ElementaryTypeName","src":"2060:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2052:32:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1071,"name":"bool","nodeType":"ElementaryTypeName","src":"2079:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"},{"constant":false,"id":1075,"mutability":"mutable","name":"adminRole","nameLocation":"2110:9:9","nodeType":"VariableDeclaration","scope":1076,"src":"2102:17:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1074,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2102:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"name":"RoleData","nameLocation":"2033:8:9","nodeType":"StructDefinition","scope":1350,"src":"2026:100:9","visibility":"public"},{"constant":false,"id":1081,"mutability":"mutable","name":"_roles","nameLocation":"2174:6:9","nodeType":"VariableDeclaration","scope":1350,"src":"2132:48:9","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$1076_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData)"},"typeName":{"id":1080,"keyName":"role","keyNameLocation":"2148:4:9","keyType":{"id":1077,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2140:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"2132:33:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$1076_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1079,"nodeType":"UserDefinedTypeName","pathNode":{"id":1078,"name":"RoleData","nameLocations":["2156:8:9"],"nodeType":"IdentifierPath","referencedDeclaration":1076,"src":"2156:8:9"},"referencedDeclaration":1076,"src":"2156:8:9","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$1076_storage_ptr","typeString":"struct AccessControl.RoleData"}}},"visibility":"private"},{"constant":true,"functionSelector":"a217fddf","id":1084,"mutability":"constant","name":"DEFAULT_ADMIN_ROLE","nameLocation":"2211:18:9","nodeType":"VariableDeclaration","scope":1350,"src":"2187:49:9","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1082,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2187:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"30783030","id":1083,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2232:4:9","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0x00"},"visibility":"public"},{"body":{"id":1094,"nodeType":"Block","src":"2454:44:9","statements":[{"expression":{"arguments":[{"id":1090,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1087,"src":"2475:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1089,"name":"_checkRole","nodeType":"Identifier","overloadedDeclarations":[1148,1169],"referencedDeclaration":1148,"src":"2464:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$__$","typeString":"function (bytes32) view"}},"id":1091,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2464:16:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1092,"nodeType":"ExpressionStatement","src":"2464:16:9"},{"id":1093,"nodeType":"PlaceholderStatement","src":"2490:1:9"}]},"documentation":{"id":1085,"nodeType":"StructuredDocumentation","src":"2243:174:9","text":" @dev Modifier that checks that an account has a specific role. Reverts\n with an {AccessControlUnauthorizedAccount} error including the required role."},"id":1095,"name":"onlyRole","nameLocation":"2431:8:9","nodeType":"ModifierDefinition","parameters":{"id":1088,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1087,"mutability":"mutable","name":"role","nameLocation":"2448:4:9","nodeType":"VariableDeclaration","scope":1095,"src":"2440:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1086,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2440:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2439:14:9"},"src":"2422:76:9","virtual":false,"visibility":"internal"},{"baseFunctions":[4904],"body":{"id":1116,"nodeType":"Block","src":"2656:111:9","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":1109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1104,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1098,"src":"2673:11:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":1106,"name":"IAccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1433,"src":"2693:14:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessControl_$1433_$","typeString":"type(contract IAccessControl)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IAccessControl_$1433_$","typeString":"type(contract IAccessControl)"}],"id":1105,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2688:4:9","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":1107,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2688:20:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IAccessControl_$1433","typeString":"type(contract IAccessControl)"}},"id":1108,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2709:11:9","memberName":"interfaceId","nodeType":"MemberAccess","src":"2688:32:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2673:47:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":1112,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1098,"src":"2748:11:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":1110,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2724:5:9","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_AccessControl_$1350_$","typeString":"type(contract super AccessControl)"}},"id":1111,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2730:17:9","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":4904,"src":"2724:23:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":1113,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2724:36:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2673:87:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":1103,"id":1115,"nodeType":"Return","src":"2666:94:9"}]},"documentation":{"id":1096,"nodeType":"StructuredDocumentation","src":"2504:56:9","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":1117,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"2574:17:9","nodeType":"FunctionDefinition","overrides":{"id":1100,"nodeType":"OverrideSpecifier","overrides":[],"src":"2632:8:9"},"parameters":{"id":1099,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1098,"mutability":"mutable","name":"interfaceId","nameLocation":"2599:11:9","nodeType":"VariableDeclaration","scope":1117,"src":"2592:18:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1097,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2592:6:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2591:20:9"},"returnParameters":{"id":1103,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1102,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1117,"src":"2650:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1101,"name":"bool","nodeType":"ElementaryTypeName","src":"2650:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2649:6:9"},"scope":1350,"src":"2565:202:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1400],"body":{"id":1134,"nodeType":"Block","src":"2937:53:9","statements":[{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":1127,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1081,"src":"2954:6:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$1076_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":1129,"indexExpression":{"id":1128,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1120,"src":"2961:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2954:12:9","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$1076_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":1130,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2967:7:9","memberName":"hasRole","nodeType":"MemberAccess","referencedDeclaration":1073,"src":"2954:20:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1132,"indexExpression":{"id":1131,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1122,"src":"2975:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2954:29:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":1126,"id":1133,"nodeType":"Return","src":"2947:36:9"}]},"documentation":{"id":1118,"nodeType":"StructuredDocumentation","src":"2773:76:9","text":" @dev Returns `true` if `account` has been granted `role`."},"functionSelector":"91d14854","id":1135,"implemented":true,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"2863:7:9","nodeType":"FunctionDefinition","parameters":{"id":1123,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1120,"mutability":"mutable","name":"role","nameLocation":"2879:4:9","nodeType":"VariableDeclaration","scope":1135,"src":"2871:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1119,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2871:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1122,"mutability":"mutable","name":"account","nameLocation":"2893:7:9","nodeType":"VariableDeclaration","scope":1135,"src":"2885:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1121,"name":"address","nodeType":"ElementaryTypeName","src":"2885:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2870:31:9"},"returnParameters":{"id":1126,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1125,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1135,"src":"2931:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1124,"name":"bool","nodeType":"ElementaryTypeName","src":"2931:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2930:6:9"},"scope":1350,"src":"2854:136:9","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":1147,"nodeType":"Block","src":"3255:47:9","statements":[{"expression":{"arguments":[{"id":1142,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1138,"src":"3276:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":1143,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3080,"src":"3282:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1144,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3282:12:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1141,"name":"_checkRole","nodeType":"Identifier","overloadedDeclarations":[1148,1169],"referencedDeclaration":1169,"src":"3265:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$__$","typeString":"function (bytes32,address) view"}},"id":1145,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3265:30:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1146,"nodeType":"ExpressionStatement","src":"3265:30:9"}]},"documentation":{"id":1136,"nodeType":"StructuredDocumentation","src":"2996:198:9","text":" @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`\n is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier."},"id":1148,"implemented":true,"kind":"function","modifiers":[],"name":"_checkRole","nameLocation":"3208:10:9","nodeType":"FunctionDefinition","parameters":{"id":1139,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1138,"mutability":"mutable","name":"role","nameLocation":"3227:4:9","nodeType":"VariableDeclaration","scope":1148,"src":"3219:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1137,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3219:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3218:14:9"},"returnParameters":{"id":1140,"nodeType":"ParameterList","parameters":[],"src":"3255:0:9"},"scope":1350,"src":"3199:103:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":1168,"nodeType":"Block","src":"3505:124:9","statements":[{"condition":{"id":1160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3519:23:9","subExpression":{"arguments":[{"id":1157,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1151,"src":"3528:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1158,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1153,"src":"3534:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1156,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1135,"src":"3520:7:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":1159,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3520:22:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1167,"nodeType":"IfStatement","src":"3515:108:9","trueBody":{"id":1166,"nodeType":"Block","src":"3544:79:9","statements":[{"errorCall":{"arguments":[{"id":1162,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1153,"src":"3598:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1163,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1151,"src":"3607:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1161,"name":"AccessControlUnauthorizedAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1360,"src":"3565:32:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_bytes32_$returns$_t_error_$","typeString":"function (address,bytes32) pure returns (error)"}},"id":1164,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3565:47:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1165,"nodeType":"RevertStatement","src":"3558:54:9"}]}}]},"documentation":{"id":1149,"nodeType":"StructuredDocumentation","src":"3308:119:9","text":" @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`\n is missing `role`."},"id":1169,"implemented":true,"kind":"function","modifiers":[],"name":"_checkRole","nameLocation":"3441:10:9","nodeType":"FunctionDefinition","parameters":{"id":1154,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1151,"mutability":"mutable","name":"role","nameLocation":"3460:4:9","nodeType":"VariableDeclaration","scope":1169,"src":"3452:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1150,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3452:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1153,"mutability":"mutable","name":"account","nameLocation":"3474:7:9","nodeType":"VariableDeclaration","scope":1169,"src":"3466:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1152,"name":"address","nodeType":"ElementaryTypeName","src":"3466:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3451:31:9"},"returnParameters":{"id":1155,"nodeType":"ParameterList","parameters":[],"src":"3505:0:9"},"scope":1350,"src":"3432:197:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[1408],"body":{"id":1182,"nodeType":"Block","src":"3884:46:9","statements":[{"expression":{"expression":{"baseExpression":{"id":1177,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1081,"src":"3901:6:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$1076_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":1179,"indexExpression":{"id":1178,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1172,"src":"3908:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3901:12:9","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$1076_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":1180,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3914:9:9","memberName":"adminRole","nodeType":"MemberAccess","referencedDeclaration":1075,"src":"3901:22:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":1176,"id":1181,"nodeType":"Return","src":"3894:29:9"}]},"documentation":{"id":1170,"nodeType":"StructuredDocumentation","src":"3635:170:9","text":" @dev Returns the admin role that controls `role`. See {grantRole} and\n {revokeRole}.\n To change a role's admin, use {_setRoleAdmin}."},"functionSelector":"248a9ca3","id":1183,"implemented":true,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"3819:12:9","nodeType":"FunctionDefinition","parameters":{"id":1173,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1172,"mutability":"mutable","name":"role","nameLocation":"3840:4:9","nodeType":"VariableDeclaration","scope":1183,"src":"3832:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1171,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3832:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3831:14:9"},"returnParameters":{"id":1176,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1175,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1183,"src":"3875:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1174,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3875:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3874:9:9"},"scope":1350,"src":"3810:120:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1416],"body":{"id":1201,"nodeType":"Block","src":"4320:42:9","statements":[{"expression":{"arguments":[{"id":1197,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1186,"src":"4341:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1198,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1188,"src":"4347:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1196,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1311,"src":"4330:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":1199,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4330:25:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1200,"nodeType":"ExpressionStatement","src":"4330:25:9"}]},"documentation":{"id":1184,"nodeType":"StructuredDocumentation","src":"3936:285:9","text":" @dev Grants `role` to `account`.\n If `account` had not been already granted `role`, emits a {RoleGranted}\n event.\n Requirements:\n - the caller must have ``role``'s admin role.\n May emit a {RoleGranted} event."},"functionSelector":"2f2ff15d","id":1202,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"arguments":[{"id":1192,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1186,"src":"4313:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1191,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1183,"src":"4300:12:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":1193,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4300:18:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":1194,"kind":"modifierInvocation","modifierName":{"id":1190,"name":"onlyRole","nameLocations":["4291:8:9"],"nodeType":"IdentifierPath","referencedDeclaration":1095,"src":"4291:8:9"},"nodeType":"ModifierInvocation","src":"4291:28:9"}],"name":"grantRole","nameLocation":"4235:9:9","nodeType":"FunctionDefinition","parameters":{"id":1189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1186,"mutability":"mutable","name":"role","nameLocation":"4253:4:9","nodeType":"VariableDeclaration","scope":1202,"src":"4245:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1185,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4245:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1188,"mutability":"mutable","name":"account","nameLocation":"4267:7:9","nodeType":"VariableDeclaration","scope":1202,"src":"4259:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1187,"name":"address","nodeType":"ElementaryTypeName","src":"4259:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4244:31:9"},"returnParameters":{"id":1195,"nodeType":"ParameterList","parameters":[],"src":"4320:0:9"},"scope":1350,"src":"4226:136:9","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1424],"body":{"id":1220,"nodeType":"Block","src":"4737:43:9","statements":[{"expression":{"arguments":[{"id":1216,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1205,"src":"4759:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1217,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1207,"src":"4765:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1215,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1349,"src":"4747:11:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":1218,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4747:26:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1219,"nodeType":"ExpressionStatement","src":"4747:26:9"}]},"documentation":{"id":1203,"nodeType":"StructuredDocumentation","src":"4368:269:9","text":" @dev Revokes `role` from `account`.\n If `account` had been granted `role`, emits a {RoleRevoked} event.\n Requirements:\n - the caller must have ``role``'s admin role.\n May emit a {RoleRevoked} event."},"functionSelector":"d547741f","id":1221,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"arguments":[{"id":1211,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1205,"src":"4730:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1210,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1183,"src":"4717:12:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":1212,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4717:18:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":1213,"kind":"modifierInvocation","modifierName":{"id":1209,"name":"onlyRole","nameLocations":["4708:8:9"],"nodeType":"IdentifierPath","referencedDeclaration":1095,"src":"4708:8:9"},"nodeType":"ModifierInvocation","src":"4708:28:9"}],"name":"revokeRole","nameLocation":"4651:10:9","nodeType":"FunctionDefinition","parameters":{"id":1208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1205,"mutability":"mutable","name":"role","nameLocation":"4670:4:9","nodeType":"VariableDeclaration","scope":1221,"src":"4662:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1204,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4662:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1207,"mutability":"mutable","name":"account","nameLocation":"4684:7:9","nodeType":"VariableDeclaration","scope":1221,"src":"4676:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1206,"name":"address","nodeType":"ElementaryTypeName","src":"4676:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4661:31:9"},"returnParameters":{"id":1214,"nodeType":"ParameterList","parameters":[],"src":"4737:0:9"},"scope":1350,"src":"4642:138:9","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1432],"body":{"id":1243,"nodeType":"Block","src":"5407:166:9","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1229,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1226,"src":"5421:18:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1230,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3080,"src":"5443:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1231,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5443:12:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5421:34:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1237,"nodeType":"IfStatement","src":"5417:102:9","trueBody":{"id":1236,"nodeType":"Block","src":"5457:62:9","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":1233,"name":"AccessControlBadConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1363,"src":"5478:28:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":1234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5478:30:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1235,"nodeType":"RevertStatement","src":"5471:37:9"}]}},{"expression":{"arguments":[{"id":1239,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1224,"src":"5541:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1240,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1226,"src":"5547:18:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1238,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1349,"src":"5529:11:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":1241,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5529:37:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1242,"nodeType":"ExpressionStatement","src":"5529:37:9"}]},"documentation":{"id":1222,"nodeType":"StructuredDocumentation","src":"4786:537:9","text":" @dev Revokes `role` from the calling account.\n Roles are often managed via {grantRole} and {revokeRole}: this function's\n purpose is to provide a mechanism for accounts to lose their privileges\n if they are compromised (such as when a trusted device is misplaced).\n If the calling account had been revoked `role`, emits a {RoleRevoked}\n event.\n Requirements:\n - the caller must be `callerConfirmation`.\n May emit a {RoleRevoked} event."},"functionSelector":"36568abe","id":1244,"implemented":true,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"5337:12:9","nodeType":"FunctionDefinition","parameters":{"id":1227,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1224,"mutability":"mutable","name":"role","nameLocation":"5358:4:9","nodeType":"VariableDeclaration","scope":1244,"src":"5350:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1223,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5350:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1226,"mutability":"mutable","name":"callerConfirmation","nameLocation":"5372:18:9","nodeType":"VariableDeclaration","scope":1244,"src":"5364:26:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1225,"name":"address","nodeType":"ElementaryTypeName","src":"5364:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5349:42:9"},"returnParameters":{"id":1228,"nodeType":"ParameterList","parameters":[],"src":"5407:0:9"},"scope":1350,"src":"5328:245:9","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1271,"nodeType":"Block","src":"5771:174:9","statements":[{"assignments":[1253],"declarations":[{"constant":false,"id":1253,"mutability":"mutable","name":"previousAdminRole","nameLocation":"5789:17:9","nodeType":"VariableDeclaration","scope":1271,"src":"5781:25:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1252,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5781:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":1257,"initialValue":{"arguments":[{"id":1255,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1247,"src":"5822:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1254,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1183,"src":"5809:12:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":1256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5809:18:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"5781:46:9"},{"expression":{"id":1263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1258,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1081,"src":"5837:6:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$1076_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":1260,"indexExpression":{"id":1259,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1247,"src":"5844:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5837:12:9","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$1076_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":1261,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5850:9:9","memberName":"adminRole","nodeType":"MemberAccess","referencedDeclaration":1075,"src":"5837:22:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1262,"name":"adminRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1249,"src":"5862:9:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"5837:34:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":1264,"nodeType":"ExpressionStatement","src":"5837:34:9"},{"eventCall":{"arguments":[{"id":1266,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1247,"src":"5903:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1267,"name":"previousAdminRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1253,"src":"5909:17:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1268,"name":"adminRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1249,"src":"5928:9:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1265,"name":"RoleAdminChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1372,"src":"5886:16:9","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32,bytes32)"}},"id":1269,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5886:52:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1270,"nodeType":"EmitStatement","src":"5881:57:9"}]},"documentation":{"id":1245,"nodeType":"StructuredDocumentation","src":"5579:114:9","text":" @dev Sets `adminRole` as ``role``'s admin role.\n Emits a {RoleAdminChanged} event."},"id":1272,"implemented":true,"kind":"function","modifiers":[],"name":"_setRoleAdmin","nameLocation":"5707:13:9","nodeType":"FunctionDefinition","parameters":{"id":1250,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1247,"mutability":"mutable","name":"role","nameLocation":"5729:4:9","nodeType":"VariableDeclaration","scope":1272,"src":"5721:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1246,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5721:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1249,"mutability":"mutable","name":"adminRole","nameLocation":"5743:9:9","nodeType":"VariableDeclaration","scope":1272,"src":"5735:17:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1248,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5735:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5720:33:9"},"returnParameters":{"id":1251,"nodeType":"ParameterList","parameters":[],"src":"5771:0:9"},"scope":1350,"src":"5698:247:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1310,"nodeType":"Block","src":"6262:233:9","statements":[{"condition":{"id":1286,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6276:23:9","subExpression":{"arguments":[{"id":1283,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1275,"src":"6285:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1284,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1277,"src":"6291:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1282,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1135,"src":"6277:7:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":1285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6277:22:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1308,"nodeType":"Block","src":"6452:37:9","statements":[{"expression":{"hexValue":"66616c7365","id":1306,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6473:5:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":1281,"id":1307,"nodeType":"Return","src":"6466:12:9"}]},"id":1309,"nodeType":"IfStatement","src":"6272:217:9","trueBody":{"id":1305,"nodeType":"Block","src":"6301:145:9","statements":[{"expression":{"id":1294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":1287,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1081,"src":"6315:6:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$1076_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":1289,"indexExpression":{"id":1288,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1275,"src":"6322:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6315:12:9","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$1076_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":1290,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6328:7:9","memberName":"hasRole","nodeType":"MemberAccess","referencedDeclaration":1073,"src":"6315:20:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1292,"indexExpression":{"id":1291,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1277,"src":"6336:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6315:29:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1293,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6347:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6315:36:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1295,"nodeType":"ExpressionStatement","src":"6315:36:9"},{"eventCall":{"arguments":[{"id":1297,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1275,"src":"6382:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1298,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1277,"src":"6388:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":1299,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3080,"src":"6397:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6397:12:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1296,"name":"RoleGranted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1381,"src":"6370:11:9","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_address_$returns$__$","typeString":"function (bytes32,address,address)"}},"id":1301,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6370:40:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1302,"nodeType":"EmitStatement","src":"6365:45:9"},{"expression":{"hexValue":"74727565","id":1303,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6431:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1281,"id":1304,"nodeType":"Return","src":"6424:11:9"}]}}]},"documentation":{"id":1273,"nodeType":"StructuredDocumentation","src":"5951:223:9","text":" @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.\n Internal function without access restriction.\n May emit a {RoleGranted} event."},"id":1311,"implemented":true,"kind":"function","modifiers":[],"name":"_grantRole","nameLocation":"6188:10:9","nodeType":"FunctionDefinition","parameters":{"id":1278,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1275,"mutability":"mutable","name":"role","nameLocation":"6207:4:9","nodeType":"VariableDeclaration","scope":1311,"src":"6199:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1274,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6199:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1277,"mutability":"mutable","name":"account","nameLocation":"6221:7:9","nodeType":"VariableDeclaration","scope":1311,"src":"6213:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1276,"name":"address","nodeType":"ElementaryTypeName","src":"6213:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6198:31:9"},"returnParameters":{"id":1281,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1280,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1311,"src":"6256:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1279,"name":"bool","nodeType":"ElementaryTypeName","src":"6256:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6255:6:9"},"scope":1350,"src":"6179:316:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1348,"nodeType":"Block","src":"6814:233:9","statements":[{"condition":{"arguments":[{"id":1322,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1314,"src":"6836:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1323,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1316,"src":"6842:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1321,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1135,"src":"6828:7:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":1324,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6828:22:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1346,"nodeType":"Block","src":"7004:37:9","statements":[{"expression":{"hexValue":"66616c7365","id":1344,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7025:5:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":1320,"id":1345,"nodeType":"Return","src":"7018:12:9"}]},"id":1347,"nodeType":"IfStatement","src":"6824:217:9","trueBody":{"id":1343,"nodeType":"Block","src":"6852:146:9","statements":[{"expression":{"id":1332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":1325,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1081,"src":"6866:6:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$1076_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":1327,"indexExpression":{"id":1326,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1314,"src":"6873:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6866:12:9","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$1076_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":1328,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6879:7:9","memberName":"hasRole","nodeType":"MemberAccess","referencedDeclaration":1073,"src":"6866:20:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1330,"indexExpression":{"id":1329,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1316,"src":"6887:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6866:29:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":1331,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6898:5:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"6866:37:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1333,"nodeType":"ExpressionStatement","src":"6866:37:9"},{"eventCall":{"arguments":[{"id":1335,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1314,"src":"6934:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1336,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1316,"src":"6940:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":1337,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3080,"src":"6949:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1338,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6949:12:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1334,"name":"RoleRevoked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1390,"src":"6922:11:9","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_address_$returns$__$","typeString":"function (bytes32,address,address)"}},"id":1339,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6922:40:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1340,"nodeType":"EmitStatement","src":"6917:45:9"},{"expression":{"hexValue":"74727565","id":1341,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6983:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1320,"id":1342,"nodeType":"Return","src":"6976:11:9"}]}}]},"documentation":{"id":1312,"nodeType":"StructuredDocumentation","src":"6501:224:9","text":" @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.\n Internal function without access restriction.\n May emit a {RoleRevoked} event."},"id":1349,"implemented":true,"kind":"function","modifiers":[],"name":"_revokeRole","nameLocation":"6739:11:9","nodeType":"FunctionDefinition","parameters":{"id":1317,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1314,"mutability":"mutable","name":"role","nameLocation":"6759:4:9","nodeType":"VariableDeclaration","scope":1349,"src":"6751:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1313,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6751:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1316,"mutability":"mutable","name":"account","nameLocation":"6773:7:9","nodeType":"VariableDeclaration","scope":1349,"src":"6765:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1315,"name":"address","nodeType":"ElementaryTypeName","src":"6765:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6750:31:9"},"returnParameters":{"id":1320,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1319,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1349,"src":"6808:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1318,"name":"bool","nodeType":"ElementaryTypeName","src":"6808:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6807:6:9"},"scope":1350,"src":"6730:317:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":1351,"src":"1953:5096:9","usedErrors":[1360,1363],"usedEvents":[1372,1381,1390]}],"src":"108:6942:9"},"id":9},"@openzeppelin/contracts/access/IAccessControl.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/IAccessControl.sol","exportedSymbols":{"IAccessControl":[1433]},"id":1434,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1352,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:10"},{"abstract":false,"baseContracts":[],"canonicalName":"IAccessControl","contractDependencies":[],"contractKind":"interface","documentation":{"id":1353,"nodeType":"StructuredDocumentation","src":"135:90:10","text":" @dev External interface of AccessControl declared to support ERC-165 detection."},"fullyImplemented":false,"id":1433,"linearizedBaseContracts":[1433],"name":"IAccessControl","nameLocation":"236:14:10","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1354,"nodeType":"StructuredDocumentation","src":"257:56:10","text":" @dev The `account` is missing a role."},"errorSelector":"e2517d3f","id":1360,"name":"AccessControlUnauthorizedAccount","nameLocation":"324:32:10","nodeType":"ErrorDefinition","parameters":{"id":1359,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1356,"mutability":"mutable","name":"account","nameLocation":"365:7:10","nodeType":"VariableDeclaration","scope":1360,"src":"357:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1355,"name":"address","nodeType":"ElementaryTypeName","src":"357:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1358,"mutability":"mutable","name":"neededRole","nameLocation":"382:10:10","nodeType":"VariableDeclaration","scope":1360,"src":"374:18:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1357,"name":"bytes32","nodeType":"ElementaryTypeName","src":"374:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"356:37:10"},"src":"318:76:10"},{"documentation":{"id":1361,"nodeType":"StructuredDocumentation","src":"400:148:10","text":" @dev The caller of a function is not the expected one.\n NOTE: Don't confuse with {AccessControlUnauthorizedAccount}."},"errorSelector":"6697b232","id":1363,"name":"AccessControlBadConfirmation","nameLocation":"559:28:10","nodeType":"ErrorDefinition","parameters":{"id":1362,"nodeType":"ParameterList","parameters":[],"src":"587:2:10"},"src":"553:37:10"},{"anonymous":false,"documentation":{"id":1364,"nodeType":"StructuredDocumentation","src":"596:254:10","text":" @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`\n `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite\n {RoleAdminChanged} not being emitted signaling this."},"eventSelector":"bd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff","id":1372,"name":"RoleAdminChanged","nameLocation":"861:16:10","nodeType":"EventDefinition","parameters":{"id":1371,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1366,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"894:4:10","nodeType":"VariableDeclaration","scope":1372,"src":"878:20:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1365,"name":"bytes32","nodeType":"ElementaryTypeName","src":"878:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1368,"indexed":true,"mutability":"mutable","name":"previousAdminRole","nameLocation":"916:17:10","nodeType":"VariableDeclaration","scope":1372,"src":"900:33:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1367,"name":"bytes32","nodeType":"ElementaryTypeName","src":"900:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1370,"indexed":true,"mutability":"mutable","name":"newAdminRole","nameLocation":"951:12:10","nodeType":"VariableDeclaration","scope":1372,"src":"935:28:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1369,"name":"bytes32","nodeType":"ElementaryTypeName","src":"935:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"877:87:10"},"src":"855:110:10"},{"anonymous":false,"documentation":{"id":1373,"nodeType":"StructuredDocumentation","src":"971:295:10","text":" @dev Emitted when `account` is granted `role`.\n `sender` is the account that originated the contract call. This account bears the admin role (for the granted role).\n Expected in cases where the role was granted using the internal {AccessControl-_grantRole}."},"eventSelector":"2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d","id":1381,"name":"RoleGranted","nameLocation":"1277:11:10","nodeType":"EventDefinition","parameters":{"id":1380,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1375,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"1305:4:10","nodeType":"VariableDeclaration","scope":1381,"src":"1289:20:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1374,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1289:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1377,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1327:7:10","nodeType":"VariableDeclaration","scope":1381,"src":"1311:23:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1376,"name":"address","nodeType":"ElementaryTypeName","src":"1311:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1379,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1352:6:10","nodeType":"VariableDeclaration","scope":1381,"src":"1336:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1378,"name":"address","nodeType":"ElementaryTypeName","src":"1336:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1288:71:10"},"src":"1271:89:10"},{"anonymous":false,"documentation":{"id":1382,"nodeType":"StructuredDocumentation","src":"1366:275:10","text":" @dev Emitted when `account` is revoked `role`.\n `sender` is the account that originated the contract call:\n   - if using `revokeRole`, it is the admin role bearer\n   - if using `renounceRole`, it is the role bearer (i.e. `account`)"},"eventSelector":"f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b","id":1390,"name":"RoleRevoked","nameLocation":"1652:11:10","nodeType":"EventDefinition","parameters":{"id":1389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1384,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"1680:4:10","nodeType":"VariableDeclaration","scope":1390,"src":"1664:20:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1383,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1664:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1386,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1702:7:10","nodeType":"VariableDeclaration","scope":1390,"src":"1686:23:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1385,"name":"address","nodeType":"ElementaryTypeName","src":"1686:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1388,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1727:6:10","nodeType":"VariableDeclaration","scope":1390,"src":"1711:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1387,"name":"address","nodeType":"ElementaryTypeName","src":"1711:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1663:71:10"},"src":"1646:89:10"},{"documentation":{"id":1391,"nodeType":"StructuredDocumentation","src":"1741:76:10","text":" @dev Returns `true` if `account` has been granted `role`."},"functionSelector":"91d14854","id":1400,"implemented":false,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"1831:7:10","nodeType":"FunctionDefinition","parameters":{"id":1396,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1393,"mutability":"mutable","name":"role","nameLocation":"1847:4:10","nodeType":"VariableDeclaration","scope":1400,"src":"1839:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1392,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1839:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1395,"mutability":"mutable","name":"account","nameLocation":"1861:7:10","nodeType":"VariableDeclaration","scope":1400,"src":"1853:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1394,"name":"address","nodeType":"ElementaryTypeName","src":"1853:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1838:31:10"},"returnParameters":{"id":1399,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1398,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1400,"src":"1893:4:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1397,"name":"bool","nodeType":"ElementaryTypeName","src":"1893:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1892:6:10"},"scope":1433,"src":"1822:77:10","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1401,"nodeType":"StructuredDocumentation","src":"1905:184:10","text":" @dev Returns the admin role that controls `role`. See {grantRole} and\n {revokeRole}.\n To change a role's admin, use {AccessControl-_setRoleAdmin}."},"functionSelector":"248a9ca3","id":1408,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"2103:12:10","nodeType":"FunctionDefinition","parameters":{"id":1404,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1403,"mutability":"mutable","name":"role","nameLocation":"2124:4:10","nodeType":"VariableDeclaration","scope":1408,"src":"2116:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1402,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2116:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2115:14:10"},"returnParameters":{"id":1407,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1406,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1408,"src":"2153:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1405,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2153:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2152:9:10"},"scope":1433,"src":"2094:68:10","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1409,"nodeType":"StructuredDocumentation","src":"2168:239:10","text":" @dev Grants `role` to `account`.\n If `account` had not been already granted `role`, emits a {RoleGranted}\n event.\n Requirements:\n - the caller must have ``role``'s admin role."},"functionSelector":"2f2ff15d","id":1416,"implemented":false,"kind":"function","modifiers":[],"name":"grantRole","nameLocation":"2421:9:10","nodeType":"FunctionDefinition","parameters":{"id":1414,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1411,"mutability":"mutable","name":"role","nameLocation":"2439:4:10","nodeType":"VariableDeclaration","scope":1416,"src":"2431:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1410,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2431:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1413,"mutability":"mutable","name":"account","nameLocation":"2453:7:10","nodeType":"VariableDeclaration","scope":1416,"src":"2445:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1412,"name":"address","nodeType":"ElementaryTypeName","src":"2445:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2430:31:10"},"returnParameters":{"id":1415,"nodeType":"ParameterList","parameters":[],"src":"2470:0:10"},"scope":1433,"src":"2412:59:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1417,"nodeType":"StructuredDocumentation","src":"2477:223:10","text":" @dev Revokes `role` from `account`.\n If `account` had been granted `role`, emits a {RoleRevoked} event.\n Requirements:\n - the caller must have ``role``'s admin role."},"functionSelector":"d547741f","id":1424,"implemented":false,"kind":"function","modifiers":[],"name":"revokeRole","nameLocation":"2714:10:10","nodeType":"FunctionDefinition","parameters":{"id":1422,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1419,"mutability":"mutable","name":"role","nameLocation":"2733:4:10","nodeType":"VariableDeclaration","scope":1424,"src":"2725:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1418,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2725:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1421,"mutability":"mutable","name":"account","nameLocation":"2747:7:10","nodeType":"VariableDeclaration","scope":1424,"src":"2739:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1420,"name":"address","nodeType":"ElementaryTypeName","src":"2739:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2724:31:10"},"returnParameters":{"id":1423,"nodeType":"ParameterList","parameters":[],"src":"2764:0:10"},"scope":1433,"src":"2705:60:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1425,"nodeType":"StructuredDocumentation","src":"2771:491:10","text":" @dev Revokes `role` from the calling account.\n Roles are often managed via {grantRole} and {revokeRole}: this function's\n purpose is to provide a mechanism for accounts to lose their privileges\n if they are compromised (such as when a trusted device is misplaced).\n If the calling account had been granted `role`, emits a {RoleRevoked}\n event.\n Requirements:\n - the caller must be `callerConfirmation`."},"functionSelector":"36568abe","id":1432,"implemented":false,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"3276:12:10","nodeType":"FunctionDefinition","parameters":{"id":1430,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1427,"mutability":"mutable","name":"role","nameLocation":"3297:4:10","nodeType":"VariableDeclaration","scope":1432,"src":"3289:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1426,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3289:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1429,"mutability":"mutable","name":"callerConfirmation","nameLocation":"3311:18:10","nodeType":"VariableDeclaration","scope":1432,"src":"3303:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1428,"name":"address","nodeType":"ElementaryTypeName","src":"3303:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3288:42:10"},"returnParameters":{"id":1431,"nodeType":"ParameterList","parameters":[],"src":"3339:0:10"},"scope":1433,"src":"3267:73:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":1434,"src":"226:3116:10","usedErrors":[1360,1363],"usedEvents":[1372,1381,1390]}],"src":"109:3234:10"},"id":10},"@openzeppelin/contracts/access/manager/IAccessManaged.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManaged.sol","exportedSymbols":{"IAccessManaged":[1473]},"id":1474,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1435,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"117:24:11"},{"abstract":false,"baseContracts":[],"canonicalName":"IAccessManaged","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":1473,"linearizedBaseContracts":[1473],"name":"IAccessManaged","nameLocation":"153:14:11","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":1436,"nodeType":"StructuredDocumentation","src":"174:73:11","text":" @dev Authority that manages this contract was updated."},"eventSelector":"2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad","id":1440,"name":"AuthorityUpdated","nameLocation":"258:16:11","nodeType":"EventDefinition","parameters":{"id":1439,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1438,"indexed":false,"mutability":"mutable","name":"authority","nameLocation":"283:9:11","nodeType":"VariableDeclaration","scope":1440,"src":"275:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1437,"name":"address","nodeType":"ElementaryTypeName","src":"275:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"274:19:11"},"src":"252:42:11"},{"errorSelector":"068ca9d8","id":1444,"name":"AccessManagedUnauthorized","nameLocation":"306:25:11","nodeType":"ErrorDefinition","parameters":{"id":1443,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1442,"mutability":"mutable","name":"caller","nameLocation":"340:6:11","nodeType":"VariableDeclaration","scope":1444,"src":"332:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1441,"name":"address","nodeType":"ElementaryTypeName","src":"332:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"331:16:11"},"src":"300:48:11"},{"errorSelector":"af77169d","id":1450,"name":"AccessManagedRequiredDelay","nameLocation":"359:26:11","nodeType":"ErrorDefinition","parameters":{"id":1449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1446,"mutability":"mutable","name":"caller","nameLocation":"394:6:11","nodeType":"VariableDeclaration","scope":1450,"src":"386:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1445,"name":"address","nodeType":"ElementaryTypeName","src":"386:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1448,"mutability":"mutable","name":"delay","nameLocation":"409:5:11","nodeType":"VariableDeclaration","scope":1450,"src":"402:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1447,"name":"uint32","nodeType":"ElementaryTypeName","src":"402:6:11","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"385:30:11"},"src":"353:63:11"},{"errorSelector":"c2f31e5e","id":1454,"name":"AccessManagedInvalidAuthority","nameLocation":"427:29:11","nodeType":"ErrorDefinition","parameters":{"id":1453,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1452,"mutability":"mutable","name":"authority","nameLocation":"465:9:11","nodeType":"VariableDeclaration","scope":1454,"src":"457:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1451,"name":"address","nodeType":"ElementaryTypeName","src":"457:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"456:19:11"},"src":"421:55:11"},{"documentation":{"id":1455,"nodeType":"StructuredDocumentation","src":"482:54:11","text":" @dev Returns the current authority."},"functionSelector":"bf7e214f","id":1460,"implemented":false,"kind":"function","modifiers":[],"name":"authority","nameLocation":"550:9:11","nodeType":"FunctionDefinition","parameters":{"id":1456,"nodeType":"ParameterList","parameters":[],"src":"559:2:11"},"returnParameters":{"id":1459,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1458,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1460,"src":"585:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1457,"name":"address","nodeType":"ElementaryTypeName","src":"585:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"584:9:11"},"scope":1473,"src":"541:53:11","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1461,"nodeType":"StructuredDocumentation","src":"600:103:11","text":" @dev Transfers control to a new authority. The caller must be the current authority."},"functionSelector":"7a9e5e4b","id":1466,"implemented":false,"kind":"function","modifiers":[],"name":"setAuthority","nameLocation":"717:12:11","nodeType":"FunctionDefinition","parameters":{"id":1464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1463,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1466,"src":"730:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1462,"name":"address","nodeType":"ElementaryTypeName","src":"730:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"729:9:11"},"returnParameters":{"id":1465,"nodeType":"ParameterList","parameters":[],"src":"747:0:11"},"scope":1473,"src":"708:40:11","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1467,"nodeType":"StructuredDocumentation","src":"754:284:11","text":" @dev Returns true only in the context of a delayed restricted call, at the moment that the scheduled operation is\n being consumed. Prevents denial of service for delayed restricted calls in the case that the contract performs\n attacker controlled calls."},"functionSelector":"8fb36037","id":1472,"implemented":false,"kind":"function","modifiers":[],"name":"isConsumingScheduledOp","nameLocation":"1052:22:11","nodeType":"FunctionDefinition","parameters":{"id":1468,"nodeType":"ParameterList","parameters":[],"src":"1074:2:11"},"returnParameters":{"id":1471,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1470,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1472,"src":"1100:6:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1469,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1100:6:11","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1099:8:11"},"scope":1473,"src":"1043:65:11","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":1474,"src":"143:967:11","usedErrors":[1444,1450,1454],"usedEvents":[1440]}],"src":"117:994:11"},"id":11},"@openzeppelin/contracts/access/manager/IAccessManager.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","exportedSymbols":{"IAccessManager":[1905],"Time":[8706]},"id":1906,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1475,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"117:24:12"},{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","file":"../../utils/types/Time.sol","id":1477,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1906,"sourceUnit":8707,"src":"143:48:12","symbolAliases":[{"foreign":{"id":1476,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8706,"src":"151:4:12","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IAccessManager","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":1905,"linearizedBaseContracts":[1905],"name":"IAccessManager","nameLocation":"203:14:12","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":1478,"nodeType":"StructuredDocumentation","src":"224:58:12","text":" @dev A delayed operation was scheduled."},"eventSelector":"82a2da5dee54ea8021c6545b4444620291e07ee83be6dd57edb175062715f3b4","id":1492,"name":"OperationScheduled","nameLocation":"293:18:12","nodeType":"EventDefinition","parameters":{"id":1491,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1480,"indexed":true,"mutability":"mutable","name":"operationId","nameLocation":"337:11:12","nodeType":"VariableDeclaration","scope":1492,"src":"321:27:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1479,"name":"bytes32","nodeType":"ElementaryTypeName","src":"321:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1482,"indexed":true,"mutability":"mutable","name":"nonce","nameLocation":"373:5:12","nodeType":"VariableDeclaration","scope":1492,"src":"358:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1481,"name":"uint32","nodeType":"ElementaryTypeName","src":"358:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":1484,"indexed":false,"mutability":"mutable","name":"schedule","nameLocation":"395:8:12","nodeType":"VariableDeclaration","scope":1492,"src":"388:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":1483,"name":"uint48","nodeType":"ElementaryTypeName","src":"388:6:12","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":1486,"indexed":false,"mutability":"mutable","name":"caller","nameLocation":"421:6:12","nodeType":"VariableDeclaration","scope":1492,"src":"413:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1485,"name":"address","nodeType":"ElementaryTypeName","src":"413:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1488,"indexed":false,"mutability":"mutable","name":"target","nameLocation":"445:6:12","nodeType":"VariableDeclaration","scope":1492,"src":"437:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1487,"name":"address","nodeType":"ElementaryTypeName","src":"437:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1490,"indexed":false,"mutability":"mutable","name":"data","nameLocation":"467:4:12","nodeType":"VariableDeclaration","scope":1492,"src":"461:10:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1489,"name":"bytes","nodeType":"ElementaryTypeName","src":"461:5:12","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"311:166:12"},"src":"287:191:12"},{"anonymous":false,"documentation":{"id":1493,"nodeType":"StructuredDocumentation","src":"484:59:12","text":" @dev A scheduled operation was executed."},"eventSelector":"76a2a46953689d4861a5d3f6ed883ad7e6af674a21f8e162707159fc9dde614d","id":1499,"name":"OperationExecuted","nameLocation":"554:17:12","nodeType":"EventDefinition","parameters":{"id":1498,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1495,"indexed":true,"mutability":"mutable","name":"operationId","nameLocation":"588:11:12","nodeType":"VariableDeclaration","scope":1499,"src":"572:27:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1494,"name":"bytes32","nodeType":"ElementaryTypeName","src":"572:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1497,"indexed":true,"mutability":"mutable","name":"nonce","nameLocation":"616:5:12","nodeType":"VariableDeclaration","scope":1499,"src":"601:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1496,"name":"uint32","nodeType":"ElementaryTypeName","src":"601:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"571:51:12"},"src":"548:75:12"},{"anonymous":false,"documentation":{"id":1500,"nodeType":"StructuredDocumentation","src":"629:59:12","text":" @dev A scheduled operation was canceled."},"eventSelector":"bd9ac67a6e2f6463b80927326310338bcbb4bdb7936ce1365ea3e01067e7b9f7","id":1506,"name":"OperationCanceled","nameLocation":"699:17:12","nodeType":"EventDefinition","parameters":{"id":1505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1502,"indexed":true,"mutability":"mutable","name":"operationId","nameLocation":"733:11:12","nodeType":"VariableDeclaration","scope":1506,"src":"717:27:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1501,"name":"bytes32","nodeType":"ElementaryTypeName","src":"717:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1504,"indexed":true,"mutability":"mutable","name":"nonce","nameLocation":"761:5:12","nodeType":"VariableDeclaration","scope":1506,"src":"746:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1503,"name":"uint32","nodeType":"ElementaryTypeName","src":"746:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"716:51:12"},"src":"693:75:12"},{"anonymous":false,"documentation":{"id":1507,"nodeType":"StructuredDocumentation","src":"774:61:12","text":" @dev Informational labelling for a roleId."},"eventSelector":"1256f5b5ecb89caec12db449738f2fbcd1ba5806cf38f35413f4e5c15bf6a450","id":1513,"name":"RoleLabel","nameLocation":"846:9:12","nodeType":"EventDefinition","parameters":{"id":1512,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1509,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"871:6:12","nodeType":"VariableDeclaration","scope":1513,"src":"856:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1508,"name":"uint64","nodeType":"ElementaryTypeName","src":"856:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1511,"indexed":false,"mutability":"mutable","name":"label","nameLocation":"886:5:12","nodeType":"VariableDeclaration","scope":1513,"src":"879:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1510,"name":"string","nodeType":"ElementaryTypeName","src":"879:6:12","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"855:37:12"},"src":"840:53:12"},{"anonymous":false,"documentation":{"id":1514,"nodeType":"StructuredDocumentation","src":"899:375:12","text":" @dev Emitted when `account` is granted `roleId`.\n NOTE: The meaning of the `since` argument depends on the `newMember` argument.\n If the role is granted to a new member, the `since` argument indicates when the account becomes a member of the role,\n otherwise it indicates the execution delay for this account and roleId is updated."},"eventSelector":"f98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf","id":1526,"name":"RoleGranted","nameLocation":"1285:11:12","nodeType":"EventDefinition","parameters":{"id":1525,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1516,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"1312:6:12","nodeType":"VariableDeclaration","scope":1526,"src":"1297:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1515,"name":"uint64","nodeType":"ElementaryTypeName","src":"1297:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1518,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1336:7:12","nodeType":"VariableDeclaration","scope":1526,"src":"1320:23:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1517,"name":"address","nodeType":"ElementaryTypeName","src":"1320:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1520,"indexed":false,"mutability":"mutable","name":"delay","nameLocation":"1352:5:12","nodeType":"VariableDeclaration","scope":1526,"src":"1345:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1519,"name":"uint32","nodeType":"ElementaryTypeName","src":"1345:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":1522,"indexed":false,"mutability":"mutable","name":"since","nameLocation":"1366:5:12","nodeType":"VariableDeclaration","scope":1526,"src":"1359:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":1521,"name":"uint48","nodeType":"ElementaryTypeName","src":"1359:6:12","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":1524,"indexed":false,"mutability":"mutable","name":"newMember","nameLocation":"1378:9:12","nodeType":"VariableDeclaration","scope":1526,"src":"1373:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1523,"name":"bool","nodeType":"ElementaryTypeName","src":"1373:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1296:92:12"},"src":"1279:110:12"},{"anonymous":false,"documentation":{"id":1527,"nodeType":"StructuredDocumentation","src":"1395:125:12","text":" @dev Emitted when `account` membership or `roleId` is revoked. Unlike granting, revoking is instantaneous."},"eventSelector":"f229baa593af28c41b1d16b748cd7688f0c83aaf92d4be41c44005defe84c166","id":1533,"name":"RoleRevoked","nameLocation":"1531:11:12","nodeType":"EventDefinition","parameters":{"id":1532,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1529,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"1558:6:12","nodeType":"VariableDeclaration","scope":1533,"src":"1543:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1528,"name":"uint64","nodeType":"ElementaryTypeName","src":"1543:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1531,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1582:7:12","nodeType":"VariableDeclaration","scope":1533,"src":"1566:23:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1530,"name":"address","nodeType":"ElementaryTypeName","src":"1566:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1542:48:12"},"src":"1525:66:12"},{"anonymous":false,"documentation":{"id":1534,"nodeType":"StructuredDocumentation","src":"1597:78:12","text":" @dev Role acting as admin over a given `roleId` is updated."},"eventSelector":"1fd6dd7631312dfac2205b52913f99de03b4d7e381d5d27d3dbfe0713e6e6340","id":1540,"name":"RoleAdminChanged","nameLocation":"1686:16:12","nodeType":"EventDefinition","parameters":{"id":1539,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1536,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"1718:6:12","nodeType":"VariableDeclaration","scope":1540,"src":"1703:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1535,"name":"uint64","nodeType":"ElementaryTypeName","src":"1703:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1538,"indexed":true,"mutability":"mutable","name":"admin","nameLocation":"1741:5:12","nodeType":"VariableDeclaration","scope":1540,"src":"1726:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1537,"name":"uint64","nodeType":"ElementaryTypeName","src":"1726:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"1702:45:12"},"src":"1680:68:12"},{"anonymous":false,"documentation":{"id":1541,"nodeType":"StructuredDocumentation","src":"1754:81:12","text":" @dev Role acting as guardian over a given `roleId` is updated."},"eventSelector":"7a8059630b897b5de4c08ade69f8b90c3ead1f8596d62d10b6c4d14a0afb4ae2","id":1547,"name":"RoleGuardianChanged","nameLocation":"1846:19:12","nodeType":"EventDefinition","parameters":{"id":1546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1543,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"1881:6:12","nodeType":"VariableDeclaration","scope":1547,"src":"1866:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1542,"name":"uint64","nodeType":"ElementaryTypeName","src":"1866:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1545,"indexed":true,"mutability":"mutable","name":"guardian","nameLocation":"1904:8:12","nodeType":"VariableDeclaration","scope":1547,"src":"1889:23:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1544,"name":"uint64","nodeType":"ElementaryTypeName","src":"1889:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"1865:48:12"},"src":"1840:74:12"},{"anonymous":false,"documentation":{"id":1548,"nodeType":"StructuredDocumentation","src":"1920:108:12","text":" @dev Grant delay for a given `roleId` will be updated to `delay` when `since` is reached."},"eventSelector":"feb69018ee8b8fd50ea86348f1267d07673379f72cffdeccec63853ee8ce8b48","id":1556,"name":"RoleGrantDelayChanged","nameLocation":"2039:21:12","nodeType":"EventDefinition","parameters":{"id":1555,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1550,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"2076:6:12","nodeType":"VariableDeclaration","scope":1556,"src":"2061:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1549,"name":"uint64","nodeType":"ElementaryTypeName","src":"2061:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1552,"indexed":false,"mutability":"mutable","name":"delay","nameLocation":"2091:5:12","nodeType":"VariableDeclaration","scope":1556,"src":"2084:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1551,"name":"uint32","nodeType":"ElementaryTypeName","src":"2084:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":1554,"indexed":false,"mutability":"mutable","name":"since","nameLocation":"2105:5:12","nodeType":"VariableDeclaration","scope":1556,"src":"2098:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":1553,"name":"uint48","nodeType":"ElementaryTypeName","src":"2098:6:12","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2060:51:12"},"src":"2033:79:12"},{"anonymous":false,"documentation":{"id":1557,"nodeType":"StructuredDocumentation","src":"2118:77:12","text":" @dev Target mode is updated (true = closed, false = open)."},"eventSelector":"90d4e7bb7e5d933792b3562e1741306f8be94837e1348dacef9b6f1df56eb138","id":1563,"name":"TargetClosed","nameLocation":"2206:12:12","nodeType":"EventDefinition","parameters":{"id":1562,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1559,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"2235:6:12","nodeType":"VariableDeclaration","scope":1563,"src":"2219:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1558,"name":"address","nodeType":"ElementaryTypeName","src":"2219:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1561,"indexed":false,"mutability":"mutable","name":"closed","nameLocation":"2248:6:12","nodeType":"VariableDeclaration","scope":1563,"src":"2243:11:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1560,"name":"bool","nodeType":"ElementaryTypeName","src":"2243:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2218:37:12"},"src":"2200:56:12"},{"anonymous":false,"documentation":{"id":1564,"nodeType":"StructuredDocumentation","src":"2262:94:12","text":" @dev Role required to invoke `selector` on `target` is updated to `roleId`."},"eventSelector":"9ea6790c7dadfd01c9f8b9762b3682607af2c7e79e05a9f9fdf5580dde949151","id":1572,"name":"TargetFunctionRoleUpdated","nameLocation":"2367:25:12","nodeType":"EventDefinition","parameters":{"id":1571,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1566,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"2409:6:12","nodeType":"VariableDeclaration","scope":1572,"src":"2393:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1565,"name":"address","nodeType":"ElementaryTypeName","src":"2393:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1568,"indexed":false,"mutability":"mutable","name":"selector","nameLocation":"2424:8:12","nodeType":"VariableDeclaration","scope":1572,"src":"2417:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1567,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2417:6:12","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":1570,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"2449:6:12","nodeType":"VariableDeclaration","scope":1572,"src":"2434:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1569,"name":"uint64","nodeType":"ElementaryTypeName","src":"2434:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"2392:64:12"},"src":"2361:96:12"},{"anonymous":false,"documentation":{"id":1573,"nodeType":"StructuredDocumentation","src":"2463:108:12","text":" @dev Admin delay for a given `target` will be updated to `delay` when `since` is reached."},"eventSelector":"a56b76017453f399ec2327ba00375dbfb1fd070ff854341ad6191e6a2e2de19c","id":1581,"name":"TargetAdminDelayUpdated","nameLocation":"2582:23:12","nodeType":"EventDefinition","parameters":{"id":1580,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1575,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"2622:6:12","nodeType":"VariableDeclaration","scope":1581,"src":"2606:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1574,"name":"address","nodeType":"ElementaryTypeName","src":"2606:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1577,"indexed":false,"mutability":"mutable","name":"delay","nameLocation":"2637:5:12","nodeType":"VariableDeclaration","scope":1581,"src":"2630:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1576,"name":"uint32","nodeType":"ElementaryTypeName","src":"2630:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":1579,"indexed":false,"mutability":"mutable","name":"since","nameLocation":"2651:5:12","nodeType":"VariableDeclaration","scope":1581,"src":"2644:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":1578,"name":"uint48","nodeType":"ElementaryTypeName","src":"2644:6:12","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2605:52:12"},"src":"2576:82:12"},{"errorSelector":"813e9459","id":1585,"name":"AccessManagerAlreadyScheduled","nameLocation":"2670:29:12","nodeType":"ErrorDefinition","parameters":{"id":1584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1583,"mutability":"mutable","name":"operationId","nameLocation":"2708:11:12","nodeType":"VariableDeclaration","scope":1585,"src":"2700:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1582,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2700:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2699:21:12"},"src":"2664:57:12"},{"errorSelector":"60a299b0","id":1589,"name":"AccessManagerNotScheduled","nameLocation":"2732:25:12","nodeType":"ErrorDefinition","parameters":{"id":1588,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1587,"mutability":"mutable","name":"operationId","nameLocation":"2766:11:12","nodeType":"VariableDeclaration","scope":1589,"src":"2758:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1586,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2758:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2757:21:12"},"src":"2726:53:12"},{"errorSelector":"18cb6b7a","id":1593,"name":"AccessManagerNotReady","nameLocation":"2790:21:12","nodeType":"ErrorDefinition","parameters":{"id":1592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1591,"mutability":"mutable","name":"operationId","nameLocation":"2820:11:12","nodeType":"VariableDeclaration","scope":1593,"src":"2812:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1590,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2812:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2811:21:12"},"src":"2784:49:12"},{"errorSelector":"78a5d6e4","id":1597,"name":"AccessManagerExpired","nameLocation":"2844:20:12","nodeType":"ErrorDefinition","parameters":{"id":1596,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1595,"mutability":"mutable","name":"operationId","nameLocation":"2873:11:12","nodeType":"VariableDeclaration","scope":1597,"src":"2865:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1594,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2865:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2864:21:12"},"src":"2838:48:12"},{"errorSelector":"1871a90c","id":1601,"name":"AccessManagerLockedRole","nameLocation":"2897:23:12","nodeType":"ErrorDefinition","parameters":{"id":1600,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1599,"mutability":"mutable","name":"roleId","nameLocation":"2928:6:12","nodeType":"VariableDeclaration","scope":1601,"src":"2921:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1598,"name":"uint64","nodeType":"ElementaryTypeName","src":"2921:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"2920:15:12"},"src":"2891:45:12"},{"errorSelector":"5f159e63","id":1603,"name":"AccessManagerBadConfirmation","nameLocation":"2947:28:12","nodeType":"ErrorDefinition","parameters":{"id":1602,"nodeType":"ParameterList","parameters":[],"src":"2975:2:12"},"src":"2941:37:12"},{"errorSelector":"f07e038f","id":1609,"name":"AccessManagerUnauthorizedAccount","nameLocation":"2989:32:12","nodeType":"ErrorDefinition","parameters":{"id":1608,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1605,"mutability":"mutable","name":"msgsender","nameLocation":"3030:9:12","nodeType":"VariableDeclaration","scope":1609,"src":"3022:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1604,"name":"address","nodeType":"ElementaryTypeName","src":"3022:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1607,"mutability":"mutable","name":"roleId","nameLocation":"3048:6:12","nodeType":"VariableDeclaration","scope":1609,"src":"3041:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1606,"name":"uint64","nodeType":"ElementaryTypeName","src":"3041:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"3021:34:12"},"src":"2983:73:12"},{"errorSelector":"81c6f24b","id":1617,"name":"AccessManagerUnauthorizedCall","nameLocation":"3067:29:12","nodeType":"ErrorDefinition","parameters":{"id":1616,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1611,"mutability":"mutable","name":"caller","nameLocation":"3105:6:12","nodeType":"VariableDeclaration","scope":1617,"src":"3097:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1610,"name":"address","nodeType":"ElementaryTypeName","src":"3097:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1613,"mutability":"mutable","name":"target","nameLocation":"3121:6:12","nodeType":"VariableDeclaration","scope":1617,"src":"3113:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1612,"name":"address","nodeType":"ElementaryTypeName","src":"3113:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1615,"mutability":"mutable","name":"selector","nameLocation":"3136:8:12","nodeType":"VariableDeclaration","scope":1617,"src":"3129:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1614,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3129:6:12","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3096:49:12"},"src":"3061:85:12"},{"errorSelector":"320ff748","id":1621,"name":"AccessManagerUnauthorizedConsume","nameLocation":"3157:32:12","nodeType":"ErrorDefinition","parameters":{"id":1620,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1619,"mutability":"mutable","name":"target","nameLocation":"3198:6:12","nodeType":"VariableDeclaration","scope":1621,"src":"3190:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1618,"name":"address","nodeType":"ElementaryTypeName","src":"3190:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3189:16:12"},"src":"3151:55:12"},{"errorSelector":"3fe2751c","id":1631,"name":"AccessManagerUnauthorizedCancel","nameLocation":"3217:31:12","nodeType":"ErrorDefinition","parameters":{"id":1630,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1623,"mutability":"mutable","name":"msgsender","nameLocation":"3257:9:12","nodeType":"VariableDeclaration","scope":1631,"src":"3249:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1622,"name":"address","nodeType":"ElementaryTypeName","src":"3249:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1625,"mutability":"mutable","name":"caller","nameLocation":"3276:6:12","nodeType":"VariableDeclaration","scope":1631,"src":"3268:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1624,"name":"address","nodeType":"ElementaryTypeName","src":"3268:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1627,"mutability":"mutable","name":"target","nameLocation":"3292:6:12","nodeType":"VariableDeclaration","scope":1631,"src":"3284:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1626,"name":"address","nodeType":"ElementaryTypeName","src":"3284:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1629,"mutability":"mutable","name":"selector","nameLocation":"3307:8:12","nodeType":"VariableDeclaration","scope":1631,"src":"3300:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1628,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3300:6:12","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3248:68:12"},"src":"3211:106:12"},{"errorSelector":"0813ada2","id":1635,"name":"AccessManagerInvalidInitialAdmin","nameLocation":"3328:32:12","nodeType":"ErrorDefinition","parameters":{"id":1634,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1633,"mutability":"mutable","name":"initialAdmin","nameLocation":"3369:12:12","nodeType":"VariableDeclaration","scope":1635,"src":"3361:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1632,"name":"address","nodeType":"ElementaryTypeName","src":"3361:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3360:22:12"},"src":"3322:61:12"},{"documentation":{"id":1636,"nodeType":"StructuredDocumentation","src":"3389:1393:12","text":" @dev Check if an address (`caller`) is authorised to call a given function on a given contract directly (with\n no restriction). Additionally, it returns the delay needed to perform the call indirectly through the {schedule}\n & {execute} workflow.\n This function is usually called by the targeted contract to control immediate execution of restricted functions.\n Therefore we only return true if the call can be performed without any delay. If the call is subject to a\n previously set delay (not zero), then the function should return false and the caller should schedule the operation\n for future execution.\n If `immediate` is true, the delay can be disregarded and the operation can be immediately executed, otherwise\n the operation can be executed if and only if delay is greater than 0.\n NOTE: The IAuthority interface does not include the `uint32` delay. This is an extension of that interface that\n is backward compatible. Some contracts may thus ignore the second return argument. In that case they will fail\n to identify the indirect workflow, and will consider calls that require a delay to be forbidden.\n NOTE: This function does not report the permissions of the admin functions in the manager itself. These are defined by the\n {AccessManager} documentation."},"functionSelector":"b7009613","id":1649,"implemented":false,"kind":"function","modifiers":[],"name":"canCall","nameLocation":"4796:7:12","nodeType":"FunctionDefinition","parameters":{"id":1643,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1638,"mutability":"mutable","name":"caller","nameLocation":"4821:6:12","nodeType":"VariableDeclaration","scope":1649,"src":"4813:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1637,"name":"address","nodeType":"ElementaryTypeName","src":"4813:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1640,"mutability":"mutable","name":"target","nameLocation":"4845:6:12","nodeType":"VariableDeclaration","scope":1649,"src":"4837:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1639,"name":"address","nodeType":"ElementaryTypeName","src":"4837:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1642,"mutability":"mutable","name":"selector","nameLocation":"4868:8:12","nodeType":"VariableDeclaration","scope":1649,"src":"4861:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1641,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4861:6:12","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"4803:79:12"},"returnParameters":{"id":1648,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1645,"mutability":"mutable","name":"allowed","nameLocation":"4911:7:12","nodeType":"VariableDeclaration","scope":1649,"src":"4906:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1644,"name":"bool","nodeType":"ElementaryTypeName","src":"4906:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1647,"mutability":"mutable","name":"delay","nameLocation":"4927:5:12","nodeType":"VariableDeclaration","scope":1649,"src":"4920:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1646,"name":"uint32","nodeType":"ElementaryTypeName","src":"4920:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"4905:28:12"},"scope":1905,"src":"4787:147:12","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1650,"nodeType":"StructuredDocumentation","src":"4940:252:12","text":" @dev Expiration delay for scheduled proposals. Defaults to 1 week.\n IMPORTANT: Avoid overriding the expiration with 0. Otherwise every contract proposal will be expired immediately,\n disabling any scheduling usage."},"functionSelector":"4665096d","id":1655,"implemented":false,"kind":"function","modifiers":[],"name":"expiration","nameLocation":"5206:10:12","nodeType":"FunctionDefinition","parameters":{"id":1651,"nodeType":"ParameterList","parameters":[],"src":"5216:2:12"},"returnParameters":{"id":1654,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1653,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1655,"src":"5242:6:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1652,"name":"uint32","nodeType":"ElementaryTypeName","src":"5242:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"5241:8:12"},"scope":1905,"src":"5197:53:12","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1656,"nodeType":"StructuredDocumentation","src":"5256:246:12","text":" @dev Minimum setback for all delay updates, with the exception of execution delays. It\n can be increased without setback (and reset via {revokeRole} in the case event of an\n accidental increase). Defaults to 5 days."},"functionSelector":"cc1b6c81","id":1661,"implemented":false,"kind":"function","modifiers":[],"name":"minSetback","nameLocation":"5516:10:12","nodeType":"FunctionDefinition","parameters":{"id":1657,"nodeType":"ParameterList","parameters":[],"src":"5526:2:12"},"returnParameters":{"id":1660,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1659,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1661,"src":"5552:6:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1658,"name":"uint32","nodeType":"ElementaryTypeName","src":"5552:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"5551:8:12"},"scope":1905,"src":"5507:53:12","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1662,"nodeType":"StructuredDocumentation","src":"5566:243:12","text":" @dev Get whether the contract is closed disabling any access. Otherwise role permissions are applied.\n NOTE: When the manager itself is closed, admin functions are still accessible to avoid locking the contract."},"functionSelector":"a166aa89","id":1669,"implemented":false,"kind":"function","modifiers":[],"name":"isTargetClosed","nameLocation":"5823:14:12","nodeType":"FunctionDefinition","parameters":{"id":1665,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1664,"mutability":"mutable","name":"target","nameLocation":"5846:6:12","nodeType":"VariableDeclaration","scope":1669,"src":"5838:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1663,"name":"address","nodeType":"ElementaryTypeName","src":"5838:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5837:16:12"},"returnParameters":{"id":1668,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1667,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1669,"src":"5877:4:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1666,"name":"bool","nodeType":"ElementaryTypeName","src":"5877:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5876:6:12"},"scope":1905,"src":"5814:69:12","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1670,"nodeType":"StructuredDocumentation","src":"5889:65:12","text":" @dev Get the role required to call a function."},"functionSelector":"6d5115bd","id":1679,"implemented":false,"kind":"function","modifiers":[],"name":"getTargetFunctionRole","nameLocation":"5968:21:12","nodeType":"FunctionDefinition","parameters":{"id":1675,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1672,"mutability":"mutable","name":"target","nameLocation":"5998:6:12","nodeType":"VariableDeclaration","scope":1679,"src":"5990:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1671,"name":"address","nodeType":"ElementaryTypeName","src":"5990:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1674,"mutability":"mutable","name":"selector","nameLocation":"6013:8:12","nodeType":"VariableDeclaration","scope":1679,"src":"6006:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1673,"name":"bytes4","nodeType":"ElementaryTypeName","src":"6006:6:12","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"5989:33:12"},"returnParameters":{"id":1678,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1677,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1679,"src":"6046:6:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1676,"name":"uint64","nodeType":"ElementaryTypeName","src":"6046:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6045:8:12"},"scope":1905,"src":"5959:95:12","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1680,"nodeType":"StructuredDocumentation","src":"6060:127:12","text":" @dev Get the admin delay for a target contract. Changes to contract configuration are subject to this delay."},"functionSelector":"4c1da1e2","id":1687,"implemented":false,"kind":"function","modifiers":[],"name":"getTargetAdminDelay","nameLocation":"6201:19:12","nodeType":"FunctionDefinition","parameters":{"id":1683,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1682,"mutability":"mutable","name":"target","nameLocation":"6229:6:12","nodeType":"VariableDeclaration","scope":1687,"src":"6221:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1681,"name":"address","nodeType":"ElementaryTypeName","src":"6221:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6220:16:12"},"returnParameters":{"id":1686,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1685,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1687,"src":"6260:6:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1684,"name":"uint32","nodeType":"ElementaryTypeName","src":"6260:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"6259:8:12"},"scope":1905,"src":"6192:76:12","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1688,"nodeType":"StructuredDocumentation","src":"6274:265:12","text":" @dev Get the id of the role that acts as an admin for the given role.\n The admin permission is required to grant the role, revoke the role and update the execution delay to execute\n an operation that is restricted to this role."},"functionSelector":"530dd456","id":1695,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"6553:12:12","nodeType":"FunctionDefinition","parameters":{"id":1691,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1690,"mutability":"mutable","name":"roleId","nameLocation":"6573:6:12","nodeType":"VariableDeclaration","scope":1695,"src":"6566:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1689,"name":"uint64","nodeType":"ElementaryTypeName","src":"6566:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6565:15:12"},"returnParameters":{"id":1694,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1693,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1695,"src":"6604:6:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1692,"name":"uint64","nodeType":"ElementaryTypeName","src":"6604:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6603:8:12"},"scope":1905,"src":"6544:68:12","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1696,"nodeType":"StructuredDocumentation","src":"6618:185:12","text":" @dev Get the role that acts as a guardian for a given role.\n The guardian permission allows canceling operations that have been scheduled under the role."},"functionSelector":"0b0a93ba","id":1703,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleGuardian","nameLocation":"6817:15:12","nodeType":"FunctionDefinition","parameters":{"id":1699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1698,"mutability":"mutable","name":"roleId","nameLocation":"6840:6:12","nodeType":"VariableDeclaration","scope":1703,"src":"6833:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1697,"name":"uint64","nodeType":"ElementaryTypeName","src":"6833:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6832:15:12"},"returnParameters":{"id":1702,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1701,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1703,"src":"6871:6:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1700,"name":"uint64","nodeType":"ElementaryTypeName","src":"6871:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6870:8:12"},"scope":1905,"src":"6808:71:12","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1704,"nodeType":"StructuredDocumentation","src":"6885:286:12","text":" @dev Get the role current grant delay.\n Its value may change at any point without an event emitted following a call to {setGrantDelay}.\n Changes to this value, including effect timepoint are notified in advance by the {RoleGrantDelayChanged} event."},"functionSelector":"12be8727","id":1711,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleGrantDelay","nameLocation":"7185:17:12","nodeType":"FunctionDefinition","parameters":{"id":1707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1706,"mutability":"mutable","name":"roleId","nameLocation":"7210:6:12","nodeType":"VariableDeclaration","scope":1711,"src":"7203:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1705,"name":"uint64","nodeType":"ElementaryTypeName","src":"7203:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"7202:15:12"},"returnParameters":{"id":1710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1709,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1711,"src":"7241:6:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1708,"name":"uint32","nodeType":"ElementaryTypeName","src":"7241:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"7240:8:12"},"scope":1905,"src":"7176:73:12","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1712,"nodeType":"StructuredDocumentation","src":"7255:599:12","text":" @dev Get the access details for a given account for a given role. These details include the timepoint at which\n membership becomes active, and the delay applied to all operation by this user that requires this permission\n level.\n Returns:\n [0] Timestamp at which the account membership becomes valid. 0 means role is not granted.\n [1] Current execution delay for the account.\n [2] Pending execution delay for the account.\n [3] Timestamp at which the pending execution delay will become active. 0 means no delay update is scheduled."},"functionSelector":"3078f114","id":1727,"implemented":false,"kind":"function","modifiers":[],"name":"getAccess","nameLocation":"7868:9:12","nodeType":"FunctionDefinition","parameters":{"id":1717,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1714,"mutability":"mutable","name":"roleId","nameLocation":"7894:6:12","nodeType":"VariableDeclaration","scope":1727,"src":"7887:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1713,"name":"uint64","nodeType":"ElementaryTypeName","src":"7887:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1716,"mutability":"mutable","name":"account","nameLocation":"7918:7:12","nodeType":"VariableDeclaration","scope":1727,"src":"7910:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1715,"name":"address","nodeType":"ElementaryTypeName","src":"7910:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7877:54:12"},"returnParameters":{"id":1726,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1719,"mutability":"mutable","name":"since","nameLocation":"7962:5:12","nodeType":"VariableDeclaration","scope":1727,"src":"7955:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":1718,"name":"uint48","nodeType":"ElementaryTypeName","src":"7955:6:12","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":1721,"mutability":"mutable","name":"currentDelay","nameLocation":"7976:12:12","nodeType":"VariableDeclaration","scope":1727,"src":"7969:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1720,"name":"uint32","nodeType":"ElementaryTypeName","src":"7969:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":1723,"mutability":"mutable","name":"pendingDelay","nameLocation":"7997:12:12","nodeType":"VariableDeclaration","scope":1727,"src":"7990:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1722,"name":"uint32","nodeType":"ElementaryTypeName","src":"7990:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":1725,"mutability":"mutable","name":"effect","nameLocation":"8018:6:12","nodeType":"VariableDeclaration","scope":1727,"src":"8011:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":1724,"name":"uint48","nodeType":"ElementaryTypeName","src":"8011:6:12","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"7954:71:12"},"scope":1905,"src":"7859:167:12","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1728,"nodeType":"StructuredDocumentation","src":"8032:230:12","text":" @dev Check if a given account currently has the permission level corresponding to a given role. Note that this\n permission might be associated with an execution delay. {getAccess} can provide more details."},"functionSelector":"d1f856ee","id":1739,"implemented":false,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"8276:7:12","nodeType":"FunctionDefinition","parameters":{"id":1733,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1730,"mutability":"mutable","name":"roleId","nameLocation":"8291:6:12","nodeType":"VariableDeclaration","scope":1739,"src":"8284:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1729,"name":"uint64","nodeType":"ElementaryTypeName","src":"8284:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1732,"mutability":"mutable","name":"account","nameLocation":"8307:7:12","nodeType":"VariableDeclaration","scope":1739,"src":"8299:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1731,"name":"address","nodeType":"ElementaryTypeName","src":"8299:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8283:32:12"},"returnParameters":{"id":1738,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1735,"mutability":"mutable","name":"isMember","nameLocation":"8344:8:12","nodeType":"VariableDeclaration","scope":1739,"src":"8339:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1734,"name":"bool","nodeType":"ElementaryTypeName","src":"8339:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1737,"mutability":"mutable","name":"executionDelay","nameLocation":"8361:14:12","nodeType":"VariableDeclaration","scope":1739,"src":"8354:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1736,"name":"uint32","nodeType":"ElementaryTypeName","src":"8354:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8338:38:12"},"scope":1905,"src":"8267:110:12","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1740,"nodeType":"StructuredDocumentation","src":"8383:208:12","text":" @dev Give a label to a role, for improved role discoverability by UIs.\n Requirements:\n - the caller must be a global admin\n Emits a {RoleLabel} event."},"functionSelector":"853551b8","id":1747,"implemented":false,"kind":"function","modifiers":[],"name":"labelRole","nameLocation":"8605:9:12","nodeType":"FunctionDefinition","parameters":{"id":1745,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1742,"mutability":"mutable","name":"roleId","nameLocation":"8622:6:12","nodeType":"VariableDeclaration","scope":1747,"src":"8615:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1741,"name":"uint64","nodeType":"ElementaryTypeName","src":"8615:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1744,"mutability":"mutable","name":"label","nameLocation":"8646:5:12","nodeType":"VariableDeclaration","scope":1747,"src":"8630:21:12","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":1743,"name":"string","nodeType":"ElementaryTypeName","src":"8630:6:12","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8614:38:12"},"returnParameters":{"id":1746,"nodeType":"ParameterList","parameters":[],"src":"8661:0:12"},"scope":1905,"src":"8596:66:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1748,"nodeType":"StructuredDocumentation","src":"8668:1222:12","text":" @dev Add `account` to `roleId`, or change its execution delay.\n This gives the account the authorization to call any function that is restricted to this role. An optional\n execution delay (in seconds) can be set. If that delay is non 0, the user is required to schedule any operation\n that is restricted to members of this role. The user will only be able to execute the operation after the delay has\n passed, before it has expired. During this period, admin and guardians can cancel the operation (see {cancel}).\n If the account has already been granted this role, the execution delay will be updated. This update is not\n immediate and follows the delay rules. For example, if a user currently has a delay of 3 hours, and this is\n called to reduce that delay to 1 hour, the new delay will take some time to take effect, enforcing that any\n operation executed in the 3 hours that follows this update was indeed scheduled before this update.\n Requirements:\n - the caller must be an admin for the role (see {getRoleAdmin})\n - granted role must not be the `PUBLIC_ROLE`\n Emits a {RoleGranted} event."},"functionSelector":"25c471a0","id":1757,"implemented":false,"kind":"function","modifiers":[],"name":"grantRole","nameLocation":"9904:9:12","nodeType":"FunctionDefinition","parameters":{"id":1755,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1750,"mutability":"mutable","name":"roleId","nameLocation":"9921:6:12","nodeType":"VariableDeclaration","scope":1757,"src":"9914:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1749,"name":"uint64","nodeType":"ElementaryTypeName","src":"9914:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1752,"mutability":"mutable","name":"account","nameLocation":"9937:7:12","nodeType":"VariableDeclaration","scope":1757,"src":"9929:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1751,"name":"address","nodeType":"ElementaryTypeName","src":"9929:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1754,"mutability":"mutable","name":"executionDelay","nameLocation":"9953:14:12","nodeType":"VariableDeclaration","scope":1757,"src":"9946:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1753,"name":"uint32","nodeType":"ElementaryTypeName","src":"9946:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"9913:55:12"},"returnParameters":{"id":1756,"nodeType":"ParameterList","parameters":[],"src":"9977:0:12"},"scope":1905,"src":"9895:83:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1758,"nodeType":"StructuredDocumentation","src":"9984:377:12","text":" @dev Remove an account from a role, with immediate effect. If the account does not have the role, this call has\n no effect.\n Requirements:\n - the caller must be an admin for the role (see {getRoleAdmin})\n - revoked role must not be the `PUBLIC_ROLE`\n Emits a {RoleRevoked} event if the account had the role."},"functionSelector":"b7d2b162","id":1765,"implemented":false,"kind":"function","modifiers":[],"name":"revokeRole","nameLocation":"10375:10:12","nodeType":"FunctionDefinition","parameters":{"id":1763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1760,"mutability":"mutable","name":"roleId","nameLocation":"10393:6:12","nodeType":"VariableDeclaration","scope":1765,"src":"10386:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1759,"name":"uint64","nodeType":"ElementaryTypeName","src":"10386:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1762,"mutability":"mutable","name":"account","nameLocation":"10409:7:12","nodeType":"VariableDeclaration","scope":1765,"src":"10401:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1761,"name":"address","nodeType":"ElementaryTypeName","src":"10401:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10385:32:12"},"returnParameters":{"id":1764,"nodeType":"ParameterList","parameters":[],"src":"10426:0:12"},"scope":1905,"src":"10366:61:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1766,"nodeType":"StructuredDocumentation","src":"10433:317:12","text":" @dev Renounce role permissions for the calling account with immediate effect. If the sender is not in\n the role this call has no effect.\n Requirements:\n - the caller must be `callerConfirmation`.\n Emits a {RoleRevoked} event if the account had the role."},"functionSelector":"fe0776f5","id":1773,"implemented":false,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"10764:12:12","nodeType":"FunctionDefinition","parameters":{"id":1771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1768,"mutability":"mutable","name":"roleId","nameLocation":"10784:6:12","nodeType":"VariableDeclaration","scope":1773,"src":"10777:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1767,"name":"uint64","nodeType":"ElementaryTypeName","src":"10777:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1770,"mutability":"mutable","name":"callerConfirmation","nameLocation":"10800:18:12","nodeType":"VariableDeclaration","scope":1773,"src":"10792:26:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1769,"name":"address","nodeType":"ElementaryTypeName","src":"10792:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10776:43:12"},"returnParameters":{"id":1772,"nodeType":"ParameterList","parameters":[],"src":"10828:0:12"},"scope":1905,"src":"10755:74:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1774,"nodeType":"StructuredDocumentation","src":"10835:184:12","text":" @dev Change admin role for a given role.\n Requirements:\n - the caller must be a global admin\n Emits a {RoleAdminChanged} event"},"functionSelector":"30cae187","id":1781,"implemented":false,"kind":"function","modifiers":[],"name":"setRoleAdmin","nameLocation":"11033:12:12","nodeType":"FunctionDefinition","parameters":{"id":1779,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1776,"mutability":"mutable","name":"roleId","nameLocation":"11053:6:12","nodeType":"VariableDeclaration","scope":1781,"src":"11046:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1775,"name":"uint64","nodeType":"ElementaryTypeName","src":"11046:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1778,"mutability":"mutable","name":"admin","nameLocation":"11068:5:12","nodeType":"VariableDeclaration","scope":1781,"src":"11061:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1777,"name":"uint64","nodeType":"ElementaryTypeName","src":"11061:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"11045:29:12"},"returnParameters":{"id":1780,"nodeType":"ParameterList","parameters":[],"src":"11083:0:12"},"scope":1905,"src":"11024:60:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1782,"nodeType":"StructuredDocumentation","src":"11090:190:12","text":" @dev Change guardian role for a given role.\n Requirements:\n - the caller must be a global admin\n Emits a {RoleGuardianChanged} event"},"functionSelector":"52962952","id":1789,"implemented":false,"kind":"function","modifiers":[],"name":"setRoleGuardian","nameLocation":"11294:15:12","nodeType":"FunctionDefinition","parameters":{"id":1787,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1784,"mutability":"mutable","name":"roleId","nameLocation":"11317:6:12","nodeType":"VariableDeclaration","scope":1789,"src":"11310:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1783,"name":"uint64","nodeType":"ElementaryTypeName","src":"11310:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1786,"mutability":"mutable","name":"guardian","nameLocation":"11332:8:12","nodeType":"VariableDeclaration","scope":1789,"src":"11325:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1785,"name":"uint64","nodeType":"ElementaryTypeName","src":"11325:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"11309:32:12"},"returnParameters":{"id":1788,"nodeType":"ParameterList","parameters":[],"src":"11350:0:12"},"scope":1905,"src":"11285:66:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1790,"nodeType":"StructuredDocumentation","src":"11357:196:12","text":" @dev Update the delay for granting a `roleId`.\n Requirements:\n - the caller must be a global admin\n Emits a {RoleGrantDelayChanged} event."},"functionSelector":"a64d95ce","id":1797,"implemented":false,"kind":"function","modifiers":[],"name":"setGrantDelay","nameLocation":"11567:13:12","nodeType":"FunctionDefinition","parameters":{"id":1795,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1792,"mutability":"mutable","name":"roleId","nameLocation":"11588:6:12","nodeType":"VariableDeclaration","scope":1797,"src":"11581:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1791,"name":"uint64","nodeType":"ElementaryTypeName","src":"11581:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1794,"mutability":"mutable","name":"newDelay","nameLocation":"11603:8:12","nodeType":"VariableDeclaration","scope":1797,"src":"11596:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1793,"name":"uint32","nodeType":"ElementaryTypeName","src":"11596:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"11580:32:12"},"returnParameters":{"id":1796,"nodeType":"ParameterList","parameters":[],"src":"11621:0:12"},"scope":1905,"src":"11558:64:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1798,"nodeType":"StructuredDocumentation","src":"11628:267:12","text":" @dev Set the role required to call functions identified by the `selectors` in the `target` contract.\n Requirements:\n - the caller must be a global admin\n Emits a {TargetFunctionRoleUpdated} event per selector."},"functionSelector":"08d6122d","id":1808,"implemented":false,"kind":"function","modifiers":[],"name":"setTargetFunctionRole","nameLocation":"11909:21:12","nodeType":"FunctionDefinition","parameters":{"id":1806,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1800,"mutability":"mutable","name":"target","nameLocation":"11939:6:12","nodeType":"VariableDeclaration","scope":1808,"src":"11931:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1799,"name":"address","nodeType":"ElementaryTypeName","src":"11931:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1803,"mutability":"mutable","name":"selectors","nameLocation":"11965:9:12","nodeType":"VariableDeclaration","scope":1808,"src":"11947:27:12","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_calldata_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":1801,"name":"bytes4","nodeType":"ElementaryTypeName","src":"11947:6:12","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":1802,"nodeType":"ArrayTypeName","src":"11947:8:12","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"},{"constant":false,"id":1805,"mutability":"mutable","name":"roleId","nameLocation":"11983:6:12","nodeType":"VariableDeclaration","scope":1808,"src":"11976:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1804,"name":"uint64","nodeType":"ElementaryTypeName","src":"11976:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"11930:60:12"},"returnParameters":{"id":1807,"nodeType":"ParameterList","parameters":[],"src":"11999:0:12"},"scope":1905,"src":"11900:100:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1809,"nodeType":"StructuredDocumentation","src":"12006:229:12","text":" @dev Set the delay for changing the configuration of a given target contract.\n Requirements:\n - the caller must be a global admin\n Emits a {TargetAdminDelayUpdated} event."},"functionSelector":"d22b5989","id":1816,"implemented":false,"kind":"function","modifiers":[],"name":"setTargetAdminDelay","nameLocation":"12249:19:12","nodeType":"FunctionDefinition","parameters":{"id":1814,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1811,"mutability":"mutable","name":"target","nameLocation":"12277:6:12","nodeType":"VariableDeclaration","scope":1816,"src":"12269:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1810,"name":"address","nodeType":"ElementaryTypeName","src":"12269:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1813,"mutability":"mutable","name":"newDelay","nameLocation":"12292:8:12","nodeType":"VariableDeclaration","scope":1816,"src":"12285:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1812,"name":"uint32","nodeType":"ElementaryTypeName","src":"12285:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"12268:33:12"},"returnParameters":{"id":1815,"nodeType":"ParameterList","parameters":[],"src":"12310:0:12"},"scope":1905,"src":"12240:71:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1817,"nodeType":"StructuredDocumentation","src":"12317:291:12","text":" @dev Set the closed flag for a contract.\n Closing the manager itself won't disable access to admin methods to avoid locking the contract.\n Requirements:\n - the caller must be a global admin\n Emits a {TargetClosed} event."},"functionSelector":"167bd395","id":1824,"implemented":false,"kind":"function","modifiers":[],"name":"setTargetClosed","nameLocation":"12622:15:12","nodeType":"FunctionDefinition","parameters":{"id":1822,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1819,"mutability":"mutable","name":"target","nameLocation":"12646:6:12","nodeType":"VariableDeclaration","scope":1824,"src":"12638:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1818,"name":"address","nodeType":"ElementaryTypeName","src":"12638:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1821,"mutability":"mutable","name":"closed","nameLocation":"12659:6:12","nodeType":"VariableDeclaration","scope":1824,"src":"12654:11:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1820,"name":"bool","nodeType":"ElementaryTypeName","src":"12654:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12637:29:12"},"returnParameters":{"id":1823,"nodeType":"ParameterList","parameters":[],"src":"12675:0:12"},"scope":1905,"src":"12613:63:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1825,"nodeType":"StructuredDocumentation","src":"12682:209:12","text":" @dev Return the timepoint at which a scheduled operation will be ready for execution. This returns 0 if the\n operation is not yet scheduled, has expired, was executed, or was canceled."},"functionSelector":"3adc277a","id":1832,"implemented":false,"kind":"function","modifiers":[],"name":"getSchedule","nameLocation":"12905:11:12","nodeType":"FunctionDefinition","parameters":{"id":1828,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1827,"mutability":"mutable","name":"id","nameLocation":"12925:2:12","nodeType":"VariableDeclaration","scope":1832,"src":"12917:10:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1826,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12917:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"12916:12:12"},"returnParameters":{"id":1831,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1830,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1832,"src":"12952:6:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":1829,"name":"uint48","nodeType":"ElementaryTypeName","src":"12952:6:12","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"12951:8:12"},"scope":1905,"src":"12896:64:12","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1833,"nodeType":"StructuredDocumentation","src":"12966:152:12","text":" @dev Return the nonce for the latest scheduled operation with a given id. Returns 0 if the operation has never\n been scheduled."},"functionSelector":"4136a33c","id":1840,"implemented":false,"kind":"function","modifiers":[],"name":"getNonce","nameLocation":"13132:8:12","nodeType":"FunctionDefinition","parameters":{"id":1836,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1835,"mutability":"mutable","name":"id","nameLocation":"13149:2:12","nodeType":"VariableDeclaration","scope":1840,"src":"13141:10:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1834,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13141:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"13140:12:12"},"returnParameters":{"id":1839,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1838,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1840,"src":"13176:6:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1837,"name":"uint32","nodeType":"ElementaryTypeName","src":"13176:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"13175:8:12"},"scope":1905,"src":"13123:61:12","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1841,"nodeType":"StructuredDocumentation","src":"13190:1068:12","text":" @dev Schedule a delayed operation for future execution, and return the operation identifier. It is possible to\n choose the timestamp at which the operation becomes executable as long as it satisfies the execution delays\n required for the caller. The special value zero will automatically set the earliest possible time.\n Returns the `operationId` that was scheduled. Since this value is a hash of the parameters, it can reoccur when\n the same parameters are used; if this is relevant, the returned `nonce` can be used to uniquely identify this\n scheduled operation from other occurrences of the same `operationId` in invocations of {execute} and {cancel}.\n Emits a {OperationScheduled} event.\n NOTE: It is not possible to concurrently schedule more than one operation with the same `target` and `data`. If\n this is necessary, a random byte can be appended to `data` to act as a salt that will be ignored by the target\n contract if it is using standard Solidity ABI encoding."},"functionSelector":"f801a698","id":1854,"implemented":false,"kind":"function","modifiers":[],"name":"schedule","nameLocation":"14272:8:12","nodeType":"FunctionDefinition","parameters":{"id":1848,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1843,"mutability":"mutable","name":"target","nameLocation":"14298:6:12","nodeType":"VariableDeclaration","scope":1854,"src":"14290:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1842,"name":"address","nodeType":"ElementaryTypeName","src":"14290:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1845,"mutability":"mutable","name":"data","nameLocation":"14329:4:12","nodeType":"VariableDeclaration","scope":1854,"src":"14314:19:12","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1844,"name":"bytes","nodeType":"ElementaryTypeName","src":"14314:5:12","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1847,"mutability":"mutable","name":"when","nameLocation":"14350:4:12","nodeType":"VariableDeclaration","scope":1854,"src":"14343:11:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":1846,"name":"uint48","nodeType":"ElementaryTypeName","src":"14343:6:12","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"14280:80:12"},"returnParameters":{"id":1853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1850,"mutability":"mutable","name":"operationId","nameLocation":"14387:11:12","nodeType":"VariableDeclaration","scope":1854,"src":"14379:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1849,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14379:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1852,"mutability":"mutable","name":"nonce","nameLocation":"14407:5:12","nodeType":"VariableDeclaration","scope":1854,"src":"14400:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1851,"name":"uint32","nodeType":"ElementaryTypeName","src":"14400:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"14378:35:12"},"scope":1905,"src":"14263:151:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1855,"nodeType":"StructuredDocumentation","src":"14420:451:12","text":" @dev Execute a function that is delay restricted, provided it was properly scheduled beforehand, or the\n execution delay is 0.\n Returns the nonce that identifies the previously scheduled operation that is executed, or 0 if the\n operation wasn't previously scheduled (if the caller doesn't have an execution delay).\n Emits an {OperationExecuted} event only if the call was scheduled and delayed."},"functionSelector":"1cff79cd","id":1864,"implemented":false,"kind":"function","modifiers":[],"name":"execute","nameLocation":"14885:7:12","nodeType":"FunctionDefinition","parameters":{"id":1860,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1857,"mutability":"mutable","name":"target","nameLocation":"14901:6:12","nodeType":"VariableDeclaration","scope":1864,"src":"14893:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1856,"name":"address","nodeType":"ElementaryTypeName","src":"14893:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1859,"mutability":"mutable","name":"data","nameLocation":"14924:4:12","nodeType":"VariableDeclaration","scope":1864,"src":"14909:19:12","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1858,"name":"bytes","nodeType":"ElementaryTypeName","src":"14909:5:12","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"14892:37:12"},"returnParameters":{"id":1863,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1862,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1864,"src":"14956:6:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1861,"name":"uint32","nodeType":"ElementaryTypeName","src":"14956:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"14955:8:12"},"scope":1905,"src":"14876:88:12","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":1865,"nodeType":"StructuredDocumentation","src":"14970:339:12","text":" @dev Cancel a scheduled (delayed) operation. Returns the nonce that identifies the previously scheduled\n operation that is cancelled.\n Requirements:\n - the caller must be the proposer, a guardian of the targeted function, or a global admin\n Emits a {OperationCanceled} event."},"functionSelector":"d6bb62c6","id":1876,"implemented":false,"kind":"function","modifiers":[],"name":"cancel","nameLocation":"15323:6:12","nodeType":"FunctionDefinition","parameters":{"id":1872,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1867,"mutability":"mutable","name":"caller","nameLocation":"15338:6:12","nodeType":"VariableDeclaration","scope":1876,"src":"15330:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1866,"name":"address","nodeType":"ElementaryTypeName","src":"15330:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1869,"mutability":"mutable","name":"target","nameLocation":"15354:6:12","nodeType":"VariableDeclaration","scope":1876,"src":"15346:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1868,"name":"address","nodeType":"ElementaryTypeName","src":"15346:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1871,"mutability":"mutable","name":"data","nameLocation":"15377:4:12","nodeType":"VariableDeclaration","scope":1876,"src":"15362:19:12","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1870,"name":"bytes","nodeType":"ElementaryTypeName","src":"15362:5:12","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15329:53:12"},"returnParameters":{"id":1875,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1874,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1876,"src":"15401:6:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1873,"name":"uint32","nodeType":"ElementaryTypeName","src":"15401:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"15400:8:12"},"scope":1905,"src":"15314:95:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1877,"nodeType":"StructuredDocumentation","src":"15415:434:12","text":" @dev Consume a scheduled operation targeting the caller. If such an operation exists, mark it as consumed\n (emit an {OperationExecuted} event and clean the state). Otherwise, throw an error.\n This is useful for contract that want to enforce that calls targeting them were scheduled on the manager,\n with all the verifications that it implies.\n Emit a {OperationExecuted} event."},"functionSelector":"94c7d7ee","id":1884,"implemented":false,"kind":"function","modifiers":[],"name":"consumeScheduledOp","nameLocation":"15863:18:12","nodeType":"FunctionDefinition","parameters":{"id":1882,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1879,"mutability":"mutable","name":"caller","nameLocation":"15890:6:12","nodeType":"VariableDeclaration","scope":1884,"src":"15882:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1878,"name":"address","nodeType":"ElementaryTypeName","src":"15882:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1881,"mutability":"mutable","name":"data","nameLocation":"15913:4:12","nodeType":"VariableDeclaration","scope":1884,"src":"15898:19:12","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1880,"name":"bytes","nodeType":"ElementaryTypeName","src":"15898:5:12","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15881:37:12"},"returnParameters":{"id":1883,"nodeType":"ParameterList","parameters":[],"src":"15927:0:12"},"scope":1905,"src":"15854:74:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1885,"nodeType":"StructuredDocumentation","src":"15934:64:12","text":" @dev Hashing function for delayed operations."},"functionSelector":"abd9bd2a","id":1896,"implemented":false,"kind":"function","modifiers":[],"name":"hashOperation","nameLocation":"16012:13:12","nodeType":"FunctionDefinition","parameters":{"id":1892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1887,"mutability":"mutable","name":"caller","nameLocation":"16034:6:12","nodeType":"VariableDeclaration","scope":1896,"src":"16026:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1886,"name":"address","nodeType":"ElementaryTypeName","src":"16026:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1889,"mutability":"mutable","name":"target","nameLocation":"16050:6:12","nodeType":"VariableDeclaration","scope":1896,"src":"16042:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1888,"name":"address","nodeType":"ElementaryTypeName","src":"16042:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1891,"mutability":"mutable","name":"data","nameLocation":"16073:4:12","nodeType":"VariableDeclaration","scope":1896,"src":"16058:19:12","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1890,"name":"bytes","nodeType":"ElementaryTypeName","src":"16058:5:12","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16025:53:12"},"returnParameters":{"id":1895,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1894,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1896,"src":"16102:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1893,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16102:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"16101:9:12"},"scope":1905,"src":"16003:108:12","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1897,"nodeType":"StructuredDocumentation","src":"16117:169:12","text":" @dev Changes the authority of a target managed by this manager instance.\n Requirements:\n - the caller must be a global admin"},"functionSelector":"18ff183c","id":1904,"implemented":false,"kind":"function","modifiers":[],"name":"updateAuthority","nameLocation":"16300:15:12","nodeType":"FunctionDefinition","parameters":{"id":1902,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1899,"mutability":"mutable","name":"target","nameLocation":"16324:6:12","nodeType":"VariableDeclaration","scope":1904,"src":"16316:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1898,"name":"address","nodeType":"ElementaryTypeName","src":"16316:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1901,"mutability":"mutable","name":"newAuthority","nameLocation":"16340:12:12","nodeType":"VariableDeclaration","scope":1904,"src":"16332:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1900,"name":"address","nodeType":"ElementaryTypeName","src":"16332:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"16315:38:12"},"returnParameters":{"id":1903,"nodeType":"ParameterList","parameters":[],"src":"16362:0:12"},"scope":1905,"src":"16291:72:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":1906,"src":"193:16172:12","usedErrors":[1585,1589,1593,1597,1601,1603,1609,1617,1621,1631,1635],"usedEvents":[1492,1499,1506,1513,1526,1533,1540,1547,1556,1563,1572,1581]}],"src":"117:16249:12"},"id":12},"@openzeppelin/contracts/interfaces/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","exportedSymbols":{"IERC20":[2782]},"id":1910,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1907,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"105:24:13"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../token/ERC20/IERC20.sol","id":1909,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1910,"sourceUnit":2783,"src":"131:49:13","symbolAliases":[{"foreign":{"id":1908,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2782,"src":"139:6:13","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"105:76:13"},"id":13},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","exportedSymbols":{"IERC1155Errors":[2046],"IERC20Errors":[1951],"IERC721Errors":[1999]},"id":2047,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1911,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"112:24:14"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":1912,"nodeType":"StructuredDocumentation","src":"138:141:14","text":" @dev Standard ERC-20 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens."},"fullyImplemented":true,"id":1951,"linearizedBaseContracts":[1951],"name":"IERC20Errors","nameLocation":"290:12:14","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1913,"nodeType":"StructuredDocumentation","src":"309:309:14","text":" @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param balance Current balance for the interacting account.\n @param needed Minimum amount required to perform a transfer."},"errorSelector":"e450d38c","id":1921,"name":"ERC20InsufficientBalance","nameLocation":"629:24:14","nodeType":"ErrorDefinition","parameters":{"id":1920,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1915,"mutability":"mutable","name":"sender","nameLocation":"662:6:14","nodeType":"VariableDeclaration","scope":1921,"src":"654:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1914,"name":"address","nodeType":"ElementaryTypeName","src":"654:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1917,"mutability":"mutable","name":"balance","nameLocation":"678:7:14","nodeType":"VariableDeclaration","scope":1921,"src":"670:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1916,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1919,"mutability":"mutable","name":"needed","nameLocation":"695:6:14","nodeType":"VariableDeclaration","scope":1921,"src":"687:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1918,"name":"uint256","nodeType":"ElementaryTypeName","src":"687:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"653:49:14"},"src":"623:80:14"},{"documentation":{"id":1922,"nodeType":"StructuredDocumentation","src":"709:152:14","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"96c6fd1e","id":1926,"name":"ERC20InvalidSender","nameLocation":"872:18:14","nodeType":"ErrorDefinition","parameters":{"id":1925,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1924,"mutability":"mutable","name":"sender","nameLocation":"899:6:14","nodeType":"VariableDeclaration","scope":1926,"src":"891:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1923,"name":"address","nodeType":"ElementaryTypeName","src":"891:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"890:16:14"},"src":"866:41:14"},{"documentation":{"id":1927,"nodeType":"StructuredDocumentation","src":"913:159:14","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"ec442f05","id":1931,"name":"ERC20InvalidReceiver","nameLocation":"1083:20:14","nodeType":"ErrorDefinition","parameters":{"id":1930,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1929,"mutability":"mutable","name":"receiver","nameLocation":"1112:8:14","nodeType":"VariableDeclaration","scope":1931,"src":"1104:16:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1928,"name":"address","nodeType":"ElementaryTypeName","src":"1104:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1103:18:14"},"src":"1077:45:14"},{"documentation":{"id":1932,"nodeType":"StructuredDocumentation","src":"1128:345:14","text":" @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.\n @param spender Address that may be allowed to operate on tokens without being their owner.\n @param allowance Amount of tokens a `spender` is allowed to operate with.\n @param needed Minimum amount required to perform a transfer."},"errorSelector":"fb8f41b2","id":1940,"name":"ERC20InsufficientAllowance","nameLocation":"1484:26:14","nodeType":"ErrorDefinition","parameters":{"id":1939,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1934,"mutability":"mutable","name":"spender","nameLocation":"1519:7:14","nodeType":"VariableDeclaration","scope":1940,"src":"1511:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1933,"name":"address","nodeType":"ElementaryTypeName","src":"1511:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1936,"mutability":"mutable","name":"allowance","nameLocation":"1536:9:14","nodeType":"VariableDeclaration","scope":1940,"src":"1528:17:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1935,"name":"uint256","nodeType":"ElementaryTypeName","src":"1528:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1938,"mutability":"mutable","name":"needed","nameLocation":"1555:6:14","nodeType":"VariableDeclaration","scope":1940,"src":"1547:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1937,"name":"uint256","nodeType":"ElementaryTypeName","src":"1547:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1510:52:14"},"src":"1478:85:14"},{"documentation":{"id":1941,"nodeType":"StructuredDocumentation","src":"1569:174:14","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"e602df05","id":1945,"name":"ERC20InvalidApprover","nameLocation":"1754:20:14","nodeType":"ErrorDefinition","parameters":{"id":1944,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1943,"mutability":"mutable","name":"approver","nameLocation":"1783:8:14","nodeType":"VariableDeclaration","scope":1945,"src":"1775:16:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1942,"name":"address","nodeType":"ElementaryTypeName","src":"1775:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1774:18:14"},"src":"1748:45:14"},{"documentation":{"id":1946,"nodeType":"StructuredDocumentation","src":"1799:195:14","text":" @dev Indicates a failure with the `spender` to be approved. Used in approvals.\n @param spender Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"94280d62","id":1950,"name":"ERC20InvalidSpender","nameLocation":"2005:19:14","nodeType":"ErrorDefinition","parameters":{"id":1949,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1948,"mutability":"mutable","name":"spender","nameLocation":"2033:7:14","nodeType":"VariableDeclaration","scope":1950,"src":"2025:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1947,"name":"address","nodeType":"ElementaryTypeName","src":"2025:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2024:17:14"},"src":"1999:43:14"}],"scope":2047,"src":"280:1764:14","usedErrors":[1921,1926,1931,1940,1945,1950],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":1952,"nodeType":"StructuredDocumentation","src":"2046:143:14","text":" @dev Standard ERC-721 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens."},"fullyImplemented":true,"id":1999,"linearizedBaseContracts":[1999],"name":"IERC721Errors","nameLocation":"2200:13:14","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1953,"nodeType":"StructuredDocumentation","src":"2220:219:14","text":" @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.\n Used in balance queries.\n @param owner Address of the current owner of a token."},"errorSelector":"89c62b64","id":1957,"name":"ERC721InvalidOwner","nameLocation":"2450:18:14","nodeType":"ErrorDefinition","parameters":{"id":1956,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1955,"mutability":"mutable","name":"owner","nameLocation":"2477:5:14","nodeType":"VariableDeclaration","scope":1957,"src":"2469:13:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1954,"name":"address","nodeType":"ElementaryTypeName","src":"2469:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2468:15:14"},"src":"2444:40:14"},{"documentation":{"id":1958,"nodeType":"StructuredDocumentation","src":"2490:132:14","text":" @dev Indicates a `tokenId` whose `owner` is the zero address.\n @param tokenId Identifier number of a token."},"errorSelector":"7e273289","id":1962,"name":"ERC721NonexistentToken","nameLocation":"2633:22:14","nodeType":"ErrorDefinition","parameters":{"id":1961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1960,"mutability":"mutable","name":"tokenId","nameLocation":"2664:7:14","nodeType":"VariableDeclaration","scope":1962,"src":"2656:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1959,"name":"uint256","nodeType":"ElementaryTypeName","src":"2656:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2655:17:14"},"src":"2627:46:14"},{"documentation":{"id":1963,"nodeType":"StructuredDocumentation","src":"2679:289:14","text":" @dev Indicates an error related to the ownership over a particular token. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param tokenId Identifier number of a token.\n @param owner Address of the current owner of a token."},"errorSelector":"64283d7b","id":1971,"name":"ERC721IncorrectOwner","nameLocation":"2979:20:14","nodeType":"ErrorDefinition","parameters":{"id":1970,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1965,"mutability":"mutable","name":"sender","nameLocation":"3008:6:14","nodeType":"VariableDeclaration","scope":1971,"src":"3000:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1964,"name":"address","nodeType":"ElementaryTypeName","src":"3000:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1967,"mutability":"mutable","name":"tokenId","nameLocation":"3024:7:14","nodeType":"VariableDeclaration","scope":1971,"src":"3016:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1966,"name":"uint256","nodeType":"ElementaryTypeName","src":"3016:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1969,"mutability":"mutable","name":"owner","nameLocation":"3041:5:14","nodeType":"VariableDeclaration","scope":1971,"src":"3033:13:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1968,"name":"address","nodeType":"ElementaryTypeName","src":"3033:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2999:48:14"},"src":"2973:75:14"},{"documentation":{"id":1972,"nodeType":"StructuredDocumentation","src":"3054:152:14","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"73c6ac6e","id":1976,"name":"ERC721InvalidSender","nameLocation":"3217:19:14","nodeType":"ErrorDefinition","parameters":{"id":1975,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1974,"mutability":"mutable","name":"sender","nameLocation":"3245:6:14","nodeType":"VariableDeclaration","scope":1976,"src":"3237:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1973,"name":"address","nodeType":"ElementaryTypeName","src":"3237:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3236:16:14"},"src":"3211:42:14"},{"documentation":{"id":1977,"nodeType":"StructuredDocumentation","src":"3259:159:14","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"64a0ae92","id":1981,"name":"ERC721InvalidReceiver","nameLocation":"3429:21:14","nodeType":"ErrorDefinition","parameters":{"id":1980,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1979,"mutability":"mutable","name":"receiver","nameLocation":"3459:8:14","nodeType":"VariableDeclaration","scope":1981,"src":"3451:16:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1978,"name":"address","nodeType":"ElementaryTypeName","src":"3451:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3450:18:14"},"src":"3423:46:14"},{"documentation":{"id":1982,"nodeType":"StructuredDocumentation","src":"3475:247:14","text":" @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n @param operator Address that may be allowed to operate on tokens without being their owner.\n @param tokenId Identifier number of a token."},"errorSelector":"177e802f","id":1988,"name":"ERC721InsufficientApproval","nameLocation":"3733:26:14","nodeType":"ErrorDefinition","parameters":{"id":1987,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1984,"mutability":"mutable","name":"operator","nameLocation":"3768:8:14","nodeType":"VariableDeclaration","scope":1988,"src":"3760:16:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1983,"name":"address","nodeType":"ElementaryTypeName","src":"3760:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1986,"mutability":"mutable","name":"tokenId","nameLocation":"3786:7:14","nodeType":"VariableDeclaration","scope":1988,"src":"3778:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1985,"name":"uint256","nodeType":"ElementaryTypeName","src":"3778:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3759:35:14"},"src":"3727:68:14"},{"documentation":{"id":1989,"nodeType":"StructuredDocumentation","src":"3801:174:14","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"a9fbf51f","id":1993,"name":"ERC721InvalidApprover","nameLocation":"3986:21:14","nodeType":"ErrorDefinition","parameters":{"id":1992,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1991,"mutability":"mutable","name":"approver","nameLocation":"4016:8:14","nodeType":"VariableDeclaration","scope":1993,"src":"4008:16:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1990,"name":"address","nodeType":"ElementaryTypeName","src":"4008:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4007:18:14"},"src":"3980:46:14"},{"documentation":{"id":1994,"nodeType":"StructuredDocumentation","src":"4032:197:14","text":" @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n @param operator Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"5b08ba18","id":1998,"name":"ERC721InvalidOperator","nameLocation":"4240:21:14","nodeType":"ErrorDefinition","parameters":{"id":1997,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1996,"mutability":"mutable","name":"operator","nameLocation":"4270:8:14","nodeType":"VariableDeclaration","scope":1998,"src":"4262:16:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1995,"name":"address","nodeType":"ElementaryTypeName","src":"4262:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4261:18:14"},"src":"4234:46:14"}],"scope":2047,"src":"2190:2092:14","usedErrors":[1957,1962,1971,1976,1981,1988,1993,1998],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1155Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":2000,"nodeType":"StructuredDocumentation","src":"4284:145:14","text":" @dev Standard ERC-1155 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens."},"fullyImplemented":true,"id":2046,"linearizedBaseContracts":[2046],"name":"IERC1155Errors","nameLocation":"4440:14:14","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":2001,"nodeType":"StructuredDocumentation","src":"4461:361:14","text":" @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param balance Current balance for the interacting account.\n @param needed Minimum amount required to perform a transfer.\n @param tokenId Identifier number of a token."},"errorSelector":"03dee4c5","id":2011,"name":"ERC1155InsufficientBalance","nameLocation":"4833:26:14","nodeType":"ErrorDefinition","parameters":{"id":2010,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2003,"mutability":"mutable","name":"sender","nameLocation":"4868:6:14","nodeType":"VariableDeclaration","scope":2011,"src":"4860:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2002,"name":"address","nodeType":"ElementaryTypeName","src":"4860:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2005,"mutability":"mutable","name":"balance","nameLocation":"4884:7:14","nodeType":"VariableDeclaration","scope":2011,"src":"4876:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2004,"name":"uint256","nodeType":"ElementaryTypeName","src":"4876:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2007,"mutability":"mutable","name":"needed","nameLocation":"4901:6:14","nodeType":"VariableDeclaration","scope":2011,"src":"4893:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2006,"name":"uint256","nodeType":"ElementaryTypeName","src":"4893:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2009,"mutability":"mutable","name":"tokenId","nameLocation":"4917:7:14","nodeType":"VariableDeclaration","scope":2011,"src":"4909:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2008,"name":"uint256","nodeType":"ElementaryTypeName","src":"4909:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4859:66:14"},"src":"4827:99:14"},{"documentation":{"id":2012,"nodeType":"StructuredDocumentation","src":"4932:152:14","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"01a83514","id":2016,"name":"ERC1155InvalidSender","nameLocation":"5095:20:14","nodeType":"ErrorDefinition","parameters":{"id":2015,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2014,"mutability":"mutable","name":"sender","nameLocation":"5124:6:14","nodeType":"VariableDeclaration","scope":2016,"src":"5116:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2013,"name":"address","nodeType":"ElementaryTypeName","src":"5116:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5115:16:14"},"src":"5089:43:14"},{"documentation":{"id":2017,"nodeType":"StructuredDocumentation","src":"5138:159:14","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"57f447ce","id":2021,"name":"ERC1155InvalidReceiver","nameLocation":"5308:22:14","nodeType":"ErrorDefinition","parameters":{"id":2020,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2019,"mutability":"mutable","name":"receiver","nameLocation":"5339:8:14","nodeType":"VariableDeclaration","scope":2021,"src":"5331:16:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2018,"name":"address","nodeType":"ElementaryTypeName","src":"5331:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5330:18:14"},"src":"5302:47:14"},{"documentation":{"id":2022,"nodeType":"StructuredDocumentation","src":"5355:256:14","text":" @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n @param operator Address that may be allowed to operate on tokens without being their owner.\n @param owner Address of the current owner of a token."},"errorSelector":"e237d922","id":2028,"name":"ERC1155MissingApprovalForAll","nameLocation":"5622:28:14","nodeType":"ErrorDefinition","parameters":{"id":2027,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2024,"mutability":"mutable","name":"operator","nameLocation":"5659:8:14","nodeType":"VariableDeclaration","scope":2028,"src":"5651:16:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2023,"name":"address","nodeType":"ElementaryTypeName","src":"5651:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2026,"mutability":"mutable","name":"owner","nameLocation":"5677:5:14","nodeType":"VariableDeclaration","scope":2028,"src":"5669:13:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2025,"name":"address","nodeType":"ElementaryTypeName","src":"5669:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5650:33:14"},"src":"5616:68:14"},{"documentation":{"id":2029,"nodeType":"StructuredDocumentation","src":"5690:174:14","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"3e31884e","id":2033,"name":"ERC1155InvalidApprover","nameLocation":"5875:22:14","nodeType":"ErrorDefinition","parameters":{"id":2032,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2031,"mutability":"mutable","name":"approver","nameLocation":"5906:8:14","nodeType":"VariableDeclaration","scope":2033,"src":"5898:16:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2030,"name":"address","nodeType":"ElementaryTypeName","src":"5898:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5897:18:14"},"src":"5869:47:14"},{"documentation":{"id":2034,"nodeType":"StructuredDocumentation","src":"5922:197:14","text":" @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n @param operator Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"ced3e100","id":2038,"name":"ERC1155InvalidOperator","nameLocation":"6130:22:14","nodeType":"ErrorDefinition","parameters":{"id":2037,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2036,"mutability":"mutable","name":"operator","nameLocation":"6161:8:14","nodeType":"VariableDeclaration","scope":2038,"src":"6153:16:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2035,"name":"address","nodeType":"ElementaryTypeName","src":"6153:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6152:18:14"},"src":"6124:47:14"},{"documentation":{"id":2039,"nodeType":"StructuredDocumentation","src":"6177:280:14","text":" @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.\n Used in batch transfers.\n @param idsLength Length of the array of token identifiers\n @param valuesLength Length of the array of token amounts"},"errorSelector":"5b059991","id":2045,"name":"ERC1155InvalidArrayLength","nameLocation":"6468:25:14","nodeType":"ErrorDefinition","parameters":{"id":2044,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2041,"mutability":"mutable","name":"idsLength","nameLocation":"6502:9:14","nodeType":"VariableDeclaration","scope":2045,"src":"6494:17:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2040,"name":"uint256","nodeType":"ElementaryTypeName","src":"6494:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2043,"mutability":"mutable","name":"valuesLength","nameLocation":"6521:12:14","nodeType":"VariableDeclaration","scope":2045,"src":"6513:20:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2042,"name":"uint256","nodeType":"ElementaryTypeName","src":"6513:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6493:41:14"},"src":"6462:73:14"}],"scope":2047,"src":"4430:2107:14","usedErrors":[2011,2016,2021,2028,2033,2038,2045],"usedEvents":[]}],"src":"112:6426:14"},"id":14},"@openzeppelin/contracts/metatx/ERC2771Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/metatx/ERC2771Context.sol","exportedSymbols":{"Context":[3098],"ERC2771Context":[2189]},"id":2190,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2048,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:15"},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../utils/Context.sol","id":2050,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2190,"sourceUnit":3099,"src":"135:45:15","symbolAliases":[{"foreign":{"id":2049,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3098,"src":"143:7:15","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":2052,"name":"Context","nameLocations":["1005:7:15"],"nodeType":"IdentifierPath","referencedDeclaration":3098,"src":"1005:7:15"},"id":2053,"nodeType":"InheritanceSpecifier","src":"1005:7:15"}],"canonicalName":"ERC2771Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":2051,"nodeType":"StructuredDocumentation","src":"182:786:15","text":" @dev Context variant with ERC-2771 support.\n WARNING: Avoid using this pattern in contracts that rely in a specific calldata length as they'll\n be affected by any forwarder whose `msg.data` is suffixed with the `from` address according to the ERC-2771\n specification adding the address size in bytes (20) to the calldata size. An example of an unexpected\n behavior could be an unintended fallback (or another function) invocation while trying to invoke the `receive`\n function only accessible if `msg.data.length == 0`.\n WARNING: The usage of `delegatecall` in this contract is dangerous and may result in context corruption.\n Any forwarded request to this contract triggering a `delegatecall` to itself will result in an invalid {_msgSender}\n recovery."},"fullyImplemented":true,"id":2189,"linearizedBaseContracts":[2189,3098],"name":"ERC2771Context","nameLocation":"987:14:15","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":2054,"nodeType":"StructuredDocumentation","src":"1019:61:15","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":2056,"mutability":"immutable","name":"_trustedForwarder","nameLocation":"1111:17:15","nodeType":"VariableDeclaration","scope":2189,"src":"1085:43:15","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2055,"name":"address","nodeType":"ElementaryTypeName","src":"1085:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"body":{"id":2066,"nodeType":"Block","src":"1490:54:15","statements":[{"expression":{"id":2064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2062,"name":"_trustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2056,"src":"1500:17:15","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2063,"name":"trustedForwarder_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2059,"src":"1520:17:15","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1500:37:15","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2065,"nodeType":"ExpressionStatement","src":"1500:37:15"}]},"documentation":{"id":2057,"nodeType":"StructuredDocumentation","src":"1398:48:15","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":2067,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":2060,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2059,"mutability":"mutable","name":"trustedForwarder_","nameLocation":"1471:17:15","nodeType":"VariableDeclaration","scope":2067,"src":"1463:25:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2058,"name":"address","nodeType":"ElementaryTypeName","src":"1463:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1462:27:15"},"returnParameters":{"id":2061,"nodeType":"ParameterList","parameters":[],"src":"1490:0:15"},"scope":2189,"src":"1451:93:15","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2075,"nodeType":"Block","src":"1690:41:15","statements":[{"expression":{"id":2073,"name":"_trustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2056,"src":"1707:17:15","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":2072,"id":2074,"nodeType":"Return","src":"1700:24:15"}]},"documentation":{"id":2068,"nodeType":"StructuredDocumentation","src":"1550:69:15","text":" @dev Returns the address of the trusted forwarder."},"functionSelector":"7da0a877","id":2076,"implemented":true,"kind":"function","modifiers":[],"name":"trustedForwarder","nameLocation":"1633:16:15","nodeType":"FunctionDefinition","parameters":{"id":2069,"nodeType":"ParameterList","parameters":[],"src":"1649:2:15"},"returnParameters":{"id":2072,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2071,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2076,"src":"1681:7:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2070,"name":"address","nodeType":"ElementaryTypeName","src":"1681:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1680:9:15"},"scope":2189,"src":"1624:107:15","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":2089,"nodeType":"Block","src":"1914:55:15","statements":[{"expression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2084,"name":"forwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2079,"src":"1931:9:15","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":2085,"name":"trustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2076,"src":"1944:16:15","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2086,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1944:18:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1931:31:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2083,"id":2088,"nodeType":"Return","src":"1924:38:15"}]},"documentation":{"id":2077,"nodeType":"StructuredDocumentation","src":"1737:90:15","text":" @dev Indicates whether any particular address is the trusted forwarder."},"functionSelector":"572b6c05","id":2090,"implemented":true,"kind":"function","modifiers":[],"name":"isTrustedForwarder","nameLocation":"1841:18:15","nodeType":"FunctionDefinition","parameters":{"id":2080,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2079,"mutability":"mutable","name":"forwarder","nameLocation":"1868:9:15","nodeType":"VariableDeclaration","scope":2090,"src":"1860:17:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2078,"name":"address","nodeType":"ElementaryTypeName","src":"1860:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1859:19:15"},"returnParameters":{"id":2083,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2082,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2090,"src":"1908:4:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2081,"name":"bool","nodeType":"ElementaryTypeName","src":"1908:4:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1907:6:15"},"scope":2189,"src":"1832:137:15","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[3080],"body":{"id":2136,"nodeType":"Block","src":"2277:358:15","statements":[{"assignments":[2098],"declarations":[{"constant":false,"id":2098,"mutability":"mutable","name":"calldataLength","nameLocation":"2295:14:15","nodeType":"VariableDeclaration","scope":2136,"src":"2287:22:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2097,"name":"uint256","nodeType":"ElementaryTypeName","src":"2287:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2102,"initialValue":{"expression":{"expression":{"id":2099,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2312:3:15","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2100,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2316:4:15","memberName":"data","nodeType":"MemberAccess","src":"2312:8:15","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":2101,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2321:6:15","memberName":"length","nodeType":"MemberAccess","src":"2312:15:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2287:40:15"},{"assignments":[2104],"declarations":[{"constant":false,"id":2104,"mutability":"mutable","name":"contextSuffixLength","nameLocation":"2345:19:15","nodeType":"VariableDeclaration","scope":2136,"src":"2337:27:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2103,"name":"uint256","nodeType":"ElementaryTypeName","src":"2337:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2107,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":2105,"name":"_contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[2188],"referencedDeclaration":2188,"src":"2367:20:15","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":2106,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2367:22:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2337:52:15"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":2109,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2422:3:15","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2426:6:15","memberName":"sender","nodeType":"MemberAccess","src":"2422:10:15","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2108,"name":"isTrustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2090,"src":"2403:18:15","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":2111,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2403:30:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2112,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2098,"src":"2437:14:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":2113,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2104,"src":"2455:19:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2437:37:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2403:71:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2134,"nodeType":"Block","src":"2579:50:15","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":2130,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2600:5:15","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC2771Context_$2189_$","typeString":"type(contract super ERC2771Context)"}},"id":2131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2606:10:15","memberName":"_msgSender","nodeType":"MemberAccess","referencedDeclaration":3080,"src":"2600:16:15","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2132,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2600:18:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":2096,"id":2133,"nodeType":"Return","src":"2593:25:15"}]},"id":2135,"nodeType":"IfStatement","src":"2399:230:15","trueBody":{"id":2129,"nodeType":"Block","src":"2476:97:15","statements":[{"expression":{"arguments":[{"arguments":[{"baseExpression":{"expression":{"id":2120,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2513:3:15","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2517:4:15","memberName":"data","nodeType":"MemberAccess","src":"2513:8:15","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":2125,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"2513:47:15","startExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2122,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2098,"src":"2522:14:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2123,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2104,"src":"2539:19:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2522:36:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":2119,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2505:7:15","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":2118,"name":"bytes20","nodeType":"ElementaryTypeName","src":"2505:7:15","typeDescriptions":{}}},"id":2126,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2505:56:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"}],"id":2117,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2497:7:15","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2116,"name":"address","nodeType":"ElementaryTypeName","src":"2497:7:15","typeDescriptions":{}}},"id":2127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2497:65:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":2096,"id":2128,"nodeType":"Return","src":"2490:72:15"}]}}]},"documentation":{"id":2091,"nodeType":"StructuredDocumentation","src":"1975:226:15","text":" @dev Override for `msg.sender`. Defaults to the original `msg.sender` whenever\n a call is not performed by the trusted forwarder or the calldata length is less than\n 20 bytes (an address length)."},"id":2137,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"2215:10:15","nodeType":"FunctionDefinition","overrides":{"id":2093,"nodeType":"OverrideSpecifier","overrides":[],"src":"2250:8:15"},"parameters":{"id":2092,"nodeType":"ParameterList","parameters":[],"src":"2225:2:15"},"returnParameters":{"id":2096,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2095,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2137,"src":"2268:7:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2094,"name":"address","nodeType":"ElementaryTypeName","src":"2268:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2267:9:15"},"scope":2189,"src":"2206:429:15","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[3089],"body":{"id":2177,"nodeType":"Block","src":"2944:338:15","statements":[{"assignments":[2145],"declarations":[{"constant":false,"id":2145,"mutability":"mutable","name":"calldataLength","nameLocation":"2962:14:15","nodeType":"VariableDeclaration","scope":2177,"src":"2954:22:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2144,"name":"uint256","nodeType":"ElementaryTypeName","src":"2954:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2149,"initialValue":{"expression":{"expression":{"id":2146,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2979:3:15","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2983:4:15","memberName":"data","nodeType":"MemberAccess","src":"2979:8:15","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":2148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2988:6:15","memberName":"length","nodeType":"MemberAccess","src":"2979:15:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2954:40:15"},{"assignments":[2151],"declarations":[{"constant":false,"id":2151,"mutability":"mutable","name":"contextSuffixLength","nameLocation":"3012:19:15","nodeType":"VariableDeclaration","scope":2177,"src":"3004:27:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2150,"name":"uint256","nodeType":"ElementaryTypeName","src":"3004:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2154,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":2152,"name":"_contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[2188],"referencedDeclaration":2188,"src":"3034:20:15","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":2153,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3034:22:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3004:52:15"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":2156,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3089:3:15","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2157,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3093:6:15","memberName":"sender","nodeType":"MemberAccess","src":"3089:10:15","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2155,"name":"isTrustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2090,"src":"3070:18:15","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":2158,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3070:30:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2159,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2145,"src":"3104:14:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":2160,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"3122:19:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3104:37:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3070:71:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2175,"nodeType":"Block","src":"3228:48:15","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":2171,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"3249:5:15","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC2771Context_$2189_$","typeString":"type(contract super ERC2771Context)"}},"id":2172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3255:8:15","memberName":"_msgData","nodeType":"MemberAccess","referencedDeclaration":3089,"src":"3249:14:15","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":2173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3249:16:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":2143,"id":2174,"nodeType":"Return","src":"3242:23:15"}]},"id":2176,"nodeType":"IfStatement","src":"3066:210:15","trueBody":{"id":2170,"nodeType":"Block","src":"3143:79:15","statements":[{"expression":{"baseExpression":{"expression":{"id":2163,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3164:3:15","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3168:4:15","memberName":"data","nodeType":"MemberAccess","src":"3164:8:15","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2165,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2145,"src":"3174:14:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2166,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"3191:19:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3174:36:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2168,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"3164:47:15","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},"functionReturnParameters":2143,"id":2169,"nodeType":"Return","src":"3157:54:15"}]}}]},"documentation":{"id":2138,"nodeType":"StructuredDocumentation","src":"2641:222:15","text":" @dev Override for `msg.data`. Defaults to the original `msg.data` whenever\n a call is not performed by the trusted forwarder or the calldata length is less than\n 20 bytes (an address length)."},"id":2178,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"2877:8:15","nodeType":"FunctionDefinition","overrides":{"id":2140,"nodeType":"OverrideSpecifier","overrides":[],"src":"2910:8:15"},"parameters":{"id":2139,"nodeType":"ParameterList","parameters":[],"src":"2885:2:15"},"returnParameters":{"id":2143,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2142,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2178,"src":"2928:14:15","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":2141,"name":"bytes","nodeType":"ElementaryTypeName","src":"2928:5:15","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2927:16:15"},"scope":2189,"src":"2868:414:15","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[3097],"body":{"id":2187,"nodeType":"Block","src":"3466:26:15","statements":[{"expression":{"hexValue":"3230","id":2185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3483:2:15","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"functionReturnParameters":2184,"id":2186,"nodeType":"Return","src":"3476:9:15"}]},"documentation":{"id":2179,"nodeType":"StructuredDocumentation","src":"3288:92:15","text":" @dev ERC-2771 specifies the context as being a single address (20 bytes)."},"id":2188,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"3394:20:15","nodeType":"FunctionDefinition","overrides":{"id":2181,"nodeType":"OverrideSpecifier","overrides":[],"src":"3439:8:15"},"parameters":{"id":2180,"nodeType":"ParameterList","parameters":[],"src":"3414:2:15"},"returnParameters":{"id":2184,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2183,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2188,"src":"3457:7:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2182,"name":"uint256","nodeType":"ElementaryTypeName","src":"3457:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3456:9:15"},"scope":2189,"src":"3385:107:15","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":2190,"src":"969:2525:15","usedErrors":[],"usedEvents":[]}],"src":"109:3386:15"},"id":15},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","exportedSymbols":{"Context":[3098],"ERC20":[2704],"IERC20":[2782],"IERC20Errors":[1951],"IERC20Metadata":[2808]},"id":2705,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2191,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"105:24:16"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"./IERC20.sol","id":2193,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2705,"sourceUnit":2783,"src":"131:36:16","symbolAliases":[{"foreign":{"id":2192,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2782,"src":"139:6:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"./extensions/IERC20Metadata.sol","id":2195,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2705,"sourceUnit":2809,"src":"168:63:16","symbolAliases":[{"foreign":{"id":2194,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2808,"src":"176:14:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":2197,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2705,"sourceUnit":3099,"src":"232:48:16","symbolAliases":[{"foreign":{"id":2196,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3098,"src":"240:7:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"../../interfaces/draft-IERC6093.sol","id":2199,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2705,"sourceUnit":2047,"src":"281:65:16","symbolAliases":[{"foreign":{"id":2198,"name":"IERC20Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1951,"src":"289:12:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":2201,"name":"Context","nameLocations":["1133:7:16"],"nodeType":"IdentifierPath","referencedDeclaration":3098,"src":"1133:7:16"},"id":2202,"nodeType":"InheritanceSpecifier","src":"1133:7:16"},{"baseName":{"id":2203,"name":"IERC20","nameLocations":["1142:6:16"],"nodeType":"IdentifierPath","referencedDeclaration":2782,"src":"1142:6:16"},"id":2204,"nodeType":"InheritanceSpecifier","src":"1142:6:16"},{"baseName":{"id":2205,"name":"IERC20Metadata","nameLocations":["1150:14:16"],"nodeType":"IdentifierPath","referencedDeclaration":2808,"src":"1150:14:16"},"id":2206,"nodeType":"InheritanceSpecifier","src":"1150:14:16"},{"baseName":{"id":2207,"name":"IERC20Errors","nameLocations":["1166:12:16"],"nodeType":"IdentifierPath","referencedDeclaration":1951,"src":"1166:12:16"},"id":2208,"nodeType":"InheritanceSpecifier","src":"1166:12:16"}],"canonicalName":"ERC20","contractDependencies":[],"contractKind":"contract","documentation":{"id":2200,"nodeType":"StructuredDocumentation","src":"348:757:16","text":" @dev Implementation of the {IERC20} interface.\n This implementation is agnostic to the way tokens are created. This means\n that a supply mechanism has to be added in a derived contract using {_mint}.\n TIP: For a detailed writeup see our guide\n https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n to implement supply mechanisms].\n The default value of {decimals} is 18. To change this, you should override\n this function so it returns a different value.\n We have followed general OpenZeppelin Contracts guidelines: functions revert\n instead returning `false` on failure. This behavior is nonetheless\n conventional and does not conflict with the expectations of ERC-20\n applications."},"fullyImplemented":true,"id":2704,"linearizedBaseContracts":[2704,1951,2808,2782,3098],"name":"ERC20","nameLocation":"1124:5:16","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":2212,"mutability":"mutable","name":"_balances","nameLocation":"1229:9:16","nodeType":"VariableDeclaration","scope":2704,"src":"1185:53:16","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":2211,"keyName":"account","keyNameLocation":"1201:7:16","keyType":{"id":2209,"name":"address","nodeType":"ElementaryTypeName","src":"1193:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1185:35:16","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2210,"name":"uint256","nodeType":"ElementaryTypeName","src":"1212:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":2218,"mutability":"mutable","name":"_allowances","nameLocation":"1317:11:16","nodeType":"VariableDeclaration","scope":2704,"src":"1245:83:16","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":2217,"keyName":"account","keyNameLocation":"1261:7:16","keyType":{"id":2213,"name":"address","nodeType":"ElementaryTypeName","src":"1253:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1245:63:16","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2216,"keyName":"spender","keyNameLocation":"1288:7:16","keyType":{"id":2214,"name":"address","nodeType":"ElementaryTypeName","src":"1280:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1272:35:16","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2215,"name":"uint256","nodeType":"ElementaryTypeName","src":"1299:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"id":2220,"mutability":"mutable","name":"_totalSupply","nameLocation":"1351:12:16","nodeType":"VariableDeclaration","scope":2704,"src":"1335:28:16","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2219,"name":"uint256","nodeType":"ElementaryTypeName","src":"1335:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":2222,"mutability":"mutable","name":"_name","nameLocation":"1385:5:16","nodeType":"VariableDeclaration","scope":2704,"src":"1370:20:16","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":2221,"name":"string","nodeType":"ElementaryTypeName","src":"1370:6:16","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":2224,"mutability":"mutable","name":"_symbol","nameLocation":"1411:7:16","nodeType":"VariableDeclaration","scope":2704,"src":"1396:22:16","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":2223,"name":"string","nodeType":"ElementaryTypeName","src":"1396:6:16","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":2240,"nodeType":"Block","src":"1657:57:16","statements":[{"expression":{"id":2234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2232,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2222,"src":"1667:5:16","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2233,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2227,"src":"1675:5:16","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1667:13:16","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":2235,"nodeType":"ExpressionStatement","src":"1667:13:16"},{"expression":{"id":2238,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2236,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2224,"src":"1690:7:16","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2237,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2229,"src":"1700:7:16","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1690:17:16","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":2239,"nodeType":"ExpressionStatement","src":"1690:17:16"}]},"documentation":{"id":2225,"nodeType":"StructuredDocumentation","src":"1425:171:16","text":" @dev Sets the values for {name} and {symbol}.\n All two of these values are immutable: they can only be set once during\n construction."},"id":2241,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":2230,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2227,"mutability":"mutable","name":"name_","nameLocation":"1627:5:16","nodeType":"VariableDeclaration","scope":2241,"src":"1613:19:16","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2226,"name":"string","nodeType":"ElementaryTypeName","src":"1613:6:16","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2229,"mutability":"mutable","name":"symbol_","nameLocation":"1648:7:16","nodeType":"VariableDeclaration","scope":2241,"src":"1634:21:16","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2228,"name":"string","nodeType":"ElementaryTypeName","src":"1634:6:16","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1612:44:16"},"returnParameters":{"id":2231,"nodeType":"ParameterList","parameters":[],"src":"1657:0:16"},"scope":2704,"src":"1601:113:16","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[2795],"body":{"id":2249,"nodeType":"Block","src":"1839:29:16","statements":[{"expression":{"id":2247,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2222,"src":"1856:5:16","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":2246,"id":2248,"nodeType":"Return","src":"1849:12:16"}]},"documentation":{"id":2242,"nodeType":"StructuredDocumentation","src":"1720:54:16","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":2250,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"1788:4:16","nodeType":"FunctionDefinition","parameters":{"id":2243,"nodeType":"ParameterList","parameters":[],"src":"1792:2:16"},"returnParameters":{"id":2246,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2245,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2250,"src":"1824:13:16","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2244,"name":"string","nodeType":"ElementaryTypeName","src":"1824:6:16","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1823:15:16"},"scope":2704,"src":"1779:89:16","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2801],"body":{"id":2258,"nodeType":"Block","src":"2043:31:16","statements":[{"expression":{"id":2256,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2224,"src":"2060:7:16","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":2255,"id":2257,"nodeType":"Return","src":"2053:14:16"}]},"documentation":{"id":2251,"nodeType":"StructuredDocumentation","src":"1874:102:16","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":2259,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"1990:6:16","nodeType":"FunctionDefinition","parameters":{"id":2252,"nodeType":"ParameterList","parameters":[],"src":"1996:2:16"},"returnParameters":{"id":2255,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2254,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2259,"src":"2028:13:16","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2253,"name":"string","nodeType":"ElementaryTypeName","src":"2028:6:16","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2027:15:16"},"scope":2704,"src":"1981:93:16","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2807],"body":{"id":2267,"nodeType":"Block","src":"2763:26:16","statements":[{"expression":{"hexValue":"3138","id":2265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2780:2:16","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":2264,"id":2266,"nodeType":"Return","src":"2773:9:16"}]},"documentation":{"id":2260,"nodeType":"StructuredDocumentation","src":"2080:622:16","text":" @dev Returns the number of decimals used to get its user representation.\n For example, if `decimals` equals `2`, a balance of `505` tokens should\n be displayed to a user as `5.05` (`505 / 10 ** 2`).\n Tokens usually opt for a value of 18, imitating the relationship between\n Ether and Wei. This is the default value returned by this function, unless\n it's overridden.\n NOTE: This information is only used for _display_ purposes: it in\n no way affects any of the arithmetic of the contract, including\n {IERC20-balanceOf} and {IERC20-transfer}."},"functionSelector":"313ce567","id":2268,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"2716:8:16","nodeType":"FunctionDefinition","parameters":{"id":2261,"nodeType":"ParameterList","parameters":[],"src":"2724:2:16"},"returnParameters":{"id":2264,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2263,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2268,"src":"2756:5:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2262,"name":"uint8","nodeType":"ElementaryTypeName","src":"2756:5:16","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2755:7:16"},"scope":2704,"src":"2707:82:16","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2731],"body":{"id":2276,"nodeType":"Block","src":"2910:36:16","statements":[{"expression":{"id":2274,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2220,"src":"2927:12:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2273,"id":2275,"nodeType":"Return","src":"2920:19:16"}]},"documentation":{"id":2269,"nodeType":"StructuredDocumentation","src":"2795:49:16","text":" @dev See {IERC20-totalSupply}."},"functionSelector":"18160ddd","id":2277,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"2858:11:16","nodeType":"FunctionDefinition","parameters":{"id":2270,"nodeType":"ParameterList","parameters":[],"src":"2869:2:16"},"returnParameters":{"id":2273,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2272,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2277,"src":"2901:7:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2271,"name":"uint256","nodeType":"ElementaryTypeName","src":"2901:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2900:9:16"},"scope":2704,"src":"2849:97:16","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2739],"body":{"id":2289,"nodeType":"Block","src":"3078:42:16","statements":[{"expression":{"baseExpression":{"id":2285,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2212,"src":"3095:9:16","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2287,"indexExpression":{"id":2286,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2280,"src":"3105:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3095:18:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2284,"id":2288,"nodeType":"Return","src":"3088:25:16"}]},"documentation":{"id":2278,"nodeType":"StructuredDocumentation","src":"2952:47:16","text":" @dev See {IERC20-balanceOf}."},"functionSelector":"70a08231","id":2290,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"3013:9:16","nodeType":"FunctionDefinition","parameters":{"id":2281,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2280,"mutability":"mutable","name":"account","nameLocation":"3031:7:16","nodeType":"VariableDeclaration","scope":2290,"src":"3023:15:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2279,"name":"address","nodeType":"ElementaryTypeName","src":"3023:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3022:17:16"},"returnParameters":{"id":2284,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2283,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2290,"src":"3069:7:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2282,"name":"uint256","nodeType":"ElementaryTypeName","src":"3069:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3068:9:16"},"scope":2704,"src":"3004:116:16","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2749],"body":{"id":2313,"nodeType":"Block","src":"3390:103:16","statements":[{"assignments":[2301],"declarations":[{"constant":false,"id":2301,"mutability":"mutable","name":"owner","nameLocation":"3408:5:16","nodeType":"VariableDeclaration","scope":2313,"src":"3400:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2300,"name":"address","nodeType":"ElementaryTypeName","src":"3400:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2304,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":2302,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3080,"src":"3416:10:16","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3416:12:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3400:28:16"},{"expression":{"arguments":[{"id":2306,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2301,"src":"3448:5:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2307,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2293,"src":"3455:2:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2308,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2295,"src":"3459:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2305,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2434,"src":"3438:9:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3438:27:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2310,"nodeType":"ExpressionStatement","src":"3438:27:16"},{"expression":{"hexValue":"74727565","id":2311,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3482:4:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2299,"id":2312,"nodeType":"Return","src":"3475:11:16"}]},"documentation":{"id":2291,"nodeType":"StructuredDocumentation","src":"3126:184:16","text":" @dev See {IERC20-transfer}.\n Requirements:\n - `to` cannot be the zero address.\n - the caller must have a balance of at least `value`."},"functionSelector":"a9059cbb","id":2314,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"3324:8:16","nodeType":"FunctionDefinition","parameters":{"id":2296,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2293,"mutability":"mutable","name":"to","nameLocation":"3341:2:16","nodeType":"VariableDeclaration","scope":2314,"src":"3333:10:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2292,"name":"address","nodeType":"ElementaryTypeName","src":"3333:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2295,"mutability":"mutable","name":"value","nameLocation":"3353:5:16","nodeType":"VariableDeclaration","scope":2314,"src":"3345:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2294,"name":"uint256","nodeType":"ElementaryTypeName","src":"3345:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3332:27:16"},"returnParameters":{"id":2299,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2298,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2314,"src":"3384:4:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2297,"name":"bool","nodeType":"ElementaryTypeName","src":"3384:4:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3383:6:16"},"scope":2704,"src":"3315:178:16","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2759],"body":{"id":2330,"nodeType":"Block","src":"3640:51:16","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":2324,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2218,"src":"3657:11:16","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":2326,"indexExpression":{"id":2325,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2317,"src":"3669:5:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3657:18:16","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2328,"indexExpression":{"id":2327,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2319,"src":"3676:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3657:27:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2323,"id":2329,"nodeType":"Return","src":"3650:34:16"}]},"documentation":{"id":2315,"nodeType":"StructuredDocumentation","src":"3499:47:16","text":" @dev See {IERC20-allowance}."},"functionSelector":"dd62ed3e","id":2331,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"3560:9:16","nodeType":"FunctionDefinition","parameters":{"id":2320,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2317,"mutability":"mutable","name":"owner","nameLocation":"3578:5:16","nodeType":"VariableDeclaration","scope":2331,"src":"3570:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2316,"name":"address","nodeType":"ElementaryTypeName","src":"3570:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2319,"mutability":"mutable","name":"spender","nameLocation":"3593:7:16","nodeType":"VariableDeclaration","scope":2331,"src":"3585:15:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2318,"name":"address","nodeType":"ElementaryTypeName","src":"3585:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3569:32:16"},"returnParameters":{"id":2323,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2322,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2331,"src":"3631:7:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2321,"name":"uint256","nodeType":"ElementaryTypeName","src":"3631:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3630:9:16"},"scope":2704,"src":"3551:140:16","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2769],"body":{"id":2354,"nodeType":"Block","src":"4077:107:16","statements":[{"assignments":[2342],"declarations":[{"constant":false,"id":2342,"mutability":"mutable","name":"owner","nameLocation":"4095:5:16","nodeType":"VariableDeclaration","scope":2354,"src":"4087:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2341,"name":"address","nodeType":"ElementaryTypeName","src":"4087:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2345,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":2343,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3080,"src":"4103:10:16","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2344,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4103:12:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4087:28:16"},{"expression":{"arguments":[{"id":2347,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2342,"src":"4134:5:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2348,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2334,"src":"4141:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2349,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2336,"src":"4150:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2346,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[2595,2655],"referencedDeclaration":2595,"src":"4125:8:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2350,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4125:31:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2351,"nodeType":"ExpressionStatement","src":"4125:31:16"},{"expression":{"hexValue":"74727565","id":2352,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4173:4:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2340,"id":2353,"nodeType":"Return","src":"4166:11:16"}]},"documentation":{"id":2332,"nodeType":"StructuredDocumentation","src":"3697:296:16","text":" @dev See {IERC20-approve}.\n NOTE: If `value` is the maximum `uint256`, the allowance is not updated on\n `transferFrom`. This is semantically equivalent to an infinite approval.\n Requirements:\n - `spender` cannot be the zero address."},"functionSelector":"095ea7b3","id":2355,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"4007:7:16","nodeType":"FunctionDefinition","parameters":{"id":2337,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2334,"mutability":"mutable","name":"spender","nameLocation":"4023:7:16","nodeType":"VariableDeclaration","scope":2355,"src":"4015:15:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2333,"name":"address","nodeType":"ElementaryTypeName","src":"4015:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2336,"mutability":"mutable","name":"value","nameLocation":"4040:5:16","nodeType":"VariableDeclaration","scope":2355,"src":"4032:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2335,"name":"uint256","nodeType":"ElementaryTypeName","src":"4032:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4014:32:16"},"returnParameters":{"id":2340,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2339,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2355,"src":"4071:4:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2338,"name":"bool","nodeType":"ElementaryTypeName","src":"4071:4:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4070:6:16"},"scope":2704,"src":"3998:186:16","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2781],"body":{"id":2386,"nodeType":"Block","src":"4869:151:16","statements":[{"assignments":[2368],"declarations":[{"constant":false,"id":2368,"mutability":"mutable","name":"spender","nameLocation":"4887:7:16","nodeType":"VariableDeclaration","scope":2386,"src":"4879:15:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2367,"name":"address","nodeType":"ElementaryTypeName","src":"4879:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2371,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":2369,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3080,"src":"4897:10:16","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2370,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4897:12:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4879:30:16"},{"expression":{"arguments":[{"id":2373,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"4935:4:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2374,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2368,"src":"4941:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2375,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2362,"src":"4950:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2372,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2703,"src":"4919:15:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2376,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4919:37:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2377,"nodeType":"ExpressionStatement","src":"4919:37:16"},{"expression":{"arguments":[{"id":2379,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"4976:4:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2380,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2360,"src":"4982:2:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2381,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2362,"src":"4986:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2378,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2434,"src":"4966:9:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2382,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4966:26:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2383,"nodeType":"ExpressionStatement","src":"4966:26:16"},{"expression":{"hexValue":"74727565","id":2384,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5009:4:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2366,"id":2385,"nodeType":"Return","src":"5002:11:16"}]},"documentation":{"id":2356,"nodeType":"StructuredDocumentation","src":"4190:581:16","text":" @dev See {IERC20-transferFrom}.\n Skips emitting an {Approval} event indicating an allowance update. This is not\n required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].\n NOTE: Does not update the allowance if the current allowance\n is the maximum `uint256`.\n Requirements:\n - `from` and `to` cannot be the zero address.\n - `from` must have a balance of at least `value`.\n - the caller must have allowance for ``from``'s tokens of at least\n `value`."},"functionSelector":"23b872dd","id":2387,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"4785:12:16","nodeType":"FunctionDefinition","parameters":{"id":2363,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2358,"mutability":"mutable","name":"from","nameLocation":"4806:4:16","nodeType":"VariableDeclaration","scope":2387,"src":"4798:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2357,"name":"address","nodeType":"ElementaryTypeName","src":"4798:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2360,"mutability":"mutable","name":"to","nameLocation":"4820:2:16","nodeType":"VariableDeclaration","scope":2387,"src":"4812:10:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2359,"name":"address","nodeType":"ElementaryTypeName","src":"4812:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2362,"mutability":"mutable","name":"value","nameLocation":"4832:5:16","nodeType":"VariableDeclaration","scope":2387,"src":"4824:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2361,"name":"uint256","nodeType":"ElementaryTypeName","src":"4824:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4797:41:16"},"returnParameters":{"id":2366,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2365,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2387,"src":"4863:4:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2364,"name":"bool","nodeType":"ElementaryTypeName","src":"4863:4:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4862:6:16"},"scope":2704,"src":"4776:244:16","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":2433,"nodeType":"Block","src":"5462:231:16","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2397,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2390,"src":"5476:4:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2400,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5492:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2399,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5484:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2398,"name":"address","nodeType":"ElementaryTypeName","src":"5484:7:16","typeDescriptions":{}}},"id":2401,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5484:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5476:18:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2411,"nodeType":"IfStatement","src":"5472:86:16","trueBody":{"id":2410,"nodeType":"Block","src":"5496:62:16","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":2406,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5544:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2405,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5536:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2404,"name":"address","nodeType":"ElementaryTypeName","src":"5536:7:16","typeDescriptions":{}}},"id":2407,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5536:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2403,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1926,"src":"5517:18:16","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":2408,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5517:30:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2409,"nodeType":"RevertStatement","src":"5510:37:16"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2412,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2392,"src":"5571:2:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2415,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5585:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2414,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5577:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2413,"name":"address","nodeType":"ElementaryTypeName","src":"5577:7:16","typeDescriptions":{}}},"id":2416,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5577:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5571:16:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2426,"nodeType":"IfStatement","src":"5567:86:16","trueBody":{"id":2425,"nodeType":"Block","src":"5589:64:16","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":2421,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5639:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2420,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5631:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2419,"name":"address","nodeType":"ElementaryTypeName","src":"5631:7:16","typeDescriptions":{}}},"id":2422,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5631:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2418,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1931,"src":"5610:20:16","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":2423,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5610:32:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2424,"nodeType":"RevertStatement","src":"5603:39:16"}]}},{"expression":{"arguments":[{"id":2428,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2390,"src":"5670:4:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2429,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2392,"src":"5676:2:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2430,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2394,"src":"5680:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2427,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2511,"src":"5662:7:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2431,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5662:24:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2432,"nodeType":"ExpressionStatement","src":"5662:24:16"}]},"documentation":{"id":2388,"nodeType":"StructuredDocumentation","src":"5026:362:16","text":" @dev Moves a `value` amount of tokens from `from` to `to`.\n This internal function is equivalent to {transfer}, and can be used to\n e.g. implement automatic token fees, slashing mechanisms, etc.\n Emits a {Transfer} event.\n NOTE: This function is not virtual, {_update} should be overridden instead."},"id":2434,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"5402:9:16","nodeType":"FunctionDefinition","parameters":{"id":2395,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2390,"mutability":"mutable","name":"from","nameLocation":"5420:4:16","nodeType":"VariableDeclaration","scope":2434,"src":"5412:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2389,"name":"address","nodeType":"ElementaryTypeName","src":"5412:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2392,"mutability":"mutable","name":"to","nameLocation":"5434:2:16","nodeType":"VariableDeclaration","scope":2434,"src":"5426:10:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2391,"name":"address","nodeType":"ElementaryTypeName","src":"5426:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2394,"mutability":"mutable","name":"value","nameLocation":"5446:5:16","nodeType":"VariableDeclaration","scope":2434,"src":"5438:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2393,"name":"uint256","nodeType":"ElementaryTypeName","src":"5438:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5411:41:16"},"returnParameters":{"id":2396,"nodeType":"ParameterList","parameters":[],"src":"5462:0:16"},"scope":2704,"src":"5393:300:16","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2510,"nodeType":"Block","src":"6083:1032:16","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2444,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2437,"src":"6097:4:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2447,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6113:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2446,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6105:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2445,"name":"address","nodeType":"ElementaryTypeName","src":"6105:7:16","typeDescriptions":{}}},"id":2448,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6105:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6097:18:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2481,"nodeType":"Block","src":"6271:362:16","statements":[{"assignments":[2456],"declarations":[{"constant":false,"id":2456,"mutability":"mutable","name":"fromBalance","nameLocation":"6293:11:16","nodeType":"VariableDeclaration","scope":2481,"src":"6285:19:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2455,"name":"uint256","nodeType":"ElementaryTypeName","src":"6285:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2460,"initialValue":{"baseExpression":{"id":2457,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2212,"src":"6307:9:16","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2459,"indexExpression":{"id":2458,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2437,"src":"6317:4:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6307:15:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6285:37:16"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2461,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2456,"src":"6340:11:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2462,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2441,"src":"6354:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6340:19:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2471,"nodeType":"IfStatement","src":"6336:115:16","trueBody":{"id":2470,"nodeType":"Block","src":"6361:90:16","statements":[{"errorCall":{"arguments":[{"id":2465,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2437,"src":"6411:4:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2466,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2456,"src":"6417:11:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2467,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2441,"src":"6430:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2464,"name":"ERC20InsufficientBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1921,"src":"6386:24:16","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":2468,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6386:50:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2469,"nodeType":"RevertStatement","src":"6379:57:16"}]}},{"id":2480,"nodeType":"UncheckedBlock","src":"6464:159:16","statements":[{"expression":{"id":2478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2472,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2212,"src":"6571:9:16","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2474,"indexExpression":{"id":2473,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2437,"src":"6581:4:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6571:15:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2477,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2475,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2456,"src":"6589:11:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2476,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2441,"src":"6603:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6589:19:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6571:37:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2479,"nodeType":"ExpressionStatement","src":"6571:37:16"}]}]},"id":2482,"nodeType":"IfStatement","src":"6093:540:16","trueBody":{"id":2454,"nodeType":"Block","src":"6117:148:16","statements":[{"expression":{"id":2452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2450,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2220,"src":"6233:12:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":2451,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2441,"src":"6249:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6233:21:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2453,"nodeType":"ExpressionStatement","src":"6233:21:16"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2488,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2483,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2439,"src":"6647:2:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2486,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6661:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2485,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6653:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2484,"name":"address","nodeType":"ElementaryTypeName","src":"6653:7:16","typeDescriptions":{}}},"id":2487,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6653:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6647:16:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2502,"nodeType":"Block","src":"6862:206:16","statements":[{"id":2501,"nodeType":"UncheckedBlock","src":"6876:182:16","statements":[{"expression":{"id":2499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2495,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2212,"src":"7021:9:16","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2497,"indexExpression":{"id":2496,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2439,"src":"7031:2:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7021:13:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":2498,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2441,"src":"7038:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7021:22:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2500,"nodeType":"ExpressionStatement","src":"7021:22:16"}]}]},"id":2503,"nodeType":"IfStatement","src":"6643:425:16","trueBody":{"id":2494,"nodeType":"Block","src":"6665:191:16","statements":[{"id":2493,"nodeType":"UncheckedBlock","src":"6679:167:16","statements":[{"expression":{"id":2491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2489,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2220,"src":"6810:12:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2490,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2441,"src":"6826:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6810:21:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2492,"nodeType":"ExpressionStatement","src":"6810:21:16"}]}]}},{"eventCall":{"arguments":[{"id":2505,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2437,"src":"7092:4:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2506,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2439,"src":"7098:2:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2507,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2441,"src":"7102:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2504,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2716,"src":"7083:8:16","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2508,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7083:25:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2509,"nodeType":"EmitStatement","src":"7078:30:16"}]},"documentation":{"id":2435,"nodeType":"StructuredDocumentation","src":"5699:304:16","text":" @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`\n (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding\n this function.\n Emits a {Transfer} event."},"id":2511,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"6017:7:16","nodeType":"FunctionDefinition","parameters":{"id":2442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2437,"mutability":"mutable","name":"from","nameLocation":"6033:4:16","nodeType":"VariableDeclaration","scope":2511,"src":"6025:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2436,"name":"address","nodeType":"ElementaryTypeName","src":"6025:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2439,"mutability":"mutable","name":"to","nameLocation":"6047:2:16","nodeType":"VariableDeclaration","scope":2511,"src":"6039:10:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2438,"name":"address","nodeType":"ElementaryTypeName","src":"6039:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2441,"mutability":"mutable","name":"value","nameLocation":"6059:5:16","nodeType":"VariableDeclaration","scope":2511,"src":"6051:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2440,"name":"uint256","nodeType":"ElementaryTypeName","src":"6051:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6024:41:16"},"returnParameters":{"id":2443,"nodeType":"ParameterList","parameters":[],"src":"6083:0:16"},"scope":2704,"src":"6008:1107:16","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2543,"nodeType":"Block","src":"7514:152:16","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2519,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2514,"src":"7528:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2522,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7547:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2521,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7539:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2520,"name":"address","nodeType":"ElementaryTypeName","src":"7539:7:16","typeDescriptions":{}}},"id":2523,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7539:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7528:21:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2533,"nodeType":"IfStatement","src":"7524:91:16","trueBody":{"id":2532,"nodeType":"Block","src":"7551:64:16","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":2528,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7601:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2527,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7593:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2526,"name":"address","nodeType":"ElementaryTypeName","src":"7593:7:16","typeDescriptions":{}}},"id":2529,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7593:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2525,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1931,"src":"7572:20:16","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":2530,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7572:32:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2531,"nodeType":"RevertStatement","src":"7565:39:16"}]}},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":2537,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7640:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2536,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7632:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2535,"name":"address","nodeType":"ElementaryTypeName","src":"7632:7:16","typeDescriptions":{}}},"id":2538,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7632:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2539,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2514,"src":"7644:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2540,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2516,"src":"7653:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2534,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2511,"src":"7624:7:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7624:35:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2542,"nodeType":"ExpressionStatement","src":"7624:35:16"}]},"documentation":{"id":2512,"nodeType":"StructuredDocumentation","src":"7121:332:16","text":" @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).\n Relies on the `_update` mechanism\n Emits a {Transfer} event with `from` set to the zero address.\n NOTE: This function is not virtual, {_update} should be overridden instead."},"id":2544,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"7467:5:16","nodeType":"FunctionDefinition","parameters":{"id":2517,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2514,"mutability":"mutable","name":"account","nameLocation":"7481:7:16","nodeType":"VariableDeclaration","scope":2544,"src":"7473:15:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2513,"name":"address","nodeType":"ElementaryTypeName","src":"7473:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2516,"mutability":"mutable","name":"value","nameLocation":"7498:5:16","nodeType":"VariableDeclaration","scope":2544,"src":"7490:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2515,"name":"uint256","nodeType":"ElementaryTypeName","src":"7490:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7472:32:16"},"returnParameters":{"id":2518,"nodeType":"ParameterList","parameters":[],"src":"7514:0:16"},"scope":2704,"src":"7458:208:16","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2576,"nodeType":"Block","src":"8040:150:16","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2557,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2552,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2547,"src":"8054:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2555,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8073:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2554,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8065:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2553,"name":"address","nodeType":"ElementaryTypeName","src":"8065:7:16","typeDescriptions":{}}},"id":2556,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8065:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8054:21:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2566,"nodeType":"IfStatement","src":"8050:89:16","trueBody":{"id":2565,"nodeType":"Block","src":"8077:62:16","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":2561,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8125:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2560,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8117:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2559,"name":"address","nodeType":"ElementaryTypeName","src":"8117:7:16","typeDescriptions":{}}},"id":2562,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8117:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2558,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1926,"src":"8098:18:16","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":2563,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8098:30:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2564,"nodeType":"RevertStatement","src":"8091:37:16"}]}},{"expression":{"arguments":[{"id":2568,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2547,"src":"8156:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":2571,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8173:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2570,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8165:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2569,"name":"address","nodeType":"ElementaryTypeName","src":"8165:7:16","typeDescriptions":{}}},"id":2572,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8165:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2573,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2549,"src":"8177:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2567,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2511,"src":"8148:7:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2574,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8148:35:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2575,"nodeType":"ExpressionStatement","src":"8148:35:16"}]},"documentation":{"id":2545,"nodeType":"StructuredDocumentation","src":"7672:307:16","text":" @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.\n Relies on the `_update` mechanism.\n Emits a {Transfer} event with `to` set to the zero address.\n NOTE: This function is not virtual, {_update} should be overridden instead"},"id":2577,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"7993:5:16","nodeType":"FunctionDefinition","parameters":{"id":2550,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2547,"mutability":"mutable","name":"account","nameLocation":"8007:7:16","nodeType":"VariableDeclaration","scope":2577,"src":"7999:15:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2546,"name":"address","nodeType":"ElementaryTypeName","src":"7999:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2549,"mutability":"mutable","name":"value","nameLocation":"8024:5:16","nodeType":"VariableDeclaration","scope":2577,"src":"8016:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2548,"name":"uint256","nodeType":"ElementaryTypeName","src":"8016:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7998:32:16"},"returnParameters":{"id":2551,"nodeType":"ParameterList","parameters":[],"src":"8040:0:16"},"scope":2704,"src":"7984:206:16","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2594,"nodeType":"Block","src":"8800:54:16","statements":[{"expression":{"arguments":[{"id":2588,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2580,"src":"8819:5:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2589,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2582,"src":"8826:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2590,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2584,"src":"8835:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":2591,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8842:4:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":2587,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[2595,2655],"referencedDeclaration":2655,"src":"8810:8:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":2592,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8810:37:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2593,"nodeType":"ExpressionStatement","src":"8810:37:16"}]},"documentation":{"id":2578,"nodeType":"StructuredDocumentation","src":"8196:525:16","text":" @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.\n This internal function is equivalent to `approve`, and can be used to\n e.g. set automatic allowances for certain subsystems, etc.\n Emits an {Approval} event.\n Requirements:\n - `owner` cannot be the zero address.\n - `spender` cannot be the zero address.\n Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument."},"id":2595,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"8735:8:16","nodeType":"FunctionDefinition","parameters":{"id":2585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2580,"mutability":"mutable","name":"owner","nameLocation":"8752:5:16","nodeType":"VariableDeclaration","scope":2595,"src":"8744:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2579,"name":"address","nodeType":"ElementaryTypeName","src":"8744:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2582,"mutability":"mutable","name":"spender","nameLocation":"8767:7:16","nodeType":"VariableDeclaration","scope":2595,"src":"8759:15:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2581,"name":"address","nodeType":"ElementaryTypeName","src":"8759:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2584,"mutability":"mutable","name":"value","nameLocation":"8784:5:16","nodeType":"VariableDeclaration","scope":2595,"src":"8776:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2583,"name":"uint256","nodeType":"ElementaryTypeName","src":"8776:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8743:47:16"},"returnParameters":{"id":2586,"nodeType":"ParameterList","parameters":[],"src":"8800:0:16"},"scope":2704,"src":"8726:128:16","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2654,"nodeType":"Block","src":"9799:334:16","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2607,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2598,"src":"9813:5:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2610,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9830:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2609,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9822:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2608,"name":"address","nodeType":"ElementaryTypeName","src":"9822:7:16","typeDescriptions":{}}},"id":2611,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9822:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9813:19:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2621,"nodeType":"IfStatement","src":"9809:89:16","trueBody":{"id":2620,"nodeType":"Block","src":"9834:64:16","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":2616,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9884:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2615,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9876:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2614,"name":"address","nodeType":"ElementaryTypeName","src":"9876:7:16","typeDescriptions":{}}},"id":2617,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9876:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2613,"name":"ERC20InvalidApprover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1945,"src":"9855:20:16","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":2618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9855:32:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2619,"nodeType":"RevertStatement","src":"9848:39:16"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2622,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2600,"src":"9911:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2625,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9930:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2624,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9922:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2623,"name":"address","nodeType":"ElementaryTypeName","src":"9922:7:16","typeDescriptions":{}}},"id":2626,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9922:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9911:21:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2636,"nodeType":"IfStatement","src":"9907:90:16","trueBody":{"id":2635,"nodeType":"Block","src":"9934:63:16","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":2631,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9983:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2630,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9975:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2629,"name":"address","nodeType":"ElementaryTypeName","src":"9975:7:16","typeDescriptions":{}}},"id":2632,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9975:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2628,"name":"ERC20InvalidSpender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1950,"src":"9955:19:16","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":2633,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9955:31:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2634,"nodeType":"RevertStatement","src":"9948:38:16"}]}},{"expression":{"id":2643,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":2637,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2218,"src":"10006:11:16","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":2640,"indexExpression":{"id":2638,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2598,"src":"10018:5:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10006:18:16","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2641,"indexExpression":{"id":2639,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2600,"src":"10025:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10006:27:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2642,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2602,"src":"10036:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10006:35:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2644,"nodeType":"ExpressionStatement","src":"10006:35:16"},{"condition":{"id":2645,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2604,"src":"10055:9:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2653,"nodeType":"IfStatement","src":"10051:76:16","trueBody":{"id":2652,"nodeType":"Block","src":"10066:61:16","statements":[{"eventCall":{"arguments":[{"id":2647,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2598,"src":"10094:5:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2648,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2600,"src":"10101:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2649,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2602,"src":"10110:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2646,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2725,"src":"10085:8:16","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2650,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10085:31:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2651,"nodeType":"EmitStatement","src":"10080:36:16"}]}}]},"documentation":{"id":2596,"nodeType":"StructuredDocumentation","src":"8860:836:16","text":" @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.\n By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by\n `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any\n `Approval` event during `transferFrom` operations.\n Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to\n true using the following override:\n ```solidity\n function _approve(address owner, address spender, uint256 value, bool) internal virtual override {\n     super._approve(owner, spender, value, true);\n }\n ```\n Requirements are the same as {_approve}."},"id":2655,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"9710:8:16","nodeType":"FunctionDefinition","parameters":{"id":2605,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2598,"mutability":"mutable","name":"owner","nameLocation":"9727:5:16","nodeType":"VariableDeclaration","scope":2655,"src":"9719:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2597,"name":"address","nodeType":"ElementaryTypeName","src":"9719:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2600,"mutability":"mutable","name":"spender","nameLocation":"9742:7:16","nodeType":"VariableDeclaration","scope":2655,"src":"9734:15:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2599,"name":"address","nodeType":"ElementaryTypeName","src":"9734:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2602,"mutability":"mutable","name":"value","nameLocation":"9759:5:16","nodeType":"VariableDeclaration","scope":2655,"src":"9751:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2601,"name":"uint256","nodeType":"ElementaryTypeName","src":"9751:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2604,"mutability":"mutable","name":"emitEvent","nameLocation":"9771:9:16","nodeType":"VariableDeclaration","scope":2655,"src":"9766:14:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2603,"name":"bool","nodeType":"ElementaryTypeName","src":"9766:4:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9718:63:16"},"returnParameters":{"id":2606,"nodeType":"ParameterList","parameters":[],"src":"9799:0:16"},"scope":2704,"src":"9701:432:16","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2702,"nodeType":"Block","src":"10504:387:16","statements":[{"assignments":[2666],"declarations":[{"constant":false,"id":2666,"mutability":"mutable","name":"currentAllowance","nameLocation":"10522:16:16","nodeType":"VariableDeclaration","scope":2702,"src":"10514:24:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2665,"name":"uint256","nodeType":"ElementaryTypeName","src":"10514:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2671,"initialValue":{"arguments":[{"id":2668,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2658,"src":"10551:5:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2669,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2660,"src":"10558:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2667,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2331,"src":"10541:9:16","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":2670,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10541:25:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10514:52:16"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2678,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2672,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2666,"src":"10580:16:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":2675,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10604:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2674,"name":"uint256","nodeType":"ElementaryTypeName","src":"10604:7:16","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":2673,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10599:4:16","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":2676,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10599:13:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":2677,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10613:3:16","memberName":"max","nodeType":"MemberAccess","src":"10599:17:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10580:36:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2701,"nodeType":"IfStatement","src":"10576:309:16","trueBody":{"id":2700,"nodeType":"Block","src":"10618:267:16","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2679,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2666,"src":"10636:16:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2680,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2662,"src":"10655:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10636:24:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2689,"nodeType":"IfStatement","src":"10632:130:16","trueBody":{"id":2688,"nodeType":"Block","src":"10662:100:16","statements":[{"errorCall":{"arguments":[{"id":2683,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2660,"src":"10714:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2684,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2666,"src":"10723:16:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2685,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2662,"src":"10741:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2682,"name":"ERC20InsufficientAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1940,"src":"10687:26:16","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":2686,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10687:60:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2687,"nodeType":"RevertStatement","src":"10680:67:16"}]}},{"id":2699,"nodeType":"UncheckedBlock","src":"10775:100:16","statements":[{"expression":{"arguments":[{"id":2691,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2658,"src":"10812:5:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2692,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2660,"src":"10819:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2693,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2666,"src":"10828:16:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2694,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2662,"src":"10847:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10828:24:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":2696,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10854:5:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":2690,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[2595,2655],"referencedDeclaration":2655,"src":"10803:8:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":2697,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10803:57:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2698,"nodeType":"ExpressionStatement","src":"10803:57:16"}]}]}}]},"documentation":{"id":2656,"nodeType":"StructuredDocumentation","src":"10139:271:16","text":" @dev Updates `owner` s allowance for `spender` based on spent `value`.\n Does not update the allowance value in case of infinite allowance.\n Revert if not enough allowance is available.\n Does not emit an {Approval} event."},"id":2703,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"10424:15:16","nodeType":"FunctionDefinition","parameters":{"id":2663,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2658,"mutability":"mutable","name":"owner","nameLocation":"10448:5:16","nodeType":"VariableDeclaration","scope":2703,"src":"10440:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2657,"name":"address","nodeType":"ElementaryTypeName","src":"10440:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2660,"mutability":"mutable","name":"spender","nameLocation":"10463:7:16","nodeType":"VariableDeclaration","scope":2703,"src":"10455:15:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2659,"name":"address","nodeType":"ElementaryTypeName","src":"10455:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2662,"mutability":"mutable","name":"value","nameLocation":"10480:5:16","nodeType":"VariableDeclaration","scope":2703,"src":"10472:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2661,"name":"uint256","nodeType":"ElementaryTypeName","src":"10472:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10439:47:16"},"returnParameters":{"id":2664,"nodeType":"ParameterList","parameters":[],"src":"10504:0:16"},"scope":2704,"src":"10415:476:16","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":2705,"src":"1106:9787:16","usedErrors":[1921,1926,1931,1940,1945,1950],"usedEvents":[2716,2725]}],"src":"105:10789:16"},"id":16},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[2782]},"id":2783,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2706,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:17"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":2707,"nodeType":"StructuredDocumentation","src":"132:71:17","text":" @dev Interface of the ERC-20 standard as defined in the ERC."},"fullyImplemented":false,"id":2782,"linearizedBaseContracts":[2782],"name":"IERC20","nameLocation":"214:6:17","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":2708,"nodeType":"StructuredDocumentation","src":"227:158:17","text":" @dev Emitted when `value` tokens are moved from one account (`from`) to\n another (`to`).\n Note that `value` may be zero."},"eventSelector":"ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","id":2716,"name":"Transfer","nameLocation":"396:8:17","nodeType":"EventDefinition","parameters":{"id":2715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2710,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"421:4:17","nodeType":"VariableDeclaration","scope":2716,"src":"405:20:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2709,"name":"address","nodeType":"ElementaryTypeName","src":"405:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2712,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"443:2:17","nodeType":"VariableDeclaration","scope":2716,"src":"427:18:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2711,"name":"address","nodeType":"ElementaryTypeName","src":"427:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2714,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"455:5:17","nodeType":"VariableDeclaration","scope":2716,"src":"447:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2713,"name":"uint256","nodeType":"ElementaryTypeName","src":"447:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"404:57:17"},"src":"390:72:17"},{"anonymous":false,"documentation":{"id":2717,"nodeType":"StructuredDocumentation","src":"468:148:17","text":" @dev Emitted when the allowance of a `spender` for an `owner` is set by\n a call to {approve}. `value` is the new allowance."},"eventSelector":"8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925","id":2725,"name":"Approval","nameLocation":"627:8:17","nodeType":"EventDefinition","parameters":{"id":2724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2719,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"652:5:17","nodeType":"VariableDeclaration","scope":2725,"src":"636:21:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2718,"name":"address","nodeType":"ElementaryTypeName","src":"636:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2721,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"675:7:17","nodeType":"VariableDeclaration","scope":2725,"src":"659:23:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2720,"name":"address","nodeType":"ElementaryTypeName","src":"659:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2723,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"692:5:17","nodeType":"VariableDeclaration","scope":2725,"src":"684:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2722,"name":"uint256","nodeType":"ElementaryTypeName","src":"684:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"635:63:17"},"src":"621:78:17"},{"documentation":{"id":2726,"nodeType":"StructuredDocumentation","src":"705:65:17","text":" @dev Returns the value of tokens in existence."},"functionSelector":"18160ddd","id":2731,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"784:11:17","nodeType":"FunctionDefinition","parameters":{"id":2727,"nodeType":"ParameterList","parameters":[],"src":"795:2:17"},"returnParameters":{"id":2730,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2729,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2731,"src":"821:7:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2728,"name":"uint256","nodeType":"ElementaryTypeName","src":"821:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"820:9:17"},"scope":2782,"src":"775:55:17","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2732,"nodeType":"StructuredDocumentation","src":"836:71:17","text":" @dev Returns the value of tokens owned by `account`."},"functionSelector":"70a08231","id":2739,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"921:9:17","nodeType":"FunctionDefinition","parameters":{"id":2735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2734,"mutability":"mutable","name":"account","nameLocation":"939:7:17","nodeType":"VariableDeclaration","scope":2739,"src":"931:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2733,"name":"address","nodeType":"ElementaryTypeName","src":"931:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"930:17:17"},"returnParameters":{"id":2738,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2737,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2739,"src":"971:7:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2736,"name":"uint256","nodeType":"ElementaryTypeName","src":"971:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"970:9:17"},"scope":2782,"src":"912:68:17","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2740,"nodeType":"StructuredDocumentation","src":"986:213:17","text":" @dev Moves a `value` amount of tokens from the caller's account to `to`.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"a9059cbb","id":2749,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1213:8:17","nodeType":"FunctionDefinition","parameters":{"id":2745,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2742,"mutability":"mutable","name":"to","nameLocation":"1230:2:17","nodeType":"VariableDeclaration","scope":2749,"src":"1222:10:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2741,"name":"address","nodeType":"ElementaryTypeName","src":"1222:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2744,"mutability":"mutable","name":"value","nameLocation":"1242:5:17","nodeType":"VariableDeclaration","scope":2749,"src":"1234:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2743,"name":"uint256","nodeType":"ElementaryTypeName","src":"1234:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1221:27:17"},"returnParameters":{"id":2748,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2747,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2749,"src":"1267:4:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2746,"name":"bool","nodeType":"ElementaryTypeName","src":"1267:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1266:6:17"},"scope":2782,"src":"1204:69:17","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2750,"nodeType":"StructuredDocumentation","src":"1279:264:17","text":" @dev Returns the remaining number of tokens that `spender` will be\n allowed to spend on behalf of `owner` through {transferFrom}. This is\n zero by default.\n This value changes when {approve} or {transferFrom} are called."},"functionSelector":"dd62ed3e","id":2759,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1557:9:17","nodeType":"FunctionDefinition","parameters":{"id":2755,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2752,"mutability":"mutable","name":"owner","nameLocation":"1575:5:17","nodeType":"VariableDeclaration","scope":2759,"src":"1567:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2751,"name":"address","nodeType":"ElementaryTypeName","src":"1567:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2754,"mutability":"mutable","name":"spender","nameLocation":"1590:7:17","nodeType":"VariableDeclaration","scope":2759,"src":"1582:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2753,"name":"address","nodeType":"ElementaryTypeName","src":"1582:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1566:32:17"},"returnParameters":{"id":2758,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2757,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2759,"src":"1622:7:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2756,"name":"uint256","nodeType":"ElementaryTypeName","src":"1622:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1621:9:17"},"scope":2782,"src":"1548:83:17","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2760,"nodeType":"StructuredDocumentation","src":"1637:667:17","text":" @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n caller's tokens.\n Returns a boolean value indicating whether the operation succeeded.\n IMPORTANT: Beware that changing an allowance with this method brings the risk\n that someone may use both the old and the new allowance by unfortunate\n transaction ordering. One possible solution to mitigate this race\n condition is to first reduce the spender's allowance to 0 and set the\n desired value afterwards:\n https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n Emits an {Approval} event."},"functionSelector":"095ea7b3","id":2769,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2318:7:17","nodeType":"FunctionDefinition","parameters":{"id":2765,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2762,"mutability":"mutable","name":"spender","nameLocation":"2334:7:17","nodeType":"VariableDeclaration","scope":2769,"src":"2326:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2761,"name":"address","nodeType":"ElementaryTypeName","src":"2326:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2764,"mutability":"mutable","name":"value","nameLocation":"2351:5:17","nodeType":"VariableDeclaration","scope":2769,"src":"2343:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2763,"name":"uint256","nodeType":"ElementaryTypeName","src":"2343:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2325:32:17"},"returnParameters":{"id":2768,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2767,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2769,"src":"2376:4:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2766,"name":"bool","nodeType":"ElementaryTypeName","src":"2376:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2375:6:17"},"scope":2782,"src":"2309:73:17","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2770,"nodeType":"StructuredDocumentation","src":"2388:297:17","text":" @dev Moves a `value` amount of tokens from `from` to `to` using the\n allowance mechanism. `value` is then deducted from the caller's\n allowance.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"23b872dd","id":2781,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2699:12:17","nodeType":"FunctionDefinition","parameters":{"id":2777,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2772,"mutability":"mutable","name":"from","nameLocation":"2720:4:17","nodeType":"VariableDeclaration","scope":2781,"src":"2712:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2771,"name":"address","nodeType":"ElementaryTypeName","src":"2712:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2774,"mutability":"mutable","name":"to","nameLocation":"2734:2:17","nodeType":"VariableDeclaration","scope":2781,"src":"2726:10:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2773,"name":"address","nodeType":"ElementaryTypeName","src":"2726:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2776,"mutability":"mutable","name":"value","nameLocation":"2746:5:17","nodeType":"VariableDeclaration","scope":2781,"src":"2738:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2775,"name":"uint256","nodeType":"ElementaryTypeName","src":"2738:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2711:41:17"},"returnParameters":{"id":2780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2779,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2781,"src":"2771:4:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2778,"name":"bool","nodeType":"ElementaryTypeName","src":"2771:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2770:6:17"},"scope":2782,"src":"2690:87:17","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":2783,"src":"204:2575:17","usedErrors":[],"usedEvents":[2716,2725]}],"src":"106:2674:17"},"id":17},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","exportedSymbols":{"IERC20":[2782],"IERC20Metadata":[2808]},"id":2809,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2784,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"125:24:18"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":2786,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2809,"sourceUnit":2783,"src":"151:37:18","symbolAliases":[{"foreign":{"id":2785,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2782,"src":"159:6:18","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":2788,"name":"IERC20","nameLocations":["306:6:18"],"nodeType":"IdentifierPath","referencedDeclaration":2782,"src":"306:6:18"},"id":2789,"nodeType":"InheritanceSpecifier","src":"306:6:18"}],"canonicalName":"IERC20Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":2787,"nodeType":"StructuredDocumentation","src":"190:87:18","text":" @dev Interface for the optional metadata functions from the ERC-20 standard."},"fullyImplemented":false,"id":2808,"linearizedBaseContracts":[2808,2782],"name":"IERC20Metadata","nameLocation":"288:14:18","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":2790,"nodeType":"StructuredDocumentation","src":"319:54:18","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":2795,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"387:4:18","nodeType":"FunctionDefinition","parameters":{"id":2791,"nodeType":"ParameterList","parameters":[],"src":"391:2:18"},"returnParameters":{"id":2794,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2793,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2795,"src":"417:13:18","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2792,"name":"string","nodeType":"ElementaryTypeName","src":"417:6:18","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"416:15:18"},"scope":2808,"src":"378:54:18","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2796,"nodeType":"StructuredDocumentation","src":"438:56:18","text":" @dev Returns the symbol of the token."},"functionSelector":"95d89b41","id":2801,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"508:6:18","nodeType":"FunctionDefinition","parameters":{"id":2797,"nodeType":"ParameterList","parameters":[],"src":"514:2:18"},"returnParameters":{"id":2800,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2799,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2801,"src":"540:13:18","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2798,"name":"string","nodeType":"ElementaryTypeName","src":"540:6:18","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"539:15:18"},"scope":2808,"src":"499:56:18","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2802,"nodeType":"StructuredDocumentation","src":"561:65:18","text":" @dev Returns the decimals places of the token."},"functionSelector":"313ce567","id":2807,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"640:8:18","nodeType":"FunctionDefinition","parameters":{"id":2803,"nodeType":"ParameterList","parameters":[],"src":"648:2:18"},"returnParameters":{"id":2806,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2805,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2807,"src":"674:5:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2804,"name":"uint8","nodeType":"ElementaryTypeName","src":"674:5:18","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"673:7:18"},"scope":2808,"src":"631:50:18","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":2809,"src":"278:405:18","usedErrors":[],"usedEvents":[2716,2725]}],"src":"125:559:18"},"id":18},"@openzeppelin/contracts/utils/Address.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","exportedSymbols":{"Address":[3068],"Errors":[3120]},"id":3069,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2810,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:19"},{"absolutePath":"@openzeppelin/contracts/utils/Errors.sol","file":"./Errors.sol","id":2812,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3069,"sourceUnit":3121,"src":"127:36:19","symbolAliases":[{"foreign":{"id":2811,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3120,"src":"135:6:19","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Address","contractDependencies":[],"contractKind":"library","documentation":{"id":2813,"nodeType":"StructuredDocumentation","src":"165:67:19","text":" @dev Collection of functions related to the address type"},"fullyImplemented":true,"id":3068,"linearizedBaseContracts":[3068],"name":"Address","nameLocation":"241:7:19","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":2814,"nodeType":"StructuredDocumentation","src":"255:75:19","text":" @dev There's no code at `target` (it is not a contract)."},"errorSelector":"9996b315","id":2818,"name":"AddressEmptyCode","nameLocation":"341:16:19","nodeType":"ErrorDefinition","parameters":{"id":2817,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2816,"mutability":"mutable","name":"target","nameLocation":"366:6:19","nodeType":"VariableDeclaration","scope":2818,"src":"358:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2815,"name":"address","nodeType":"ElementaryTypeName","src":"358:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"357:16:19"},"src":"335:39:19"},{"body":{"id":2865,"nodeType":"Block","src":"1361:294:19","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2832,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":2828,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1383:4:19","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$3068","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$3068","typeString":"library Address"}],"id":2827,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1375:7:19","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2826,"name":"address","nodeType":"ElementaryTypeName","src":"1375:7:19","typeDescriptions":{}}},"id":2829,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1375:13:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2830,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1389:7:19","memberName":"balance","nodeType":"MemberAccess","src":"1375:21:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2831,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2823,"src":"1399:6:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1375:30:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2845,"nodeType":"IfStatement","src":"1371:125:19","trueBody":{"id":2844,"nodeType":"Block","src":"1407:89:19","statements":[{"errorCall":{"arguments":[{"expression":{"arguments":[{"id":2838,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1463:4:19","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$3068","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$3068","typeString":"library Address"}],"id":2837,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1455:7:19","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2836,"name":"address","nodeType":"ElementaryTypeName","src":"1455:7:19","typeDescriptions":{}}},"id":2839,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1455:13:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2840,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1469:7:19","memberName":"balance","nodeType":"MemberAccess","src":"1455:21:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2841,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2823,"src":"1478:6:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2833,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3120,"src":"1428:6:19","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$3120_$","typeString":"type(library Errors)"}},"id":2835,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1435:19:19","memberName":"InsufficientBalance","nodeType":"MemberAccess","referencedDeclaration":3108,"src":"1428:26:19","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":2842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1428:57:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2843,"nodeType":"RevertStatement","src":"1421:64:19"}]}},{"assignments":[2847,2849],"declarations":[{"constant":false,"id":2847,"mutability":"mutable","name":"success","nameLocation":"1512:7:19","nodeType":"VariableDeclaration","scope":2865,"src":"1507:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2846,"name":"bool","nodeType":"ElementaryTypeName","src":"1507:4:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2849,"mutability":"mutable","name":"returndata","nameLocation":"1534:10:19","nodeType":"VariableDeclaration","scope":2865,"src":"1521:23:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2848,"name":"bytes","nodeType":"ElementaryTypeName","src":"1521:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2856,"initialValue":{"arguments":[{"hexValue":"","id":2854,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1578:2:19","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"id":2850,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2821,"src":"1548:9:19","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":2851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1558:4:19","memberName":"call","nodeType":"MemberAccess","src":"1548:14:19","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":2853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":2852,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2823,"src":"1570:6:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"1548:29:19","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":2855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1548:33:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"1506:75:19"},{"condition":{"id":2858,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1595:8:19","subExpression":{"id":2857,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2847,"src":"1596:7:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2864,"nodeType":"IfStatement","src":"1591:58:19","trueBody":{"id":2863,"nodeType":"Block","src":"1605:44:19","statements":[{"expression":{"arguments":[{"id":2860,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2849,"src":"1627:10:19","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2859,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3067,"src":"1619:7:19","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":2861,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1619:19:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2862,"nodeType":"ExpressionStatement","src":"1619:19:19"}]}}]},"documentation":{"id":2819,"nodeType":"StructuredDocumentation","src":"380:905:19","text":" @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n `recipient`, forwarding all available gas and reverting on errors.\n https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n of certain opcodes, possibly making contracts go over the 2300 gas limit\n imposed by `transfer`, making them unable to receive funds via\n `transfer`. {sendValue} removes this limitation.\n https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n IMPORTANT: because control is transferred to `recipient`, care must be\n taken to not create reentrancy vulnerabilities. Consider using\n {ReentrancyGuard} or the\n https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]."},"id":2866,"implemented":true,"kind":"function","modifiers":[],"name":"sendValue","nameLocation":"1299:9:19","nodeType":"FunctionDefinition","parameters":{"id":2824,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2821,"mutability":"mutable","name":"recipient","nameLocation":"1325:9:19","nodeType":"VariableDeclaration","scope":2866,"src":"1309:25:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":2820,"name":"address","nodeType":"ElementaryTypeName","src":"1309:15:19","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":2823,"mutability":"mutable","name":"amount","nameLocation":"1344:6:19","nodeType":"VariableDeclaration","scope":2866,"src":"1336:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2822,"name":"uint256","nodeType":"ElementaryTypeName","src":"1336:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1308:43:19"},"returnParameters":{"id":2825,"nodeType":"ParameterList","parameters":[],"src":"1361:0:19"},"scope":3068,"src":"1290:365:19","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2882,"nodeType":"Block","src":"2589:62:19","statements":[{"expression":{"arguments":[{"id":2877,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2869,"src":"2628:6:19","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2878,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2871,"src":"2636:4:19","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":2879,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2642:1:19","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2876,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2933,"src":"2606:21:19","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256) returns (bytes memory)"}},"id":2880,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2606:38:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":2875,"id":2881,"nodeType":"Return","src":"2599:45:19"}]},"documentation":{"id":2867,"nodeType":"StructuredDocumentation","src":"1661:834:19","text":" @dev Performs a Solidity function call using a low level `call`. A\n plain `call` is an unsafe replacement for a function call: use this\n function instead.\n If `target` reverts with a revert reason or custom error, it is bubbled\n up by this function (like regular Solidity function calls). However, if\n the call reverted with no returned reason, this function reverts with a\n {Errors.FailedCall} error.\n Returns the raw returned data. To convert to the expected return value,\n use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n Requirements:\n - `target` must be a contract.\n - calling `target` with `data` must not revert."},"id":2883,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"2509:12:19","nodeType":"FunctionDefinition","parameters":{"id":2872,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2869,"mutability":"mutable","name":"target","nameLocation":"2530:6:19","nodeType":"VariableDeclaration","scope":2883,"src":"2522:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2868,"name":"address","nodeType":"ElementaryTypeName","src":"2522:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2871,"mutability":"mutable","name":"data","nameLocation":"2551:4:19","nodeType":"VariableDeclaration","scope":2883,"src":"2538:17:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2870,"name":"bytes","nodeType":"ElementaryTypeName","src":"2538:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2521:35:19"},"returnParameters":{"id":2875,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2874,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2883,"src":"2575:12:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2873,"name":"bytes","nodeType":"ElementaryTypeName","src":"2575:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2574:14:19"},"scope":3068,"src":"2500:151:19","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2932,"nodeType":"Block","src":"3088:294:19","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":2897,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3110:4:19","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$3068","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$3068","typeString":"library Address"}],"id":2896,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3102:7:19","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2895,"name":"address","nodeType":"ElementaryTypeName","src":"3102:7:19","typeDescriptions":{}}},"id":2898,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3102:13:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2899,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3116:7:19","memberName":"balance","nodeType":"MemberAccess","src":"3102:21:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2900,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2890,"src":"3126:5:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3102:29:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2914,"nodeType":"IfStatement","src":"3098:123:19","trueBody":{"id":2913,"nodeType":"Block","src":"3133:88:19","statements":[{"errorCall":{"arguments":[{"expression":{"arguments":[{"id":2907,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3189:4:19","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$3068","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$3068","typeString":"library Address"}],"id":2906,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3181:7:19","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2905,"name":"address","nodeType":"ElementaryTypeName","src":"3181:7:19","typeDescriptions":{}}},"id":2908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3181:13:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2909,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3195:7:19","memberName":"balance","nodeType":"MemberAccess","src":"3181:21:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2910,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2890,"src":"3204:5:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2902,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3120,"src":"3154:6:19","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$3120_$","typeString":"type(library Errors)"}},"id":2904,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3161:19:19","memberName":"InsufficientBalance","nodeType":"MemberAccess","referencedDeclaration":3108,"src":"3154:26:19","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":2911,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3154:56:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2912,"nodeType":"RevertStatement","src":"3147:63:19"}]}},{"assignments":[2916,2918],"declarations":[{"constant":false,"id":2916,"mutability":"mutable","name":"success","nameLocation":"3236:7:19","nodeType":"VariableDeclaration","scope":2932,"src":"3231:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2915,"name":"bool","nodeType":"ElementaryTypeName","src":"3231:4:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2918,"mutability":"mutable","name":"returndata","nameLocation":"3258:10:19","nodeType":"VariableDeclaration","scope":2932,"src":"3245:23:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2917,"name":"bytes","nodeType":"ElementaryTypeName","src":"3245:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2925,"initialValue":{"arguments":[{"id":2923,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2888,"src":"3298:4:19","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":2919,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2886,"src":"3272:6:19","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3279:4:19","memberName":"call","nodeType":"MemberAccess","src":"3272:11:19","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":2922,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":2921,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2890,"src":"3291:5:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"3272:25:19","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":2924,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3272:31:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"3230:73:19"},{"expression":{"arguments":[{"id":2927,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2886,"src":"3347:6:19","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2928,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2916,"src":"3355:7:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":2929,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2918,"src":"3364:10:19","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2926,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3025,"src":"3320:26:19","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory) view returns (bytes memory)"}},"id":2930,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3320:55:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":2894,"id":2931,"nodeType":"Return","src":"3313:62:19"}]},"documentation":{"id":2884,"nodeType":"StructuredDocumentation","src":"2657:313:19","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but also transferring `value` wei to `target`.\n Requirements:\n - the calling contract must have an ETH balance of at least `value`.\n - the called Solidity function must be `payable`."},"id":2933,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"2984:21:19","nodeType":"FunctionDefinition","parameters":{"id":2891,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2886,"mutability":"mutable","name":"target","nameLocation":"3014:6:19","nodeType":"VariableDeclaration","scope":2933,"src":"3006:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2885,"name":"address","nodeType":"ElementaryTypeName","src":"3006:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2888,"mutability":"mutable","name":"data","nameLocation":"3035:4:19","nodeType":"VariableDeclaration","scope":2933,"src":"3022:17:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2887,"name":"bytes","nodeType":"ElementaryTypeName","src":"3022:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2890,"mutability":"mutable","name":"value","nameLocation":"3049:5:19","nodeType":"VariableDeclaration","scope":2933,"src":"3041:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2889,"name":"uint256","nodeType":"ElementaryTypeName","src":"3041:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3005:50:19"},"returnParameters":{"id":2894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2893,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2933,"src":"3074:12:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2892,"name":"bytes","nodeType":"ElementaryTypeName","src":"3074:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3073:14:19"},"scope":3068,"src":"2975:407:19","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2958,"nodeType":"Block","src":"3621:154:19","statements":[{"assignments":[2944,2946],"declarations":[{"constant":false,"id":2944,"mutability":"mutable","name":"success","nameLocation":"3637:7:19","nodeType":"VariableDeclaration","scope":2958,"src":"3632:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2943,"name":"bool","nodeType":"ElementaryTypeName","src":"3632:4:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2946,"mutability":"mutable","name":"returndata","nameLocation":"3659:10:19","nodeType":"VariableDeclaration","scope":2958,"src":"3646:23:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2945,"name":"bytes","nodeType":"ElementaryTypeName","src":"3646:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2951,"initialValue":{"arguments":[{"id":2949,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2938,"src":"3691:4:19","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":2947,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2936,"src":"3673:6:19","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3680:10:19","memberName":"staticcall","nodeType":"MemberAccess","src":"3673:17:19","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":2950,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3673:23:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"3631:65:19"},{"expression":{"arguments":[{"id":2953,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2936,"src":"3740:6:19","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2954,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2944,"src":"3748:7:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":2955,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2946,"src":"3757:10:19","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2952,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3025,"src":"3713:26:19","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory) view returns (bytes memory)"}},"id":2956,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3713:55:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":2942,"id":2957,"nodeType":"Return","src":"3706:62:19"}]},"documentation":{"id":2934,"nodeType":"StructuredDocumentation","src":"3388:128:19","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call."},"id":2959,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"3530:18:19","nodeType":"FunctionDefinition","parameters":{"id":2939,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2936,"mutability":"mutable","name":"target","nameLocation":"3557:6:19","nodeType":"VariableDeclaration","scope":2959,"src":"3549:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2935,"name":"address","nodeType":"ElementaryTypeName","src":"3549:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2938,"mutability":"mutable","name":"data","nameLocation":"3578:4:19","nodeType":"VariableDeclaration","scope":2959,"src":"3565:17:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2937,"name":"bytes","nodeType":"ElementaryTypeName","src":"3565:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3548:35:19"},"returnParameters":{"id":2942,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2941,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2959,"src":"3607:12:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2940,"name":"bytes","nodeType":"ElementaryTypeName","src":"3607:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3606:14:19"},"scope":3068,"src":"3521:254:19","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":2984,"nodeType":"Block","src":"4013:156:19","statements":[{"assignments":[2970,2972],"declarations":[{"constant":false,"id":2970,"mutability":"mutable","name":"success","nameLocation":"4029:7:19","nodeType":"VariableDeclaration","scope":2984,"src":"4024:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2969,"name":"bool","nodeType":"ElementaryTypeName","src":"4024:4:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2972,"mutability":"mutable","name":"returndata","nameLocation":"4051:10:19","nodeType":"VariableDeclaration","scope":2984,"src":"4038:23:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2971,"name":"bytes","nodeType":"ElementaryTypeName","src":"4038:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2977,"initialValue":{"arguments":[{"id":2975,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2964,"src":"4085:4:19","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":2973,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2962,"src":"4065:6:19","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4072:12:19","memberName":"delegatecall","nodeType":"MemberAccess","src":"4065:19:19","typeDescriptions":{"typeIdentifier":"t_function_baredelegatecall_nonpayable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) returns (bool,bytes memory)"}},"id":2976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4065:25:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"4023:67:19"},{"expression":{"arguments":[{"id":2979,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2962,"src":"4134:6:19","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2980,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2970,"src":"4142:7:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":2981,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2972,"src":"4151:10:19","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2978,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3025,"src":"4107:26:19","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory) view returns (bytes memory)"}},"id":2982,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4107:55:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":2968,"id":2983,"nodeType":"Return","src":"4100:62:19"}]},"documentation":{"id":2960,"nodeType":"StructuredDocumentation","src":"3781:130:19","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call."},"id":2985,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"3925:20:19","nodeType":"FunctionDefinition","parameters":{"id":2965,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2962,"mutability":"mutable","name":"target","nameLocation":"3954:6:19","nodeType":"VariableDeclaration","scope":2985,"src":"3946:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2961,"name":"address","nodeType":"ElementaryTypeName","src":"3946:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2964,"mutability":"mutable","name":"data","nameLocation":"3975:4:19","nodeType":"VariableDeclaration","scope":2985,"src":"3962:17:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2963,"name":"bytes","nodeType":"ElementaryTypeName","src":"3962:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3945:35:19"},"returnParameters":{"id":2968,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2967,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2985,"src":"3999:12:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2966,"name":"bytes","nodeType":"ElementaryTypeName","src":"3999:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3998:14:19"},"scope":3068,"src":"3916:253:19","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3024,"nodeType":"Block","src":"4595:424:19","statements":[{"condition":{"id":2998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4609:8:19","subExpression":{"id":2997,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2990,"src":"4610:7:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3022,"nodeType":"Block","src":"4669:344:19","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3004,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2992,"src":"4857:10:19","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4868:6:19","memberName":"length","nodeType":"MemberAccess","src":"4857:17:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3006,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4878:1:19","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4857:22:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3012,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":3008,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2988,"src":"4883:6:19","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4890:4:19","memberName":"code","nodeType":"MemberAccess","src":"4883:11:19","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4895:6:19","memberName":"length","nodeType":"MemberAccess","src":"4883:18:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3011,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4905:1:19","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4883:23:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4857:49:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3019,"nodeType":"IfStatement","src":"4853:119:19","trueBody":{"id":3018,"nodeType":"Block","src":"4908:64:19","statements":[{"errorCall":{"arguments":[{"id":3015,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2988,"src":"4950:6:19","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3014,"name":"AddressEmptyCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2818,"src":"4933:16:19","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":3016,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4933:24:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":3017,"nodeType":"RevertStatement","src":"4926:31:19"}]}},{"expression":{"id":3020,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2992,"src":"4992:10:19","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":2996,"id":3021,"nodeType":"Return","src":"4985:17:19"}]},"id":3023,"nodeType":"IfStatement","src":"4605:408:19","trueBody":{"id":3003,"nodeType":"Block","src":"4619:44:19","statements":[{"expression":{"arguments":[{"id":3000,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2992,"src":"4641:10:19","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2999,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3067,"src":"4633:7:19","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":3001,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4633:19:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3002,"nodeType":"ExpressionStatement","src":"4633:19:19"}]}}]},"documentation":{"id":2986,"nodeType":"StructuredDocumentation","src":"4175:257:19","text":" @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target\n was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case\n of an unsuccessful call."},"id":3025,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResultFromTarget","nameLocation":"4446:26:19","nodeType":"FunctionDefinition","parameters":{"id":2993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2988,"mutability":"mutable","name":"target","nameLocation":"4490:6:19","nodeType":"VariableDeclaration","scope":3025,"src":"4482:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2987,"name":"address","nodeType":"ElementaryTypeName","src":"4482:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2990,"mutability":"mutable","name":"success","nameLocation":"4511:7:19","nodeType":"VariableDeclaration","scope":3025,"src":"4506:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2989,"name":"bool","nodeType":"ElementaryTypeName","src":"4506:4:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2992,"mutability":"mutable","name":"returndata","nameLocation":"4541:10:19","nodeType":"VariableDeclaration","scope":3025,"src":"4528:23:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2991,"name":"bytes","nodeType":"ElementaryTypeName","src":"4528:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4472:85:19"},"returnParameters":{"id":2996,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2995,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3025,"src":"4581:12:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2994,"name":"bytes","nodeType":"ElementaryTypeName","src":"4581:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4580:14:19"},"scope":3068,"src":"4437:582:19","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":3046,"nodeType":"Block","src":"5323:122:19","statements":[{"condition":{"id":3036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5337:8:19","subExpression":{"id":3035,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3028,"src":"5338:7:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3044,"nodeType":"Block","src":"5397:42:19","statements":[{"expression":{"id":3042,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3030,"src":"5418:10:19","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":3034,"id":3043,"nodeType":"Return","src":"5411:17:19"}]},"id":3045,"nodeType":"IfStatement","src":"5333:106:19","trueBody":{"id":3041,"nodeType":"Block","src":"5347:44:19","statements":[{"expression":{"arguments":[{"id":3038,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3030,"src":"5369:10:19","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3037,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3067,"src":"5361:7:19","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":3039,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5361:19:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3040,"nodeType":"ExpressionStatement","src":"5361:19:19"}]}}]},"documentation":{"id":3026,"nodeType":"StructuredDocumentation","src":"5025:191:19","text":" @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the\n revert reason or with a default {Errors.FailedCall} error."},"id":3047,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResult","nameLocation":"5230:16:19","nodeType":"FunctionDefinition","parameters":{"id":3031,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3028,"mutability":"mutable","name":"success","nameLocation":"5252:7:19","nodeType":"VariableDeclaration","scope":3047,"src":"5247:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3027,"name":"bool","nodeType":"ElementaryTypeName","src":"5247:4:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3030,"mutability":"mutable","name":"returndata","nameLocation":"5274:10:19","nodeType":"VariableDeclaration","scope":3047,"src":"5261:23:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3029,"name":"bytes","nodeType":"ElementaryTypeName","src":"5261:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5246:39:19"},"returnParameters":{"id":3034,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3033,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3047,"src":"5309:12:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3032,"name":"bytes","nodeType":"ElementaryTypeName","src":"5309:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5308:14:19"},"scope":3068,"src":"5221:224:19","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3066,"nodeType":"Block","src":"5614:432:19","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3056,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3053,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3050,"src":"5690:10:19","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5701:6:19","memberName":"length","nodeType":"MemberAccess","src":"5690:17:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3055,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5710:1:19","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5690:21:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3064,"nodeType":"Block","src":"5989:51:19","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":3059,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3120,"src":"6010:6:19","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$3120_$","typeString":"type(library Errors)"}},"id":3061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6017:10:19","memberName":"FailedCall","nodeType":"MemberAccess","referencedDeclaration":3111,"src":"6010:17:19","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":3062,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6010:19:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":3063,"nodeType":"RevertStatement","src":"6003:26:19"}]},"id":3065,"nodeType":"IfStatement","src":"5686:354:19","trueBody":{"id":3058,"nodeType":"Block","src":"5713:270:19","statements":[{"AST":{"nativeSrc":"5840:133:19","nodeType":"YulBlock","src":"5840:133:19","statements":[{"nativeSrc":"5858:40:19","nodeType":"YulVariableDeclaration","src":"5858:40:19","value":{"arguments":[{"name":"returndata","nativeSrc":"5887:10:19","nodeType":"YulIdentifier","src":"5887:10:19"}],"functionName":{"name":"mload","nativeSrc":"5881:5:19","nodeType":"YulIdentifier","src":"5881:5:19"},"nativeSrc":"5881:17:19","nodeType":"YulFunctionCall","src":"5881:17:19"},"variables":[{"name":"returndata_size","nativeSrc":"5862:15:19","nodeType":"YulTypedName","src":"5862:15:19","type":""}]},{"expression":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5926:2:19","nodeType":"YulLiteral","src":"5926:2:19","type":"","value":"32"},{"name":"returndata","nativeSrc":"5930:10:19","nodeType":"YulIdentifier","src":"5930:10:19"}],"functionName":{"name":"add","nativeSrc":"5922:3:19","nodeType":"YulIdentifier","src":"5922:3:19"},"nativeSrc":"5922:19:19","nodeType":"YulFunctionCall","src":"5922:19:19"},{"name":"returndata_size","nativeSrc":"5943:15:19","nodeType":"YulIdentifier","src":"5943:15:19"}],"functionName":{"name":"revert","nativeSrc":"5915:6:19","nodeType":"YulIdentifier","src":"5915:6:19"},"nativeSrc":"5915:44:19","nodeType":"YulFunctionCall","src":"5915:44:19"},"nativeSrc":"5915:44:19","nodeType":"YulExpressionStatement","src":"5915:44:19"}]},"evmVersion":"cancun","externalReferences":[{"declaration":3050,"isOffset":false,"isSlot":false,"src":"5887:10:19","valueSize":1},{"declaration":3050,"isOffset":false,"isSlot":false,"src":"5930:10:19","valueSize":1}],"flags":["memory-safe"],"id":3057,"nodeType":"InlineAssembly","src":"5815:158:19"}]}}]},"documentation":{"id":3048,"nodeType":"StructuredDocumentation","src":"5451:103:19","text":" @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}."},"id":3067,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"5568:7:19","nodeType":"FunctionDefinition","parameters":{"id":3051,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3050,"mutability":"mutable","name":"returndata","nameLocation":"5589:10:19","nodeType":"VariableDeclaration","scope":3067,"src":"5576:23:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3049,"name":"bytes","nodeType":"ElementaryTypeName","src":"5576:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5575:25:19"},"returnParameters":{"id":3052,"nodeType":"ParameterList","parameters":[],"src":"5614:0:19"},"scope":3068,"src":"5559:487:19","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":3069,"src":"233:5815:19","usedErrors":[2818],"usedEvents":[]}],"src":"101:5948:19"},"id":19},"@openzeppelin/contracts/utils/Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","exportedSymbols":{"Context":[3098]},"id":3099,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3070,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:20"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":3071,"nodeType":"StructuredDocumentation","src":"127:496:20","text":" @dev Provides information about the current execution context, including the\n sender of the transaction and its data. While these are generally available\n via msg.sender and msg.data, they should not be accessed in such a direct\n manner, since when dealing with meta-transactions the account sending and\n paying for execution may not be the actual sender (as far as an application\n is concerned).\n This contract is only required for intermediate, library-like contracts."},"fullyImplemented":true,"id":3098,"linearizedBaseContracts":[3098],"name":"Context","nameLocation":"642:7:20","nodeType":"ContractDefinition","nodes":[{"body":{"id":3079,"nodeType":"Block","src":"718:34:20","statements":[{"expression":{"expression":{"id":3076,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"735:3:20","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3077,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"739:6:20","memberName":"sender","nodeType":"MemberAccess","src":"735:10:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":3075,"id":3078,"nodeType":"Return","src":"728:17:20"}]},"id":3080,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"665:10:20","nodeType":"FunctionDefinition","parameters":{"id":3072,"nodeType":"ParameterList","parameters":[],"src":"675:2:20"},"returnParameters":{"id":3075,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3074,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3080,"src":"709:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3073,"name":"address","nodeType":"ElementaryTypeName","src":"709:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"708:9:20"},"scope":3098,"src":"656:96:20","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":3088,"nodeType":"Block","src":"825:32:20","statements":[{"expression":{"expression":{"id":3085,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"842:3:20","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3086,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"846:4:20","memberName":"data","nodeType":"MemberAccess","src":"842:8:20","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":3084,"id":3087,"nodeType":"Return","src":"835:15:20"}]},"id":3089,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"767:8:20","nodeType":"FunctionDefinition","parameters":{"id":3081,"nodeType":"ParameterList","parameters":[],"src":"775:2:20"},"returnParameters":{"id":3084,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3083,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3089,"src":"809:14:20","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3082,"name":"bytes","nodeType":"ElementaryTypeName","src":"809:5:20","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"808:16:20"},"scope":3098,"src":"758:99:20","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":3096,"nodeType":"Block","src":"935:25:20","statements":[{"expression":{"hexValue":"30","id":3094,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"952:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":3093,"id":3095,"nodeType":"Return","src":"945:8:20"}]},"id":3097,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"872:20:20","nodeType":"FunctionDefinition","parameters":{"id":3090,"nodeType":"ParameterList","parameters":[],"src":"892:2:20"},"returnParameters":{"id":3093,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3092,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3097,"src":"926:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3091,"name":"uint256","nodeType":"ElementaryTypeName","src":"926:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"925:9:20"},"scope":3098,"src":"863:97:20","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":3099,"src":"624:338:20","usedErrors":[],"usedEvents":[]}],"src":"101:862:20"},"id":20},"@openzeppelin/contracts/utils/Errors.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Errors.sol","exportedSymbols":{"Errors":[3120]},"id":3121,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3100,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"100:24:21"},{"abstract":false,"baseContracts":[],"canonicalName":"Errors","contractDependencies":[],"contractKind":"library","documentation":{"id":3101,"nodeType":"StructuredDocumentation","src":"126:284:21","text":" @dev Collection of common custom errors used in multiple contracts\n IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.\n It is recommended to avoid relying on the error API for critical functionality.\n _Available since v5.1._"},"fullyImplemented":true,"id":3120,"linearizedBaseContracts":[3120],"name":"Errors","nameLocation":"419:6:21","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":3102,"nodeType":"StructuredDocumentation","src":"432:94:21","text":" @dev The ETH balance of the account is not enough to perform the operation."},"errorSelector":"cf479181","id":3108,"name":"InsufficientBalance","nameLocation":"537:19:21","nodeType":"ErrorDefinition","parameters":{"id":3107,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3104,"mutability":"mutable","name":"balance","nameLocation":"565:7:21","nodeType":"VariableDeclaration","scope":3108,"src":"557:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3103,"name":"uint256","nodeType":"ElementaryTypeName","src":"557:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3106,"mutability":"mutable","name":"needed","nameLocation":"582:6:21","nodeType":"VariableDeclaration","scope":3108,"src":"574:14:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3105,"name":"uint256","nodeType":"ElementaryTypeName","src":"574:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"556:33:21"},"src":"531:59:21"},{"documentation":{"id":3109,"nodeType":"StructuredDocumentation","src":"596:89:21","text":" @dev A call to an address target failed. The target may have reverted."},"errorSelector":"d6bda275","id":3111,"name":"FailedCall","nameLocation":"696:10:21","nodeType":"ErrorDefinition","parameters":{"id":3110,"nodeType":"ParameterList","parameters":[],"src":"706:2:21"},"src":"690:19:21"},{"documentation":{"id":3112,"nodeType":"StructuredDocumentation","src":"715:46:21","text":" @dev The deployment failed."},"errorSelector":"b06ebf3d","id":3114,"name":"FailedDeployment","nameLocation":"772:16:21","nodeType":"ErrorDefinition","parameters":{"id":3113,"nodeType":"ParameterList","parameters":[],"src":"788:2:21"},"src":"766:25:21"},{"documentation":{"id":3115,"nodeType":"StructuredDocumentation","src":"797:58:21","text":" @dev A necessary precompile is missing."},"errorSelector":"42b01bce","id":3119,"name":"MissingPrecompile","nameLocation":"866:17:21","nodeType":"ErrorDefinition","parameters":{"id":3118,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3117,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3119,"src":"884:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3116,"name":"address","nodeType":"ElementaryTypeName","src":"884:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"883:9:21"},"src":"860:33:21"}],"scope":3121,"src":"411:484:21","usedErrors":[3108,3111,3114,3119],"usedEvents":[]}],"src":"100:796:21"},"id":21},"@openzeppelin/contracts/utils/Multicall.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Multicall.sol","exportedSymbols":{"Address":[3068],"Context":[3098],"Multicall":[3207]},"id":3208,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3122,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"103:24:22"},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"./Address.sol","id":3124,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3208,"sourceUnit":3069,"src":"129:38:22","symbolAliases":[{"foreign":{"id":3123,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3068,"src":"137:7:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"./Context.sol","id":3126,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3208,"sourceUnit":3099,"src":"168:38:22","symbolAliases":[{"foreign":{"id":3125,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3098,"src":"176:7:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":3128,"name":"Context","nameLocations":["1037:7:22"],"nodeType":"IdentifierPath","referencedDeclaration":3098,"src":"1037:7:22"},"id":3129,"nodeType":"InheritanceSpecifier","src":"1037:7:22"}],"canonicalName":"Multicall","contractDependencies":[],"contractKind":"contract","documentation":{"id":3127,"nodeType":"StructuredDocumentation","src":"208:797:22","text":" @dev Provides a function to batch together multiple calls in a single external call.\n Consider any assumption about calldata validation performed by the sender may be violated if it's not especially\n careful about sending transactions invoking {multicall}. For example, a relay address that filters function\n selectors won't filter calls nested within a {multicall} operation.\n NOTE: Since 5.0.1 and 4.9.4, this contract identifies non-canonical contexts (i.e. `msg.sender` is not {_msgSender}).\n If a non-canonical context is identified, the following self `delegatecall` appends the last bytes of `msg.data`\n to the subcall. This makes it safe to use with {ERC2771Context}. Contexts that don't affect the resolution of\n {_msgSender} are not propagated to subcalls."},"fullyImplemented":true,"id":3207,"linearizedBaseContracts":[3207,3098],"name":"Multicall","nameLocation":"1024:9:22","nodeType":"ContractDefinition","nodes":[{"body":{"id":3205,"nodeType":"Block","src":"1300:392:22","statements":[{"assignments":[3140],"declarations":[{"constant":false,"id":3140,"mutability":"mutable","name":"context","nameLocation":"1323:7:22","nodeType":"VariableDeclaration","scope":3205,"src":"1310:20:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3139,"name":"bytes","nodeType":"ElementaryTypeName","src":"1310:5:22","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":3160,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3145,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3141,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1333:3:22","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3142,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1337:6:22","memberName":"sender","nodeType":"MemberAccess","src":"1333:10:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":3143,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3080,"src":"1347:10:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":3144,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1347:12:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1333:26:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"baseExpression":{"expression":{"id":3150,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1401:3:22","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1405:4:22","memberName":"data","nodeType":"MemberAccess","src":"1401:8:22","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":3158,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"1401:51:22","startExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3157,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":3152,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1410:3:22","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1414:4:22","memberName":"data","nodeType":"MemberAccess","src":"1410:8:22","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":3154,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1419:6:22","memberName":"length","nodeType":"MemberAccess","src":"1410:15:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":3155,"name":"_contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3097,"src":"1428:20:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":3156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1428:22:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1410:40:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},"id":3159,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1333:119:22","trueExpression":{"arguments":[{"hexValue":"30","id":3148,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1384:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":3147,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1374:9:22","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":3146,"name":"bytes","nodeType":"ElementaryTypeName","src":"1378:5:22","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":3149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1374:12:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"1310:142:22"},{"expression":{"id":3168,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3161,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3137,"src":"1463:7:22","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":3165,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3133,"src":"1485:4:22","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3166,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1490:6:22","memberName":"length","nodeType":"MemberAccess","src":"1485:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3164,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1473:11:22","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory[] memory)"},"typeName":{"baseType":{"id":3162,"name":"bytes","nodeType":"ElementaryTypeName","src":"1477:5:22","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":3163,"nodeType":"ArrayTypeName","src":"1477:7:22","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}}},"id":3167,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1473:24:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"src":"1463:34:22","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":3169,"nodeType":"ExpressionStatement","src":"1463:34:22"},{"body":{"id":3201,"nodeType":"Block","src":"1549:113:22","statements":[{"expression":{"id":3199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3181,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3137,"src":"1563:7:22","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":3183,"indexExpression":{"id":3182,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3171,"src":"1571:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1563:10:22","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":3188,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1613:4:22","typeDescriptions":{"typeIdentifier":"t_contract$_Multicall_$3207","typeString":"contract Multicall"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Multicall_$3207","typeString":"contract Multicall"}],"id":3187,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1605:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3186,"name":"address","nodeType":"ElementaryTypeName","src":"1605:7:22","typeDescriptions":{}}},"id":3189,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1605:13:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"baseExpression":{"id":3193,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3133,"src":"1633:4:22","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3195,"indexExpression":{"id":3194,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3171,"src":"1638:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1633:7:22","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":3196,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3140,"src":"1642:7:22","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":3191,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1620:5:22","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3190,"name":"bytes","nodeType":"ElementaryTypeName","src":"1620:5:22","typeDescriptions":{}}},"id":3192,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1626:6:22","memberName":"concat","nodeType":"MemberAccess","src":"1620:12:22","typeDescriptions":{"typeIdentifier":"t_function_bytesconcat_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":3197,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1620:30:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":3184,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3068,"src":"1576:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$3068_$","typeString":"type(library Address)"}},"id":3185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1584:20:22","memberName":"functionDelegateCall","nodeType":"MemberAccess","referencedDeclaration":2985,"src":"1576:28:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":3198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1576:75:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"1563:88:22","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3200,"nodeType":"ExpressionStatement","src":"1563:88:22"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3174,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3171,"src":"1527:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":3175,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3133,"src":"1531:4:22","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3176,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1536:6:22","memberName":"length","nodeType":"MemberAccess","src":"1531:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1527:15:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3202,"initializationExpression":{"assignments":[3171],"declarations":[{"constant":false,"id":3171,"mutability":"mutable","name":"i","nameLocation":"1520:1:22","nodeType":"VariableDeclaration","scope":3202,"src":"1512:9:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3170,"name":"uint256","nodeType":"ElementaryTypeName","src":"1512:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3173,"initialValue":{"hexValue":"30","id":3172,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1524:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"1512:13:22"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":3179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1544:3:22","subExpression":{"id":3178,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3171,"src":"1544:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3180,"nodeType":"ExpressionStatement","src":"1544:3:22"},"nodeType":"ForStatement","src":"1507:155:22"},{"expression":{"id":3203,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3137,"src":"1678:7:22","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"functionReturnParameters":3138,"id":3204,"nodeType":"Return","src":"1671:14:22"}]},"documentation":{"id":3130,"nodeType":"StructuredDocumentation","src":"1051:152:22","text":" @dev Receives and executes a batch of function calls on this contract.\n @custom:oz-upgrades-unsafe-allow-reachable delegatecall"},"functionSelector":"ac9650d8","id":3206,"implemented":true,"kind":"function","modifiers":[],"name":"multicall","nameLocation":"1217:9:22","nodeType":"FunctionDefinition","parameters":{"id":3134,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3133,"mutability":"mutable","name":"data","nameLocation":"1244:4:22","nodeType":"VariableDeclaration","scope":3206,"src":"1227:21:22","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":3131,"name":"bytes","nodeType":"ElementaryTypeName","src":"1227:5:22","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":3132,"nodeType":"ArrayTypeName","src":"1227:7:22","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"1226:23:22"},"returnParameters":{"id":3138,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3137,"mutability":"mutable","name":"results","nameLocation":"1291:7:22","nodeType":"VariableDeclaration","scope":3206,"src":"1276:22:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":3135,"name":"bytes","nodeType":"ElementaryTypeName","src":"1276:5:22","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":3136,"nodeType":"ArrayTypeName","src":"1276:7:22","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"1275:24:22"},"scope":3207,"src":"1208:484:22","stateMutability":"nonpayable","virtual":true,"visibility":"external"}],"scope":3208,"src":"1006:688:22","usedErrors":[2818,3111],"usedEvents":[]}],"src":"103:1592:22"},"id":22},"@openzeppelin/contracts/utils/Panic.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","exportedSymbols":{"Panic":[3259]},"id":3260,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3209,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:23"},{"abstract":false,"baseContracts":[],"canonicalName":"Panic","contractDependencies":[],"contractKind":"library","documentation":{"id":3210,"nodeType":"StructuredDocumentation","src":"125:489:23","text":" @dev Helper library for emitting standardized panic codes.\n ```solidity\n contract Example {\n      using Panic for uint256;\n      // Use any of the declared internal constants\n      function foo() { Panic.GENERIC.panic(); }\n      // Alternatively\n      function foo() { Panic.panic(Panic.GENERIC); }\n }\n ```\n Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].\n _Available since v5.1._"},"fullyImplemented":true,"id":3259,"linearizedBaseContracts":[3259],"name":"Panic","nameLocation":"665:5:23","nodeType":"ContractDefinition","nodes":[{"constant":true,"documentation":{"id":3211,"nodeType":"StructuredDocumentation","src":"677:36:23","text":"@dev generic / unspecified error"},"id":3214,"mutability":"constant","name":"GENERIC","nameLocation":"744:7:23","nodeType":"VariableDeclaration","scope":3259,"src":"718:40:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3212,"name":"uint256","nodeType":"ElementaryTypeName","src":"718:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783030","id":3213,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"754:4:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0x00"},"visibility":"internal"},{"constant":true,"documentation":{"id":3215,"nodeType":"StructuredDocumentation","src":"764:37:23","text":"@dev used by the assert() builtin"},"id":3218,"mutability":"constant","name":"ASSERT","nameLocation":"832:6:23","nodeType":"VariableDeclaration","scope":3259,"src":"806:39:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3216,"name":"uint256","nodeType":"ElementaryTypeName","src":"806:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783031","id":3217,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"841:4:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"0x01"},"visibility":"internal"},{"constant":true,"documentation":{"id":3219,"nodeType":"StructuredDocumentation","src":"851:41:23","text":"@dev arithmetic underflow or overflow"},"id":3222,"mutability":"constant","name":"UNDER_OVERFLOW","nameLocation":"923:14:23","nodeType":"VariableDeclaration","scope":3259,"src":"897:47:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3220,"name":"uint256","nodeType":"ElementaryTypeName","src":"897:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783131","id":3221,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"940:4:23","typeDescriptions":{"typeIdentifier":"t_rational_17_by_1","typeString":"int_const 17"},"value":"0x11"},"visibility":"internal"},{"constant":true,"documentation":{"id":3223,"nodeType":"StructuredDocumentation","src":"950:35:23","text":"@dev division or modulo by zero"},"id":3226,"mutability":"constant","name":"DIVISION_BY_ZERO","nameLocation":"1016:16:23","nodeType":"VariableDeclaration","scope":3259,"src":"990:49:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3224,"name":"uint256","nodeType":"ElementaryTypeName","src":"990:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783132","id":3225,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1035:4:23","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"0x12"},"visibility":"internal"},{"constant":true,"documentation":{"id":3227,"nodeType":"StructuredDocumentation","src":"1045:30:23","text":"@dev enum conversion error"},"id":3230,"mutability":"constant","name":"ENUM_CONVERSION_ERROR","nameLocation":"1106:21:23","nodeType":"VariableDeclaration","scope":3259,"src":"1080:54:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3228,"name":"uint256","nodeType":"ElementaryTypeName","src":"1080:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783231","id":3229,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1130:4:23","typeDescriptions":{"typeIdentifier":"t_rational_33_by_1","typeString":"int_const 33"},"value":"0x21"},"visibility":"internal"},{"constant":true,"documentation":{"id":3231,"nodeType":"StructuredDocumentation","src":"1140:36:23","text":"@dev invalid encoding in storage"},"id":3234,"mutability":"constant","name":"STORAGE_ENCODING_ERROR","nameLocation":"1207:22:23","nodeType":"VariableDeclaration","scope":3259,"src":"1181:55:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3232,"name":"uint256","nodeType":"ElementaryTypeName","src":"1181:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783232","id":3233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1232:4:23","typeDescriptions":{"typeIdentifier":"t_rational_34_by_1","typeString":"int_const 34"},"value":"0x22"},"visibility":"internal"},{"constant":true,"documentation":{"id":3235,"nodeType":"StructuredDocumentation","src":"1242:24:23","text":"@dev empty array pop"},"id":3238,"mutability":"constant","name":"EMPTY_ARRAY_POP","nameLocation":"1297:15:23","nodeType":"VariableDeclaration","scope":3259,"src":"1271:48:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3236,"name":"uint256","nodeType":"ElementaryTypeName","src":"1271:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783331","id":3237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1315:4:23","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"0x31"},"visibility":"internal"},{"constant":true,"documentation":{"id":3239,"nodeType":"StructuredDocumentation","src":"1325:35:23","text":"@dev array out of bounds access"},"id":3242,"mutability":"constant","name":"ARRAY_OUT_OF_BOUNDS","nameLocation":"1391:19:23","nodeType":"VariableDeclaration","scope":3259,"src":"1365:52:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3240,"name":"uint256","nodeType":"ElementaryTypeName","src":"1365:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783332","id":3241,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1413:4:23","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"0x32"},"visibility":"internal"},{"constant":true,"documentation":{"id":3243,"nodeType":"StructuredDocumentation","src":"1423:65:23","text":"@dev resource error (too large allocation or too large array)"},"id":3246,"mutability":"constant","name":"RESOURCE_ERROR","nameLocation":"1519:14:23","nodeType":"VariableDeclaration","scope":3259,"src":"1493:47:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3244,"name":"uint256","nodeType":"ElementaryTypeName","src":"1493:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783431","id":3245,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1536:4:23","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"0x41"},"visibility":"internal"},{"constant":true,"documentation":{"id":3247,"nodeType":"StructuredDocumentation","src":"1546:42:23","text":"@dev calling invalid internal function"},"id":3250,"mutability":"constant","name":"INVALID_INTERNAL_FUNCTION","nameLocation":"1619:25:23","nodeType":"VariableDeclaration","scope":3259,"src":"1593:58:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3248,"name":"uint256","nodeType":"ElementaryTypeName","src":"1593:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783531","id":3249,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1647:4:23","typeDescriptions":{"typeIdentifier":"t_rational_81_by_1","typeString":"int_const 81"},"value":"0x51"},"visibility":"internal"},{"body":{"id":3257,"nodeType":"Block","src":"1819:151:23","statements":[{"AST":{"nativeSrc":"1854:110:23","nodeType":"YulBlock","src":"1854:110:23","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1875:4:23","nodeType":"YulLiteral","src":"1875:4:23","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1881:10:23","nodeType":"YulLiteral","src":"1881:10:23","type":"","value":"0x4e487b71"}],"functionName":{"name":"mstore","nativeSrc":"1868:6:23","nodeType":"YulIdentifier","src":"1868:6:23"},"nativeSrc":"1868:24:23","nodeType":"YulFunctionCall","src":"1868:24:23"},"nativeSrc":"1868:24:23","nodeType":"YulExpressionStatement","src":"1868:24:23"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1912:4:23","nodeType":"YulLiteral","src":"1912:4:23","type":"","value":"0x20"},{"name":"code","nativeSrc":"1918:4:23","nodeType":"YulIdentifier","src":"1918:4:23"}],"functionName":{"name":"mstore","nativeSrc":"1905:6:23","nodeType":"YulIdentifier","src":"1905:6:23"},"nativeSrc":"1905:18:23","nodeType":"YulFunctionCall","src":"1905:18:23"},"nativeSrc":"1905:18:23","nodeType":"YulExpressionStatement","src":"1905:18:23"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1943:4:23","nodeType":"YulLiteral","src":"1943:4:23","type":"","value":"0x1c"},{"kind":"number","nativeSrc":"1949:4:23","nodeType":"YulLiteral","src":"1949:4:23","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1936:6:23","nodeType":"YulIdentifier","src":"1936:6:23"},"nativeSrc":"1936:18:23","nodeType":"YulFunctionCall","src":"1936:18:23"},"nativeSrc":"1936:18:23","nodeType":"YulExpressionStatement","src":"1936:18:23"}]},"evmVersion":"cancun","externalReferences":[{"declaration":3253,"isOffset":false,"isSlot":false,"src":"1918:4:23","valueSize":1}],"flags":["memory-safe"],"id":3256,"nodeType":"InlineAssembly","src":"1829:135:23"}]},"documentation":{"id":3251,"nodeType":"StructuredDocumentation","src":"1658:113:23","text":"@dev Reverts with a panic code. Recommended to use with\n the internal constants with predefined codes."},"id":3258,"implemented":true,"kind":"function","modifiers":[],"name":"panic","nameLocation":"1785:5:23","nodeType":"FunctionDefinition","parameters":{"id":3254,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3253,"mutability":"mutable","name":"code","nameLocation":"1799:4:23","nodeType":"VariableDeclaration","scope":3258,"src":"1791:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3252,"name":"uint256","nodeType":"ElementaryTypeName","src":"1791:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1790:14:23"},"returnParameters":{"id":3255,"nodeType":"ParameterList","parameters":[],"src":"1819:0:23"},"scope":3259,"src":"1776:194:23","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":3260,"src":"657:1315:23","usedErrors":[],"usedEvents":[]}],"src":"99:1874:23"},"id":23},"@openzeppelin/contracts/utils/Strings.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","exportedSymbols":{"Math":[6523],"SafeCast":[8288],"SignedMath":[8432],"Strings":[4459]},"id":4460,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3261,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:24"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"./math/Math.sol","id":3263,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4460,"sourceUnit":6524,"src":"127:37:24","symbolAliases":[{"foreign":{"id":3262,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6523,"src":"135:4:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./math/SafeCast.sol","id":3265,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4460,"sourceUnit":8289,"src":"165:45:24","symbolAliases":[{"foreign":{"id":3264,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"173:8:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","file":"./math/SignedMath.sol","id":3267,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4460,"sourceUnit":8433,"src":"211:49:24","symbolAliases":[{"foreign":{"id":3266,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8432,"src":"219:10:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Strings","contractDependencies":[],"contractKind":"library","documentation":{"id":3268,"nodeType":"StructuredDocumentation","src":"262:34:24","text":" @dev String operations."},"fullyImplemented":true,"id":4459,"linearizedBaseContracts":[4459],"name":"Strings","nameLocation":"305:7:24","nodeType":"ContractDefinition","nodes":[{"global":false,"id":3270,"libraryName":{"id":3269,"name":"SafeCast","nameLocations":["325:8:24"],"nodeType":"IdentifierPath","referencedDeclaration":8288,"src":"325:8:24"},"nodeType":"UsingForDirective","src":"319:21:24"},{"constant":true,"id":3273,"mutability":"constant","name":"HEX_DIGITS","nameLocation":"371:10:24","nodeType":"VariableDeclaration","scope":4459,"src":"346:56:24","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":3271,"name":"bytes16","nodeType":"ElementaryTypeName","src":"346:7:24","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"value":{"hexValue":"30313233343536373839616263646566","id":3272,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"384:18:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_cb29997ed99ead0db59ce4d12b7d3723198c827273e5796737c926d78019c39f","typeString":"literal_string \"0123456789abcdef\""},"value":"0123456789abcdef"},"visibility":"private"},{"constant":true,"id":3276,"mutability":"constant","name":"ADDRESS_LENGTH","nameLocation":"431:14:24","nodeType":"VariableDeclaration","scope":4459,"src":"408:42:24","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3274,"name":"uint8","nodeType":"ElementaryTypeName","src":"408:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"3230","id":3275,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"448:2:24","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"visibility":"private"},{"documentation":{"id":3277,"nodeType":"StructuredDocumentation","src":"457:81:24","text":" @dev The `value` string doesn't fit in the specified `length`."},"errorSelector":"e22e27eb","id":3283,"name":"StringsInsufficientHexLength","nameLocation":"549:28:24","nodeType":"ErrorDefinition","parameters":{"id":3282,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3279,"mutability":"mutable","name":"value","nameLocation":"586:5:24","nodeType":"VariableDeclaration","scope":3283,"src":"578:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3278,"name":"uint256","nodeType":"ElementaryTypeName","src":"578:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3281,"mutability":"mutable","name":"length","nameLocation":"601:6:24","nodeType":"VariableDeclaration","scope":3283,"src":"593:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3280,"name":"uint256","nodeType":"ElementaryTypeName","src":"593:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"577:31:24"},"src":"543:66:24"},{"documentation":{"id":3284,"nodeType":"StructuredDocumentation","src":"615:108:24","text":" @dev The string being parsed contains characters that are not in scope of the given base."},"errorSelector":"94e2737e","id":3286,"name":"StringsInvalidChar","nameLocation":"734:18:24","nodeType":"ErrorDefinition","parameters":{"id":3285,"nodeType":"ParameterList","parameters":[],"src":"752:2:24"},"src":"728:27:24"},{"documentation":{"id":3287,"nodeType":"StructuredDocumentation","src":"761:84:24","text":" @dev The string being parsed is not a properly formatted address."},"errorSelector":"1d15ae44","id":3289,"name":"StringsInvalidAddressFormat","nameLocation":"856:27:24","nodeType":"ErrorDefinition","parameters":{"id":3288,"nodeType":"ParameterList","parameters":[],"src":"883:2:24"},"src":"850:36:24"},{"body":{"id":3336,"nodeType":"Block","src":"1058:561:24","statements":[{"id":3335,"nodeType":"UncheckedBlock","src":"1068:545:24","statements":[{"assignments":[3298],"declarations":[{"constant":false,"id":3298,"mutability":"mutable","name":"length","nameLocation":"1100:6:24","nodeType":"VariableDeclaration","scope":3335,"src":"1092:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3297,"name":"uint256","nodeType":"ElementaryTypeName","src":"1092:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3305,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3304,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":3301,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3292,"src":"1120:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":3299,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6523,"src":"1109:4:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$6523_$","typeString":"type(library Math)"}},"id":3300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1114:5:24","memberName":"log10","nodeType":"MemberAccess","referencedDeclaration":6295,"src":"1109:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":3302,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1109:17:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":3303,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1129:1:24","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1109:21:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1092:38:24"},{"assignments":[3307],"declarations":[{"constant":false,"id":3307,"mutability":"mutable","name":"buffer","nameLocation":"1158:6:24","nodeType":"VariableDeclaration","scope":3335,"src":"1144:20:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3306,"name":"string","nodeType":"ElementaryTypeName","src":"1144:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":3312,"initialValue":{"arguments":[{"id":3310,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3298,"src":"1178:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3309,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1167:10:24","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"},"typeName":{"id":3308,"name":"string","nodeType":"ElementaryTypeName","src":"1171:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"id":3311,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1167:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"1144:41:24"},{"assignments":[3314],"declarations":[{"constant":false,"id":3314,"mutability":"mutable","name":"ptr","nameLocation":"1207:3:24","nodeType":"VariableDeclaration","scope":3335,"src":"1199:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3313,"name":"uint256","nodeType":"ElementaryTypeName","src":"1199:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3315,"nodeType":"VariableDeclarationStatement","src":"1199:11:24"},{"AST":{"nativeSrc":"1249:67:24","nodeType":"YulBlock","src":"1249:67:24","statements":[{"nativeSrc":"1267:35:24","nodeType":"YulAssignment","src":"1267:35:24","value":{"arguments":[{"name":"buffer","nativeSrc":"1278:6:24","nodeType":"YulIdentifier","src":"1278:6:24"},{"arguments":[{"kind":"number","nativeSrc":"1290:2:24","nodeType":"YulLiteral","src":"1290:2:24","type":"","value":"32"},{"name":"length","nativeSrc":"1294:6:24","nodeType":"YulIdentifier","src":"1294:6:24"}],"functionName":{"name":"add","nativeSrc":"1286:3:24","nodeType":"YulIdentifier","src":"1286:3:24"},"nativeSrc":"1286:15:24","nodeType":"YulFunctionCall","src":"1286:15:24"}],"functionName":{"name":"add","nativeSrc":"1274:3:24","nodeType":"YulIdentifier","src":"1274:3:24"},"nativeSrc":"1274:28:24","nodeType":"YulFunctionCall","src":"1274:28:24"},"variableNames":[{"name":"ptr","nativeSrc":"1267:3:24","nodeType":"YulIdentifier","src":"1267:3:24"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":3307,"isOffset":false,"isSlot":false,"src":"1278:6:24","valueSize":1},{"declaration":3298,"isOffset":false,"isSlot":false,"src":"1294:6:24","valueSize":1},{"declaration":3314,"isOffset":false,"isSlot":false,"src":"1267:3:24","valueSize":1}],"flags":["memory-safe"],"id":3316,"nodeType":"InlineAssembly","src":"1224:92:24"},{"body":{"id":3331,"nodeType":"Block","src":"1342:234:24","statements":[{"expression":{"id":3319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":false,"src":"1360:5:24","subExpression":{"id":3318,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3314,"src":"1360:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3320,"nodeType":"ExpressionStatement","src":"1360:5:24"},{"AST":{"nativeSrc":"1408:86:24","nodeType":"YulBlock","src":"1408:86:24","statements":[{"expression":{"arguments":[{"name":"ptr","nativeSrc":"1438:3:24","nodeType":"YulIdentifier","src":"1438:3:24"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1452:5:24","nodeType":"YulIdentifier","src":"1452:5:24"},{"kind":"number","nativeSrc":"1459:2:24","nodeType":"YulLiteral","src":"1459:2:24","type":"","value":"10"}],"functionName":{"name":"mod","nativeSrc":"1448:3:24","nodeType":"YulIdentifier","src":"1448:3:24"},"nativeSrc":"1448:14:24","nodeType":"YulFunctionCall","src":"1448:14:24"},{"name":"HEX_DIGITS","nativeSrc":"1464:10:24","nodeType":"YulIdentifier","src":"1464:10:24"}],"functionName":{"name":"byte","nativeSrc":"1443:4:24","nodeType":"YulIdentifier","src":"1443:4:24"},"nativeSrc":"1443:32:24","nodeType":"YulFunctionCall","src":"1443:32:24"}],"functionName":{"name":"mstore8","nativeSrc":"1430:7:24","nodeType":"YulIdentifier","src":"1430:7:24"},"nativeSrc":"1430:46:24","nodeType":"YulFunctionCall","src":"1430:46:24"},"nativeSrc":"1430:46:24","nodeType":"YulExpressionStatement","src":"1430:46:24"}]},"evmVersion":"cancun","externalReferences":[{"declaration":3273,"isOffset":false,"isSlot":false,"src":"1464:10:24","valueSize":1},{"declaration":3314,"isOffset":false,"isSlot":false,"src":"1438:3:24","valueSize":1},{"declaration":3292,"isOffset":false,"isSlot":false,"src":"1452:5:24","valueSize":1}],"flags":["memory-safe"],"id":3321,"nodeType":"InlineAssembly","src":"1383:111:24"},{"expression":{"id":3324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3322,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3292,"src":"1511:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"hexValue":"3130","id":3323,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1520:2:24","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"1511:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3325,"nodeType":"ExpressionStatement","src":"1511:11:24"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3326,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3292,"src":"1544:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3327,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1553:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1544:10:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3330,"nodeType":"IfStatement","src":"1540:21:24","trueBody":{"id":3329,"nodeType":"Break","src":"1556:5:24"}}]},"condition":{"hexValue":"74727565","id":3317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1336:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"id":3332,"nodeType":"WhileStatement","src":"1329:247:24"},{"expression":{"id":3333,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3307,"src":"1596:6:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":3296,"id":3334,"nodeType":"Return","src":"1589:13:24"}]}]},"documentation":{"id":3290,"nodeType":"StructuredDocumentation","src":"892:90:24","text":" @dev Converts a `uint256` to its ASCII `string` decimal representation."},"id":3337,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"996:8:24","nodeType":"FunctionDefinition","parameters":{"id":3293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3292,"mutability":"mutable","name":"value","nameLocation":"1013:5:24","nodeType":"VariableDeclaration","scope":3337,"src":"1005:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3291,"name":"uint256","nodeType":"ElementaryTypeName","src":"1005:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1004:15:24"},"returnParameters":{"id":3296,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3295,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3337,"src":"1043:13:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3294,"name":"string","nodeType":"ElementaryTypeName","src":"1043:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1042:15:24"},"scope":4459,"src":"987:632:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3362,"nodeType":"Block","src":"1795:92:24","statements":[{"expression":{"arguments":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":3350,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3348,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3340,"src":"1826:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":3349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1834:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1826:9:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"","id":3352,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1844:2:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"id":3353,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1826:20:24","trueExpression":{"hexValue":"2d","id":3351,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1838:3:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[{"arguments":[{"id":3357,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3340,"src":"1872:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":3355,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8432,"src":"1857:10:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SignedMath_$8432_$","typeString":"type(library SignedMath)"}},"id":3356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1868:3:24","memberName":"abs","nodeType":"MemberAccess","referencedDeclaration":8431,"src":"1857:14:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_int256_$returns$_t_uint256_$","typeString":"function (int256) pure returns (uint256)"}},"id":3358,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1857:21:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3354,"name":"toString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3337,"src":"1848:8:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":3359,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1848:31:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":3346,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1812:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":3345,"name":"string","nodeType":"ElementaryTypeName","src":"1812:6:24","typeDescriptions":{}}},"id":3347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1819:6:24","memberName":"concat","nodeType":"MemberAccess","src":"1812:13:24","typeDescriptions":{"typeIdentifier":"t_function_stringconcat_pure$__$returns$_t_string_memory_ptr_$","typeString":"function () pure returns (string memory)"}},"id":3360,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1812:68:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":3344,"id":3361,"nodeType":"Return","src":"1805:75:24"}]},"documentation":{"id":3338,"nodeType":"StructuredDocumentation","src":"1625:89:24","text":" @dev Converts a `int256` to its ASCII `string` decimal representation."},"id":3363,"implemented":true,"kind":"function","modifiers":[],"name":"toStringSigned","nameLocation":"1728:14:24","nodeType":"FunctionDefinition","parameters":{"id":3341,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3340,"mutability":"mutable","name":"value","nameLocation":"1750:5:24","nodeType":"VariableDeclaration","scope":3363,"src":"1743:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3339,"name":"int256","nodeType":"ElementaryTypeName","src":"1743:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1742:14:24"},"returnParameters":{"id":3344,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3343,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3363,"src":"1780:13:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3342,"name":"string","nodeType":"ElementaryTypeName","src":"1780:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1779:15:24"},"scope":4459,"src":"1719:168:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3382,"nodeType":"Block","src":"2066:100:24","statements":[{"id":3381,"nodeType":"UncheckedBlock","src":"2076:84:24","statements":[{"expression":{"arguments":[{"id":3372,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3366,"src":"2119:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":3375,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3366,"src":"2138:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":3373,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6523,"src":"2126:4:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$6523_$","typeString":"type(library Math)"}},"id":3374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2131:6:24","memberName":"log256","nodeType":"MemberAccess","referencedDeclaration":6466,"src":"2126:11:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":3376,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2126:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":3377,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2147:1:24","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2126:22:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3371,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[3383,3466,3486],"referencedDeclaration":3466,"src":"2107:11:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":3379,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2107:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":3370,"id":3380,"nodeType":"Return","src":"2100:49:24"}]}]},"documentation":{"id":3364,"nodeType":"StructuredDocumentation","src":"1893:94:24","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation."},"id":3383,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2001:11:24","nodeType":"FunctionDefinition","parameters":{"id":3367,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3366,"mutability":"mutable","name":"value","nameLocation":"2021:5:24","nodeType":"VariableDeclaration","scope":3383,"src":"2013:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3365,"name":"uint256","nodeType":"ElementaryTypeName","src":"2013:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2012:15:24"},"returnParameters":{"id":3370,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3369,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3383,"src":"2051:13:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3368,"name":"string","nodeType":"ElementaryTypeName","src":"2051:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2050:15:24"},"scope":4459,"src":"1992:174:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3465,"nodeType":"Block","src":"2379:435:24","statements":[{"assignments":[3394],"declarations":[{"constant":false,"id":3394,"mutability":"mutable","name":"localValue","nameLocation":"2397:10:24","nodeType":"VariableDeclaration","scope":3465,"src":"2389:18:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3393,"name":"uint256","nodeType":"ElementaryTypeName","src":"2389:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3396,"initialValue":{"id":3395,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3386,"src":"2410:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2389:26:24"},{"assignments":[3398],"declarations":[{"constant":false,"id":3398,"mutability":"mutable","name":"buffer","nameLocation":"2438:6:24","nodeType":"VariableDeclaration","scope":3465,"src":"2425:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3397,"name":"bytes","nodeType":"ElementaryTypeName","src":"2425:5:24","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":3407,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3405,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":3401,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2457:1:24","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3402,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3388,"src":"2461:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2457:10:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":3404,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2470:1:24","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"2457:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3400,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"2447:9:24","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":3399,"name":"bytes","nodeType":"ElementaryTypeName","src":"2451:5:24","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":3406,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2447:25:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"2425:47:24"},{"expression":{"id":3412,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3408,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3398,"src":"2482:6:24","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3410,"indexExpression":{"hexValue":"30","id":3409,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2489:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2482:9:24","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3411,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2494:3:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"},"src":"2482:15:24","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3413,"nodeType":"ExpressionStatement","src":"2482:15:24"},{"expression":{"id":3418,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3414,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3398,"src":"2507:6:24","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3416,"indexExpression":{"hexValue":"31","id":3415,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2514:1:24","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2507:9:24","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"78","id":3417,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2519:3:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_7521d1cadbcfa91eec65aa16715b94ffc1c9654ba57ea2ef1a2127bca1127a83","typeString":"literal_string \"x\""},"value":"x"},"src":"2507:15:24","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3419,"nodeType":"ExpressionStatement","src":"2507:15:24"},{"body":{"id":3448,"nodeType":"Block","src":"2577:95:24","statements":[{"expression":{"id":3442,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3434,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3398,"src":"2591:6:24","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3436,"indexExpression":{"id":3435,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3421,"src":"2598:1:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2591:9:24","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":3437,"name":"HEX_DIGITS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3273,"src":"2603:10:24","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":3441,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3438,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3394,"src":"2614:10:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":3439,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2627:3:24","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"2614:16:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2603:28:24","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"2591:40:24","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3443,"nodeType":"ExpressionStatement","src":"2591:40:24"},{"expression":{"id":3446,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3444,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3394,"src":"2645:10:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":3445,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2660:1:24","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"2645:16:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3447,"nodeType":"ExpressionStatement","src":"2645:16:24"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3430,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3428,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3421,"src":"2565:1:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":3429,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2569:1:24","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2565:5:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3449,"initializationExpression":{"assignments":[3421],"declarations":[{"constant":false,"id":3421,"mutability":"mutable","name":"i","nameLocation":"2545:1:24","nodeType":"VariableDeclaration","scope":3449,"src":"2537:9:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3420,"name":"uint256","nodeType":"ElementaryTypeName","src":"2537:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3427,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3424,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":3422,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2549:1:24","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3423,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3388,"src":"2553:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2549:10:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":3425,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2562:1:24","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2549:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2537:26:24"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":3432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"2572:3:24","subExpression":{"id":3431,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3421,"src":"2574:1:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3433,"nodeType":"ExpressionStatement","src":"2572:3:24"},"nodeType":"ForStatement","src":"2532:140:24"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3450,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3394,"src":"2685:10:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":3451,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2699:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2685:15:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3459,"nodeType":"IfStatement","src":"2681:96:24","trueBody":{"id":3458,"nodeType":"Block","src":"2702:75:24","statements":[{"errorCall":{"arguments":[{"id":3454,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3386,"src":"2752:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3455,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3388,"src":"2759:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3453,"name":"StringsInsufficientHexLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3283,"src":"2723:28:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":3456,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2723:43:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":3457,"nodeType":"RevertStatement","src":"2716:50:24"}]}},{"expression":{"arguments":[{"id":3462,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3398,"src":"2800:6:24","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3461,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2793:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":3460,"name":"string","nodeType":"ElementaryTypeName","src":"2793:6:24","typeDescriptions":{}}},"id":3463,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2793:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":3392,"id":3464,"nodeType":"Return","src":"2786:21:24"}]},"documentation":{"id":3384,"nodeType":"StructuredDocumentation","src":"2172:112:24","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length."},"id":3466,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2298:11:24","nodeType":"FunctionDefinition","parameters":{"id":3389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3386,"mutability":"mutable","name":"value","nameLocation":"2318:5:24","nodeType":"VariableDeclaration","scope":3466,"src":"2310:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3385,"name":"uint256","nodeType":"ElementaryTypeName","src":"2310:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3388,"mutability":"mutable","name":"length","nameLocation":"2333:6:24","nodeType":"VariableDeclaration","scope":3466,"src":"2325:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3387,"name":"uint256","nodeType":"ElementaryTypeName","src":"2325:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2309:31:24"},"returnParameters":{"id":3392,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3391,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3466,"src":"2364:13:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3390,"name":"string","nodeType":"ElementaryTypeName","src":"2364:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2363:15:24"},"scope":4459,"src":"2289:525:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3485,"nodeType":"Block","src":"3046:75:24","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":3479,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3469,"src":"3091:4:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3478,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3083:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":3477,"name":"uint160","nodeType":"ElementaryTypeName","src":"3083:7:24","typeDescriptions":{}}},"id":3480,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3083:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":3476,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3075:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":3475,"name":"uint256","nodeType":"ElementaryTypeName","src":"3075:7:24","typeDescriptions":{}}},"id":3481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3075:22:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3482,"name":"ADDRESS_LENGTH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3276,"src":"3099:14:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":3474,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[3383,3466,3486],"referencedDeclaration":3466,"src":"3063:11:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":3483,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3063:51:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":3473,"id":3484,"nodeType":"Return","src":"3056:58:24"}]},"documentation":{"id":3467,"nodeType":"StructuredDocumentation","src":"2820:148:24","text":" @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal\n representation."},"id":3486,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2982:11:24","nodeType":"FunctionDefinition","parameters":{"id":3470,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3469,"mutability":"mutable","name":"addr","nameLocation":"3002:4:24","nodeType":"VariableDeclaration","scope":3486,"src":"2994:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3468,"name":"address","nodeType":"ElementaryTypeName","src":"2994:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2993:14:24"},"returnParameters":{"id":3473,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3472,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3486,"src":"3031:13:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3471,"name":"string","nodeType":"ElementaryTypeName","src":"3031:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3030:15:24"},"scope":4459,"src":"2973:148:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3550,"nodeType":"Block","src":"3378:642:24","statements":[{"assignments":[3495],"declarations":[{"constant":false,"id":3495,"mutability":"mutable","name":"buffer","nameLocation":"3401:6:24","nodeType":"VariableDeclaration","scope":3550,"src":"3388:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3494,"name":"bytes","nodeType":"ElementaryTypeName","src":"3388:5:24","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":3502,"initialValue":{"arguments":[{"arguments":[{"id":3499,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3489,"src":"3428:4:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3498,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[3383,3466,3486],"referencedDeclaration":3486,"src":"3416:11:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$returns$_t_string_memory_ptr_$","typeString":"function (address) pure returns (string memory)"}},"id":3500,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3416:17:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3497,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3410:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3496,"name":"bytes","nodeType":"ElementaryTypeName","src":"3410:5:24","typeDescriptions":{}}},"id":3501,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3410:24:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3388:46:24"},{"assignments":[3504],"declarations":[{"constant":false,"id":3504,"mutability":"mutable","name":"hashValue","nameLocation":"3527:9:24","nodeType":"VariableDeclaration","scope":3550,"src":"3519:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3503,"name":"uint256","nodeType":"ElementaryTypeName","src":"3519:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3505,"nodeType":"VariableDeclarationStatement","src":"3519:17:24"},{"AST":{"nativeSrc":"3571:78:24","nodeType":"YulBlock","src":"3571:78:24","statements":[{"nativeSrc":"3585:54:24","nodeType":"YulAssignment","src":"3585:54:24","value":{"arguments":[{"kind":"number","nativeSrc":"3602:2:24","nodeType":"YulLiteral","src":"3602:2:24","type":"","value":"96"},{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"3620:6:24","nodeType":"YulIdentifier","src":"3620:6:24"},{"kind":"number","nativeSrc":"3628:4:24","nodeType":"YulLiteral","src":"3628:4:24","type":"","value":"0x22"}],"functionName":{"name":"add","nativeSrc":"3616:3:24","nodeType":"YulIdentifier","src":"3616:3:24"},"nativeSrc":"3616:17:24","nodeType":"YulFunctionCall","src":"3616:17:24"},{"kind":"number","nativeSrc":"3635:2:24","nodeType":"YulLiteral","src":"3635:2:24","type":"","value":"40"}],"functionName":{"name":"keccak256","nativeSrc":"3606:9:24","nodeType":"YulIdentifier","src":"3606:9:24"},"nativeSrc":"3606:32:24","nodeType":"YulFunctionCall","src":"3606:32:24"}],"functionName":{"name":"shr","nativeSrc":"3598:3:24","nodeType":"YulIdentifier","src":"3598:3:24"},"nativeSrc":"3598:41:24","nodeType":"YulFunctionCall","src":"3598:41:24"},"variableNames":[{"name":"hashValue","nativeSrc":"3585:9:24","nodeType":"YulIdentifier","src":"3585:9:24"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":3495,"isOffset":false,"isSlot":false,"src":"3620:6:24","valueSize":1},{"declaration":3504,"isOffset":false,"isSlot":false,"src":"3585:9:24","valueSize":1}],"flags":["memory-safe"],"id":3506,"nodeType":"InlineAssembly","src":"3546:103:24"},{"body":{"id":3543,"nodeType":"Block","src":"3692:291:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3530,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3517,"name":"hashValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3504,"src":"3798:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":3518,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3810:3:24","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"3798:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"37","id":3520,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3816:1:24","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"3798:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":3529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":3524,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3495,"src":"3827:6:24","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3526,"indexExpression":{"id":3525,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3508,"src":"3834:1:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3827:9:24","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":3523,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3821:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3522,"name":"uint8","nodeType":"ElementaryTypeName","src":"3821:5:24","typeDescriptions":{}}},"id":3527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3821:16:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3936","id":3528,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3840:2:24","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"3821:21:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3798:44:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3538,"nodeType":"IfStatement","src":"3794:150:24","trueBody":{"id":3537,"nodeType":"Block","src":"3844:100:24","statements":[{"expression":{"id":3535,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3531,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3495,"src":"3912:6:24","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3533,"indexExpression":{"id":3532,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3508,"src":"3919:1:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3912:9:24","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"^=","rightHandSide":{"hexValue":"30783230","id":3534,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3925:4:24","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"src":"3912:17:24","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3536,"nodeType":"ExpressionStatement","src":"3912:17:24"}]}},{"expression":{"id":3541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3539,"name":"hashValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3504,"src":"3957:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":3540,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3971:1:24","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"3957:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3542,"nodeType":"ExpressionStatement","src":"3957:15:24"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3511,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3508,"src":"3680:1:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":3512,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3684:1:24","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3680:5:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3544,"initializationExpression":{"assignments":[3508],"declarations":[{"constant":false,"id":3508,"mutability":"mutable","name":"i","nameLocation":"3672:1:24","nodeType":"VariableDeclaration","scope":3544,"src":"3664:9:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3507,"name":"uint256","nodeType":"ElementaryTypeName","src":"3664:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3510,"initialValue":{"hexValue":"3431","id":3509,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3676:2:24","typeDescriptions":{"typeIdentifier":"t_rational_41_by_1","typeString":"int_const 41"},"value":"41"},"nodeType":"VariableDeclarationStatement","src":"3664:14:24"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":3515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"3687:3:24","subExpression":{"id":3514,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3508,"src":"3689:1:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3516,"nodeType":"ExpressionStatement","src":"3687:3:24"},"nodeType":"ForStatement","src":"3659:324:24"},{"expression":{"arguments":[{"id":3547,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3495,"src":"4006:6:24","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3546,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3999:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":3545,"name":"string","nodeType":"ElementaryTypeName","src":"3999:6:24","typeDescriptions":{}}},"id":3548,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3999:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":3493,"id":3549,"nodeType":"Return","src":"3992:21:24"}]},"documentation":{"id":3487,"nodeType":"StructuredDocumentation","src":"3127:165:24","text":" @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal\n representation, according to EIP-55."},"id":3551,"implemented":true,"kind":"function","modifiers":[],"name":"toChecksumHexString","nameLocation":"3306:19:24","nodeType":"FunctionDefinition","parameters":{"id":3490,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3489,"mutability":"mutable","name":"addr","nameLocation":"3334:4:24","nodeType":"VariableDeclaration","scope":3551,"src":"3326:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3488,"name":"address","nodeType":"ElementaryTypeName","src":"3326:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3325:14:24"},"returnParameters":{"id":3493,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3492,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3551,"src":"3363:13:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3491,"name":"string","nodeType":"ElementaryTypeName","src":"3363:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3362:15:24"},"scope":4459,"src":"3297:723:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3587,"nodeType":"Block","src":"4175:104:24","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3571,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":3563,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3554,"src":"4198:1:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3562,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4192:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3561,"name":"bytes","nodeType":"ElementaryTypeName","src":"4192:5:24","typeDescriptions":{}}},"id":3564,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4192:8:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3565,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4201:6:24","memberName":"length","nodeType":"MemberAccess","src":"4192:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":3568,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3556,"src":"4217:1:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3567,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4211:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3566,"name":"bytes","nodeType":"ElementaryTypeName","src":"4211:5:24","typeDescriptions":{}}},"id":3569,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4211:8:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4220:6:24","memberName":"length","nodeType":"MemberAccess","src":"4211:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4192:34:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":3575,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3554,"src":"4246:1:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3574,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4240:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3573,"name":"bytes","nodeType":"ElementaryTypeName","src":"4240:5:24","typeDescriptions":{}}},"id":3576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4240:8:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3572,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4230:9:24","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3577,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4230:19:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"id":3581,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3556,"src":"4269:1:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3580,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4263:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3579,"name":"bytes","nodeType":"ElementaryTypeName","src":"4263:5:24","typeDescriptions":{}}},"id":3582,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4263:8:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3578,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4253:9:24","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3583,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4253:19:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4230:42:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4192:80:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3560,"id":3586,"nodeType":"Return","src":"4185:87:24"}]},"documentation":{"id":3552,"nodeType":"StructuredDocumentation","src":"4026:66:24","text":" @dev Returns true if the two strings are equal."},"id":3588,"implemented":true,"kind":"function","modifiers":[],"name":"equal","nameLocation":"4106:5:24","nodeType":"FunctionDefinition","parameters":{"id":3557,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3554,"mutability":"mutable","name":"a","nameLocation":"4126:1:24","nodeType":"VariableDeclaration","scope":3588,"src":"4112:15:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3553,"name":"string","nodeType":"ElementaryTypeName","src":"4112:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3556,"mutability":"mutable","name":"b","nameLocation":"4143:1:24","nodeType":"VariableDeclaration","scope":3588,"src":"4129:15:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3555,"name":"string","nodeType":"ElementaryTypeName","src":"4129:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4111:34:24"},"returnParameters":{"id":3560,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3559,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3588,"src":"4169:4:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3558,"name":"bool","nodeType":"ElementaryTypeName","src":"4169:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4168:6:24"},"scope":4459,"src":"4097:182:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3606,"nodeType":"Block","src":"4576:64:24","statements":[{"expression":{"arguments":[{"id":3597,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3591,"src":"4603:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":3598,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4610:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":3601,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3591,"src":"4619:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3600,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4613:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3599,"name":"bytes","nodeType":"ElementaryTypeName","src":"4613:5:24","typeDescriptions":{}}},"id":3602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4613:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3603,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4626:6:24","memberName":"length","nodeType":"MemberAccess","src":"4613:19:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3596,"name":"parseUint","nodeType":"Identifier","overloadedDeclarations":[3607,3638],"referencedDeclaration":3638,"src":"4593:9:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (uint256)"}},"id":3604,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4593:40:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3595,"id":3605,"nodeType":"Return","src":"4586:47:24"}]},"documentation":{"id":3589,"nodeType":"StructuredDocumentation","src":"4285:214:24","text":" @dev Parse a decimal string and returns the value as a `uint256`.\n Requirements:\n - The string must be formatted as `[0-9]*`\n - The result must fit into an `uint256` type"},"id":3607,"implemented":true,"kind":"function","modifiers":[],"name":"parseUint","nameLocation":"4513:9:24","nodeType":"FunctionDefinition","parameters":{"id":3592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3591,"mutability":"mutable","name":"input","nameLocation":"4537:5:24","nodeType":"VariableDeclaration","scope":3607,"src":"4523:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3590,"name":"string","nodeType":"ElementaryTypeName","src":"4523:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4522:21:24"},"returnParameters":{"id":3595,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3594,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3607,"src":"4567:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3593,"name":"uint256","nodeType":"ElementaryTypeName","src":"4567:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4566:9:24"},"scope":4459,"src":"4504:136:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3637,"nodeType":"Block","src":"5038:153:24","statements":[{"assignments":[3620,3622],"declarations":[{"constant":false,"id":3620,"mutability":"mutable","name":"success","nameLocation":"5054:7:24","nodeType":"VariableDeclaration","scope":3637,"src":"5049:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3619,"name":"bool","nodeType":"ElementaryTypeName","src":"5049:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3622,"mutability":"mutable","name":"value","nameLocation":"5071:5:24","nodeType":"VariableDeclaration","scope":3637,"src":"5063:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3621,"name":"uint256","nodeType":"ElementaryTypeName","src":"5063:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3628,"initialValue":{"arguments":[{"id":3624,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3610,"src":"5093:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":3625,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3612,"src":"5100:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3626,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3614,"src":"5107:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3623,"name":"tryParseUint","nodeType":"Identifier","overloadedDeclarations":[3659,3696],"referencedDeclaration":3696,"src":"5080:12:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":3627,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5080:31:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"5048:63:24"},{"condition":{"id":3630,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5125:8:24","subExpression":{"id":3629,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3620,"src":"5126:7:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3634,"nodeType":"IfStatement","src":"5121:41:24","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":3631,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3286,"src":"5142:18:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":3632,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5142:20:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":3633,"nodeType":"RevertStatement","src":"5135:27:24"}},{"expression":{"id":3635,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3622,"src":"5179:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3618,"id":3636,"nodeType":"Return","src":"5172:12:24"}]},"documentation":{"id":3608,"nodeType":"StructuredDocumentation","src":"4646:287:24","text":" @dev Variant of {parseUint} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `[0-9]*`\n - The result must fit into an `uint256` type"},"id":3638,"implemented":true,"kind":"function","modifiers":[],"name":"parseUint","nameLocation":"4947:9:24","nodeType":"FunctionDefinition","parameters":{"id":3615,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3610,"mutability":"mutable","name":"input","nameLocation":"4971:5:24","nodeType":"VariableDeclaration","scope":3638,"src":"4957:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3609,"name":"string","nodeType":"ElementaryTypeName","src":"4957:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3612,"mutability":"mutable","name":"begin","nameLocation":"4986:5:24","nodeType":"VariableDeclaration","scope":3638,"src":"4978:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3611,"name":"uint256","nodeType":"ElementaryTypeName","src":"4978:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3614,"mutability":"mutable","name":"end","nameLocation":"5001:3:24","nodeType":"VariableDeclaration","scope":3638,"src":"4993:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3613,"name":"uint256","nodeType":"ElementaryTypeName","src":"4993:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4956:49:24"},"returnParameters":{"id":3618,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3617,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3638,"src":"5029:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3616,"name":"uint256","nodeType":"ElementaryTypeName","src":"5029:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5028:9:24"},"scope":4459,"src":"4938:253:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3658,"nodeType":"Block","src":"5512:83:24","statements":[{"expression":{"arguments":[{"id":3649,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3641,"src":"5558:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":3650,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5565:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":3653,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3641,"src":"5574:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3652,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5568:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3651,"name":"bytes","nodeType":"ElementaryTypeName","src":"5568:5:24","typeDescriptions":{}}},"id":3654,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5568:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5581:6:24","memberName":"length","nodeType":"MemberAccess","src":"5568:19:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3648,"name":"_tryParseUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3766,"src":"5529:28:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":3656,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5529:59:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":3647,"id":3657,"nodeType":"Return","src":"5522:66:24"}]},"documentation":{"id":3639,"nodeType":"StructuredDocumentation","src":"5197:215:24","text":" @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":3659,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseUint","nameLocation":"5426:12:24","nodeType":"FunctionDefinition","parameters":{"id":3642,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3641,"mutability":"mutable","name":"input","nameLocation":"5453:5:24","nodeType":"VariableDeclaration","scope":3659,"src":"5439:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3640,"name":"string","nodeType":"ElementaryTypeName","src":"5439:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5438:21:24"},"returnParameters":{"id":3647,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3644,"mutability":"mutable","name":"success","nameLocation":"5488:7:24","nodeType":"VariableDeclaration","scope":3659,"src":"5483:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3643,"name":"bool","nodeType":"ElementaryTypeName","src":"5483:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3646,"mutability":"mutable","name":"value","nameLocation":"5505:5:24","nodeType":"VariableDeclaration","scope":3659,"src":"5497:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3645,"name":"uint256","nodeType":"ElementaryTypeName","src":"5497:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5482:29:24"},"scope":4459,"src":"5417:178:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3695,"nodeType":"Block","src":"5997:144:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3673,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3666,"src":"6011:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":3676,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3662,"src":"6023:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3675,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6017:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3674,"name":"bytes","nodeType":"ElementaryTypeName","src":"6017:5:24","typeDescriptions":{}}},"id":3677,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6017:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3678,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6030:6:24","memberName":"length","nodeType":"MemberAccess","src":"6017:19:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6011:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3680,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3664,"src":"6040:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":3681,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3666,"src":"6048:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6040:11:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6011:40:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3688,"nodeType":"IfStatement","src":"6007:63:24","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":3684,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6061:5:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":3685,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6068:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":3686,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6060:10:24","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":3672,"id":3687,"nodeType":"Return","src":"6053:17:24"}},{"expression":{"arguments":[{"id":3690,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3662,"src":"6116:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":3691,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3664,"src":"6123:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3692,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3666,"src":"6130:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3689,"name":"_tryParseUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3766,"src":"6087:28:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":3693,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6087:47:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":3672,"id":3694,"nodeType":"Return","src":"6080:54:24"}]},"documentation":{"id":3660,"nodeType":"StructuredDocumentation","src":"5601:238:24","text":" @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":3696,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseUint","nameLocation":"5853:12:24","nodeType":"FunctionDefinition","parameters":{"id":3667,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3662,"mutability":"mutable","name":"input","nameLocation":"5889:5:24","nodeType":"VariableDeclaration","scope":3696,"src":"5875:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3661,"name":"string","nodeType":"ElementaryTypeName","src":"5875:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3664,"mutability":"mutable","name":"begin","nameLocation":"5912:5:24","nodeType":"VariableDeclaration","scope":3696,"src":"5904:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3663,"name":"uint256","nodeType":"ElementaryTypeName","src":"5904:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3666,"mutability":"mutable","name":"end","nameLocation":"5935:3:24","nodeType":"VariableDeclaration","scope":3696,"src":"5927:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3665,"name":"uint256","nodeType":"ElementaryTypeName","src":"5927:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5865:79:24"},"returnParameters":{"id":3672,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3669,"mutability":"mutable","name":"success","nameLocation":"5973:7:24","nodeType":"VariableDeclaration","scope":3696,"src":"5968:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3668,"name":"bool","nodeType":"ElementaryTypeName","src":"5968:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3671,"mutability":"mutable","name":"value","nameLocation":"5990:5:24","nodeType":"VariableDeclaration","scope":3696,"src":"5982:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3670,"name":"uint256","nodeType":"ElementaryTypeName","src":"5982:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5967:29:24"},"scope":4459,"src":"5844:297:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3765,"nodeType":"Block","src":"6521:347:24","statements":[{"assignments":[3711],"declarations":[{"constant":false,"id":3711,"mutability":"mutable","name":"buffer","nameLocation":"6544:6:24","nodeType":"VariableDeclaration","scope":3765,"src":"6531:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3710,"name":"bytes","nodeType":"ElementaryTypeName","src":"6531:5:24","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":3716,"initialValue":{"arguments":[{"id":3714,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3699,"src":"6559:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3713,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6553:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3712,"name":"bytes","nodeType":"ElementaryTypeName","src":"6553:5:24","typeDescriptions":{}}},"id":3715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6553:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"6531:34:24"},{"assignments":[3718],"declarations":[{"constant":false,"id":3718,"mutability":"mutable","name":"result","nameLocation":"6584:6:24","nodeType":"VariableDeclaration","scope":3765,"src":"6576:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3717,"name":"uint256","nodeType":"ElementaryTypeName","src":"6576:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3720,"initialValue":{"hexValue":"30","id":3719,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6593:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6576:18:24"},{"body":{"id":3759,"nodeType":"Block","src":"6642:189:24","statements":[{"assignments":[3732],"declarations":[{"constant":false,"id":3732,"mutability":"mutable","name":"chr","nameLocation":"6662:3:24","nodeType":"VariableDeclaration","scope":3759,"src":"6656:9:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3731,"name":"uint8","nodeType":"ElementaryTypeName","src":"6656:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":3742,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":3737,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3711,"src":"6711:6:24","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":3738,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3722,"src":"6719:1:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3736,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4458,"src":"6688:22:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":3739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6688:33:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3735,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6681:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":3734,"name":"bytes1","nodeType":"ElementaryTypeName","src":"6681:6:24","typeDescriptions":{}}},"id":3740,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6681:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":3733,"name":"_tryParseChr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4446,"src":"6668:12:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes1_$returns$_t_uint8_$","typeString":"function (bytes1) pure returns (uint8)"}},"id":3741,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6668:55:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"6656:67:24"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":3745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3743,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3732,"src":"6741:3:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"39","id":3744,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6747:1:24","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"src":"6741:7:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3750,"nodeType":"IfStatement","src":"6737:30:24","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":3746,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6758:5:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":3747,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6765:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":3748,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6757:10:24","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":3709,"id":3749,"nodeType":"Return","src":"6750:17:24"}},{"expression":{"id":3753,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3751,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3718,"src":"6781:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"hexValue":"3130","id":3752,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6791:2:24","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"6781:12:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3754,"nodeType":"ExpressionStatement","src":"6781:12:24"},{"expression":{"id":3757,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3755,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3718,"src":"6807:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3756,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3732,"src":"6817:3:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6807:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3758,"nodeType":"ExpressionStatement","src":"6807:13:24"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3725,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3722,"src":"6628:1:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":3726,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3703,"src":"6632:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6628:7:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3760,"initializationExpression":{"assignments":[3722],"declarations":[{"constant":false,"id":3722,"mutability":"mutable","name":"i","nameLocation":"6617:1:24","nodeType":"VariableDeclaration","scope":3760,"src":"6609:9:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3721,"name":"uint256","nodeType":"ElementaryTypeName","src":"6609:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3724,"initialValue":{"id":3723,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3701,"src":"6621:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6609:17:24"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":3729,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6637:3:24","subExpression":{"id":3728,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3722,"src":"6639:1:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3730,"nodeType":"ExpressionStatement","src":"6637:3:24"},"nodeType":"ForStatement","src":"6604:227:24"},{"expression":{"components":[{"hexValue":"74727565","id":3761,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6848:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":3762,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3718,"src":"6854:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3763,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6847:14:24","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":3709,"id":3764,"nodeType":"Return","src":"6840:21:24"}]},"documentation":{"id":3697,"nodeType":"StructuredDocumentation","src":"6147:201:24","text":" @dev Implementation of {tryParseUint} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":3766,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseUintUncheckedBounds","nameLocation":"6362:28:24","nodeType":"FunctionDefinition","parameters":{"id":3704,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3699,"mutability":"mutable","name":"input","nameLocation":"6414:5:24","nodeType":"VariableDeclaration","scope":3766,"src":"6400:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3698,"name":"string","nodeType":"ElementaryTypeName","src":"6400:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3701,"mutability":"mutable","name":"begin","nameLocation":"6437:5:24","nodeType":"VariableDeclaration","scope":3766,"src":"6429:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3700,"name":"uint256","nodeType":"ElementaryTypeName","src":"6429:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3703,"mutability":"mutable","name":"end","nameLocation":"6460:3:24","nodeType":"VariableDeclaration","scope":3766,"src":"6452:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3702,"name":"uint256","nodeType":"ElementaryTypeName","src":"6452:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6390:79:24"},"returnParameters":{"id":3709,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3706,"mutability":"mutable","name":"success","nameLocation":"6497:7:24","nodeType":"VariableDeclaration","scope":3766,"src":"6492:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3705,"name":"bool","nodeType":"ElementaryTypeName","src":"6492:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3708,"mutability":"mutable","name":"value","nameLocation":"6514:5:24","nodeType":"VariableDeclaration","scope":3766,"src":"6506:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3707,"name":"uint256","nodeType":"ElementaryTypeName","src":"6506:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6491:29:24"},"scope":4459,"src":"6353:515:24","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":3784,"nodeType":"Block","src":"7165:63:24","statements":[{"expression":{"arguments":[{"id":3775,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3769,"src":"7191:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":3776,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7198:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":3779,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3769,"src":"7207:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3778,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7201:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3777,"name":"bytes","nodeType":"ElementaryTypeName","src":"7201:5:24","typeDescriptions":{}}},"id":3780,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7201:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3781,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7214:6:24","memberName":"length","nodeType":"MemberAccess","src":"7201:19:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3774,"name":"parseInt","nodeType":"Identifier","overloadedDeclarations":[3785,3816],"referencedDeclaration":3816,"src":"7182:8:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (int256)"}},"id":3782,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7182:39:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":3773,"id":3783,"nodeType":"Return","src":"7175:46:24"}]},"documentation":{"id":3767,"nodeType":"StructuredDocumentation","src":"6874:216:24","text":" @dev Parse a decimal string and returns the value as a `int256`.\n Requirements:\n - The string must be formatted as `[-+]?[0-9]*`\n - The result must fit in an `int256` type."},"id":3785,"implemented":true,"kind":"function","modifiers":[],"name":"parseInt","nameLocation":"7104:8:24","nodeType":"FunctionDefinition","parameters":{"id":3770,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3769,"mutability":"mutable","name":"input","nameLocation":"7127:5:24","nodeType":"VariableDeclaration","scope":3785,"src":"7113:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3768,"name":"string","nodeType":"ElementaryTypeName","src":"7113:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7112:21:24"},"returnParameters":{"id":3773,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3772,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3785,"src":"7157:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3771,"name":"int256","nodeType":"ElementaryTypeName","src":"7157:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7156:8:24"},"scope":4459,"src":"7095:133:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3815,"nodeType":"Block","src":"7633:151:24","statements":[{"assignments":[3798,3800],"declarations":[{"constant":false,"id":3798,"mutability":"mutable","name":"success","nameLocation":"7649:7:24","nodeType":"VariableDeclaration","scope":3815,"src":"7644:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3797,"name":"bool","nodeType":"ElementaryTypeName","src":"7644:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3800,"mutability":"mutable","name":"value","nameLocation":"7665:5:24","nodeType":"VariableDeclaration","scope":3815,"src":"7658:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3799,"name":"int256","nodeType":"ElementaryTypeName","src":"7658:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":3806,"initialValue":{"arguments":[{"id":3802,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3788,"src":"7686:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":3803,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3790,"src":"7693:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3804,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3792,"src":"7700:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3801,"name":"tryParseInt","nodeType":"Identifier","overloadedDeclarations":[3837,3879],"referencedDeclaration":3879,"src":"7674:11:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,int256)"}},"id":3805,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7674:30:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"nodeType":"VariableDeclarationStatement","src":"7643:61:24"},{"condition":{"id":3808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7718:8:24","subExpression":{"id":3807,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3798,"src":"7719:7:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3812,"nodeType":"IfStatement","src":"7714:41:24","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":3809,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3286,"src":"7735:18:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":3810,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7735:20:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":3811,"nodeType":"RevertStatement","src":"7728:27:24"}},{"expression":{"id":3813,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3800,"src":"7772:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":3796,"id":3814,"nodeType":"Return","src":"7765:12:24"}]},"documentation":{"id":3786,"nodeType":"StructuredDocumentation","src":"7234:296:24","text":" @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `[-+]?[0-9]*`\n - The result must fit in an `int256` type."},"id":3816,"implemented":true,"kind":"function","modifiers":[],"name":"parseInt","nameLocation":"7544:8:24","nodeType":"FunctionDefinition","parameters":{"id":3793,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3788,"mutability":"mutable","name":"input","nameLocation":"7567:5:24","nodeType":"VariableDeclaration","scope":3816,"src":"7553:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3787,"name":"string","nodeType":"ElementaryTypeName","src":"7553:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3790,"mutability":"mutable","name":"begin","nameLocation":"7582:5:24","nodeType":"VariableDeclaration","scope":3816,"src":"7574:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3789,"name":"uint256","nodeType":"ElementaryTypeName","src":"7574:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3792,"mutability":"mutable","name":"end","nameLocation":"7597:3:24","nodeType":"VariableDeclaration","scope":3816,"src":"7589:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3791,"name":"uint256","nodeType":"ElementaryTypeName","src":"7589:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7552:49:24"},"returnParameters":{"id":3796,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3795,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3816,"src":"7625:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3794,"name":"int256","nodeType":"ElementaryTypeName","src":"7625:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7624:8:24"},"scope":4459,"src":"7535:249:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3836,"nodeType":"Block","src":"8175:82:24","statements":[{"expression":{"arguments":[{"id":3827,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3819,"src":"8220:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":3828,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8227:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":3831,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3819,"src":"8236:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3830,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8230:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3829,"name":"bytes","nodeType":"ElementaryTypeName","src":"8230:5:24","typeDescriptions":{}}},"id":3832,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8230:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8243:6:24","memberName":"length","nodeType":"MemberAccess","src":"8230:19:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3826,"name":"_tryParseIntUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4000,"src":"8192:27:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,int256)"}},"id":3834,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8192:58:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":3825,"id":3835,"nodeType":"Return","src":"8185:65:24"}]},"documentation":{"id":3817,"nodeType":"StructuredDocumentation","src":"7790:287:24","text":" @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if\n the result does not fit in a `int256`.\n NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`."},"id":3837,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseInt","nameLocation":"8091:11:24","nodeType":"FunctionDefinition","parameters":{"id":3820,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3819,"mutability":"mutable","name":"input","nameLocation":"8117:5:24","nodeType":"VariableDeclaration","scope":3837,"src":"8103:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3818,"name":"string","nodeType":"ElementaryTypeName","src":"8103:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8102:21:24"},"returnParameters":{"id":3825,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3822,"mutability":"mutable","name":"success","nameLocation":"8152:7:24","nodeType":"VariableDeclaration","scope":3837,"src":"8147:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3821,"name":"bool","nodeType":"ElementaryTypeName","src":"8147:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3824,"mutability":"mutable","name":"value","nameLocation":"8168:5:24","nodeType":"VariableDeclaration","scope":3837,"src":"8161:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3823,"name":"int256","nodeType":"ElementaryTypeName","src":"8161:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"8146:28:24"},"scope":4459,"src":"8082:175:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"constant":true,"id":3842,"mutability":"constant","name":"ABS_MIN_INT256","nameLocation":"8288:14:24","nodeType":"VariableDeclaration","scope":4459,"src":"8263:50:24","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3838,"name":"uint256","nodeType":"ElementaryTypeName","src":"8263:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1","typeString":"int_const 5789...(69 digits omitted)...9968"},"id":3841,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":3839,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8305:1:24","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"323535","id":3840,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8310:3:24","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"8305:8:24","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1","typeString":"int_const 5789...(69 digits omitted)...9968"}},"visibility":"private"},{"body":{"id":3878,"nodeType":"Block","src":"8779:143:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3866,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3856,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3849,"src":"8793:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":3859,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3845,"src":"8805:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3858,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8799:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3857,"name":"bytes","nodeType":"ElementaryTypeName","src":"8799:5:24","typeDescriptions":{}}},"id":3860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8799:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8812:6:24","memberName":"length","nodeType":"MemberAccess","src":"8799:19:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8793:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3863,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3847,"src":"8822:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":3864,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3849,"src":"8830:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8822:11:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"8793:40:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3871,"nodeType":"IfStatement","src":"8789:63:24","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":3867,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8843:5:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":3868,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8850:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":3869,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"8842:10:24","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":3855,"id":3870,"nodeType":"Return","src":"8835:17:24"}},{"expression":{"arguments":[{"id":3873,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3845,"src":"8897:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":3874,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3847,"src":"8904:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3875,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3849,"src":"8911:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3872,"name":"_tryParseIntUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4000,"src":"8869:27:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,int256)"}},"id":3876,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8869:46:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":3855,"id":3877,"nodeType":"Return","src":"8862:53:24"}]},"documentation":{"id":3843,"nodeType":"StructuredDocumentation","src":"8320:303:24","text":" @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n character or if the result does not fit in a `int256`.\n NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`."},"id":3879,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseInt","nameLocation":"8637:11:24","nodeType":"FunctionDefinition","parameters":{"id":3850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3845,"mutability":"mutable","name":"input","nameLocation":"8672:5:24","nodeType":"VariableDeclaration","scope":3879,"src":"8658:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3844,"name":"string","nodeType":"ElementaryTypeName","src":"8658:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3847,"mutability":"mutable","name":"begin","nameLocation":"8695:5:24","nodeType":"VariableDeclaration","scope":3879,"src":"8687:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3846,"name":"uint256","nodeType":"ElementaryTypeName","src":"8687:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3849,"mutability":"mutable","name":"end","nameLocation":"8718:3:24","nodeType":"VariableDeclaration","scope":3879,"src":"8710:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3848,"name":"uint256","nodeType":"ElementaryTypeName","src":"8710:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8648:79:24"},"returnParameters":{"id":3855,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3852,"mutability":"mutable","name":"success","nameLocation":"8756:7:24","nodeType":"VariableDeclaration","scope":3879,"src":"8751:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3851,"name":"bool","nodeType":"ElementaryTypeName","src":"8751:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3854,"mutability":"mutable","name":"value","nameLocation":"8772:5:24","nodeType":"VariableDeclaration","scope":3879,"src":"8765:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3853,"name":"int256","nodeType":"ElementaryTypeName","src":"8765:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"8750:28:24"},"scope":4459,"src":"8628:294:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3999,"nodeType":"Block","src":"9299:812:24","statements":[{"assignments":[3894],"declarations":[{"constant":false,"id":3894,"mutability":"mutable","name":"buffer","nameLocation":"9322:6:24","nodeType":"VariableDeclaration","scope":3999,"src":"9309:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3893,"name":"bytes","nodeType":"ElementaryTypeName","src":"9309:5:24","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":3899,"initialValue":{"arguments":[{"id":3897,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3882,"src":"9337:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3896,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9331:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3895,"name":"bytes","nodeType":"ElementaryTypeName","src":"9331:5:24","typeDescriptions":{}}},"id":3898,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9331:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"9309:34:24"},{"assignments":[3901],"declarations":[{"constant":false,"id":3901,"mutability":"mutable","name":"sign","nameLocation":"9407:4:24","nodeType":"VariableDeclaration","scope":3999,"src":"9400:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":3900,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9400:6:24","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":3917,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3904,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3902,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3884,"src":"9414:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3903,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3886,"src":"9423:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9414:12:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"arguments":[{"id":3912,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3894,"src":"9471:6:24","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":3913,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3884,"src":"9479:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3911,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4458,"src":"9448:22:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":3914,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9448:37:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3910,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9441:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":3909,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9441:6:24","typeDescriptions":{}}},"id":3915,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9441:45:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3916,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9414:72:24","trueExpression":{"arguments":[{"hexValue":"30","id":3907,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9436:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":3906,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9429:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":3905,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9429:6:24","typeDescriptions":{}}},"id":3908,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9429:9:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"9400:86:24"},{"assignments":[3919],"declarations":[{"constant":false,"id":3919,"mutability":"mutable","name":"positiveSign","nameLocation":"9572:12:24","nodeType":"VariableDeclaration","scope":3999,"src":"9567:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3918,"name":"bool","nodeType":"ElementaryTypeName","src":"9567:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":3926,"initialValue":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":3925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3920,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3901,"src":"9587:4:24","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"2b","id":3923,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9602:3:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_728b8dbbe730d9acd55e30e768e6a28a04bea0c61b88108287c2c87d79c98bb8","typeString":"literal_string \"+\""},"value":"+"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_728b8dbbe730d9acd55e30e768e6a28a04bea0c61b88108287c2c87d79c98bb8","typeString":"literal_string \"+\""}],"id":3922,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9595:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":3921,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9595:6:24","typeDescriptions":{}}},"id":3924,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9595:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"9587:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"9567:39:24"},{"assignments":[3928],"declarations":[{"constant":false,"id":3928,"mutability":"mutable","name":"negativeSign","nameLocation":"9621:12:24","nodeType":"VariableDeclaration","scope":3999,"src":"9616:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3927,"name":"bool","nodeType":"ElementaryTypeName","src":"9616:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":3935,"initialValue":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":3934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3929,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3901,"src":"9636:4:24","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"2d","id":3932,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9651:3:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""}],"id":3931,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9644:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":3930,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9644:6:24","typeDescriptions":{}}},"id":3933,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9644:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"9636:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"9616:39:24"},{"assignments":[3937],"declarations":[{"constant":false,"id":3937,"mutability":"mutable","name":"offset","nameLocation":"9673:6:24","nodeType":"VariableDeclaration","scope":3999,"src":"9665:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3936,"name":"uint256","nodeType":"ElementaryTypeName","src":"9665:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3944,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3940,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3938,"name":"positiveSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3919,"src":"9683:12:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":3939,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3928,"src":"9699:12:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9683:28:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":3941,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9682:30:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9713:6:24","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"9682:37:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":3943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9682:39:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9665:56:24"},{"assignments":[3946,3948],"declarations":[{"constant":false,"id":3946,"mutability":"mutable","name":"absSuccess","nameLocation":"9738:10:24","nodeType":"VariableDeclaration","scope":3999,"src":"9733:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3945,"name":"bool","nodeType":"ElementaryTypeName","src":"9733:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3948,"mutability":"mutable","name":"absValue","nameLocation":"9758:8:24","nodeType":"VariableDeclaration","scope":3999,"src":"9750:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3947,"name":"uint256","nodeType":"ElementaryTypeName","src":"9750:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3956,"initialValue":{"arguments":[{"id":3950,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3882,"src":"9783:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3951,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3884,"src":"9790:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":3952,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3937,"src":"9798:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9790:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3954,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3886,"src":"9806:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3949,"name":"tryParseUint","nodeType":"Identifier","overloadedDeclarations":[3659,3696],"referencedDeclaration":3696,"src":"9770:12:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":3955,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9770:40:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"9732:78:24"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3957,"name":"absSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3946,"src":"9825:10:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3960,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3958,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3948,"src":"9839:8:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":3959,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3842,"src":"9850:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9839:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9825:39:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3979,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3977,"name":"absSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3946,"src":"9967:10:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":3978,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3928,"src":"9981:12:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9967:26:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3982,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3980,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3948,"src":"9997:8:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3981,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3842,"src":"10009:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9997:26:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9967:56:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"components":[{"hexValue":"66616c7365","id":3993,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10095:5:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":3994,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10102:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":3995,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"10094:10:24","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":3892,"id":3996,"nodeType":"Return","src":"10087:17:24"},"id":3997,"nodeType":"IfStatement","src":"9963:141:24","trueBody":{"id":3992,"nodeType":"Block","src":"10025:56:24","statements":[{"expression":{"components":[{"hexValue":"74727565","id":3984,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10047:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"arguments":[{"id":3987,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10058:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":3986,"name":"int256","nodeType":"ElementaryTypeName","src":"10058:6:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":3985,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10053:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3988,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10053:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_int256","typeString":"type(int256)"}},"id":3989,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10066:3:24","memberName":"min","nodeType":"MemberAccess","src":"10053:16:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":3990,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"10046:24:24","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":3892,"id":3991,"nodeType":"Return","src":"10039:31:24"}]}},"id":3998,"nodeType":"IfStatement","src":"9821:283:24","trueBody":{"id":3976,"nodeType":"Block","src":"9866:91:24","statements":[{"expression":{"components":[{"hexValue":"74727565","id":3962,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9888:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"condition":{"id":3963,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3928,"src":"9894:12:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":3971,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3948,"src":"9936:8:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3970,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9929:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":3969,"name":"int256","nodeType":"ElementaryTypeName","src":"9929:6:24","typeDescriptions":{}}},"id":3972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9929:16:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":3973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9894:51:24","trueExpression":{"id":3968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"9909:17:24","subExpression":{"arguments":[{"id":3966,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3948,"src":"9917:8:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3965,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9910:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":3964,"name":"int256","nodeType":"ElementaryTypeName","src":"9910:6:24","typeDescriptions":{}}},"id":3967,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9910:16:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":3974,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9887:59:24","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":3892,"id":3975,"nodeType":"Return","src":"9880:66:24"}]}}]},"documentation":{"id":3880,"nodeType":"StructuredDocumentation","src":"8928:200:24","text":" @dev Implementation of {tryParseInt} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":4000,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseIntUncheckedBounds","nameLocation":"9142:27:24","nodeType":"FunctionDefinition","parameters":{"id":3887,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3882,"mutability":"mutable","name":"input","nameLocation":"9193:5:24","nodeType":"VariableDeclaration","scope":4000,"src":"9179:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3881,"name":"string","nodeType":"ElementaryTypeName","src":"9179:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3884,"mutability":"mutable","name":"begin","nameLocation":"9216:5:24","nodeType":"VariableDeclaration","scope":4000,"src":"9208:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3883,"name":"uint256","nodeType":"ElementaryTypeName","src":"9208:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3886,"mutability":"mutable","name":"end","nameLocation":"9239:3:24","nodeType":"VariableDeclaration","scope":4000,"src":"9231:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3885,"name":"uint256","nodeType":"ElementaryTypeName","src":"9231:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9169:79:24"},"returnParameters":{"id":3892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3889,"mutability":"mutable","name":"success","nameLocation":"9276:7:24","nodeType":"VariableDeclaration","scope":4000,"src":"9271:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3888,"name":"bool","nodeType":"ElementaryTypeName","src":"9271:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3891,"mutability":"mutable","name":"value","nameLocation":"9292:5:24","nodeType":"VariableDeclaration","scope":4000,"src":"9285:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3890,"name":"int256","nodeType":"ElementaryTypeName","src":"9285:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9270:28:24"},"scope":4459,"src":"9133:978:24","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":4018,"nodeType":"Block","src":"10456:67:24","statements":[{"expression":{"arguments":[{"id":4009,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4003,"src":"10486:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":4010,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10493:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":4013,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4003,"src":"10502:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":4012,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10496:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":4011,"name":"bytes","nodeType":"ElementaryTypeName","src":"10496:5:24","typeDescriptions":{}}},"id":4014,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10496:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":4015,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10509:6:24","memberName":"length","nodeType":"MemberAccess","src":"10496:19:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4008,"name":"parseHexUint","nodeType":"Identifier","overloadedDeclarations":[4019,4050],"referencedDeclaration":4050,"src":"10473:12:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (uint256)"}},"id":4016,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10473:43:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4007,"id":4017,"nodeType":"Return","src":"10466:50:24"}]},"documentation":{"id":4001,"nodeType":"StructuredDocumentation","src":"10117:259:24","text":" @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as a `uint256`.\n Requirements:\n - The string must be formatted as `(0x)?[0-9a-fA-F]*`\n - The result must fit in an `uint256` type."},"id":4019,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexUint","nameLocation":"10390:12:24","nodeType":"FunctionDefinition","parameters":{"id":4004,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4003,"mutability":"mutable","name":"input","nameLocation":"10417:5:24","nodeType":"VariableDeclaration","scope":4019,"src":"10403:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4002,"name":"string","nodeType":"ElementaryTypeName","src":"10403:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"10402:21:24"},"returnParameters":{"id":4007,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4006,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4019,"src":"10447:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4005,"name":"uint256","nodeType":"ElementaryTypeName","src":"10447:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10446:9:24"},"scope":4459,"src":"10381:142:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4049,"nodeType":"Block","src":"10937:156:24","statements":[{"assignments":[4032,4034],"declarations":[{"constant":false,"id":4032,"mutability":"mutable","name":"success","nameLocation":"10953:7:24","nodeType":"VariableDeclaration","scope":4049,"src":"10948:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4031,"name":"bool","nodeType":"ElementaryTypeName","src":"10948:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4034,"mutability":"mutable","name":"value","nameLocation":"10970:5:24","nodeType":"VariableDeclaration","scope":4049,"src":"10962:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4033,"name":"uint256","nodeType":"ElementaryTypeName","src":"10962:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4040,"initialValue":{"arguments":[{"id":4036,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4022,"src":"10995:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":4037,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4024,"src":"11002:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4038,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4026,"src":"11009:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4035,"name":"tryParseHexUint","nodeType":"Identifier","overloadedDeclarations":[4071,4108],"referencedDeclaration":4108,"src":"10979:15:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":4039,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10979:34:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"10947:66:24"},{"condition":{"id":4042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"11027:8:24","subExpression":{"id":4041,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4032,"src":"11028:7:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4046,"nodeType":"IfStatement","src":"11023:41:24","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":4043,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3286,"src":"11044:18:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":4044,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11044:20:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4045,"nodeType":"RevertStatement","src":"11037:27:24"}},{"expression":{"id":4047,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4034,"src":"11081:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4030,"id":4048,"nodeType":"Return","src":"11074:12:24"}]},"documentation":{"id":4020,"nodeType":"StructuredDocumentation","src":"10529:300:24","text":" @dev Variant of {parseHexUint} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `(0x)?[0-9a-fA-F]*`\n - The result must fit in an `uint256` type."},"id":4050,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexUint","nameLocation":"10843:12:24","nodeType":"FunctionDefinition","parameters":{"id":4027,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4022,"mutability":"mutable","name":"input","nameLocation":"10870:5:24","nodeType":"VariableDeclaration","scope":4050,"src":"10856:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4021,"name":"string","nodeType":"ElementaryTypeName","src":"10856:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4024,"mutability":"mutable","name":"begin","nameLocation":"10885:5:24","nodeType":"VariableDeclaration","scope":4050,"src":"10877:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4023,"name":"uint256","nodeType":"ElementaryTypeName","src":"10877:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4026,"mutability":"mutable","name":"end","nameLocation":"10900:3:24","nodeType":"VariableDeclaration","scope":4050,"src":"10892:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4025,"name":"uint256","nodeType":"ElementaryTypeName","src":"10892:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10855:49:24"},"returnParameters":{"id":4030,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4029,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4050,"src":"10928:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4028,"name":"uint256","nodeType":"ElementaryTypeName","src":"10928:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10927:9:24"},"scope":4459,"src":"10834:259:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4070,"nodeType":"Block","src":"11420:86:24","statements":[{"expression":{"arguments":[{"id":4061,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4053,"src":"11469:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":4062,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11476:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":4065,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4053,"src":"11485:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":4064,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11479:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":4063,"name":"bytes","nodeType":"ElementaryTypeName","src":"11479:5:24","typeDescriptions":{}}},"id":4066,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11479:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":4067,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11492:6:24","memberName":"length","nodeType":"MemberAccess","src":"11479:19:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4060,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4211,"src":"11437:31:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":4068,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11437:62:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":4059,"id":4069,"nodeType":"Return","src":"11430:69:24"}]},"documentation":{"id":4051,"nodeType":"StructuredDocumentation","src":"11099:218:24","text":" @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":4071,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseHexUint","nameLocation":"11331:15:24","nodeType":"FunctionDefinition","parameters":{"id":4054,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4053,"mutability":"mutable","name":"input","nameLocation":"11361:5:24","nodeType":"VariableDeclaration","scope":4071,"src":"11347:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4052,"name":"string","nodeType":"ElementaryTypeName","src":"11347:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"11346:21:24"},"returnParameters":{"id":4059,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4056,"mutability":"mutable","name":"success","nameLocation":"11396:7:24","nodeType":"VariableDeclaration","scope":4071,"src":"11391:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4055,"name":"bool","nodeType":"ElementaryTypeName","src":"11391:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4058,"mutability":"mutable","name":"value","nameLocation":"11413:5:24","nodeType":"VariableDeclaration","scope":4071,"src":"11405:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4057,"name":"uint256","nodeType":"ElementaryTypeName","src":"11405:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11390:29:24"},"scope":4459,"src":"11322:184:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4107,"nodeType":"Block","src":"11914:147:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4085,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4078,"src":"11928:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":4088,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4074,"src":"11940:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":4087,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11934:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":4086,"name":"bytes","nodeType":"ElementaryTypeName","src":"11934:5:24","typeDescriptions":{}}},"id":4089,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11934:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":4090,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11947:6:24","memberName":"length","nodeType":"MemberAccess","src":"11934:19:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11928:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4092,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4076,"src":"11957:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":4093,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4078,"src":"11965:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11957:11:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"11928:40:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4100,"nodeType":"IfStatement","src":"11924:63:24","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":4096,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"11978:5:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":4097,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11985:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":4098,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"11977:10:24","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":4084,"id":4099,"nodeType":"Return","src":"11970:17:24"}},{"expression":{"arguments":[{"id":4102,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4074,"src":"12036:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":4103,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4076,"src":"12043:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4104,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4078,"src":"12050:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4101,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4211,"src":"12004:31:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":4105,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12004:50:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":4084,"id":4106,"nodeType":"Return","src":"11997:57:24"}]},"documentation":{"id":4072,"nodeType":"StructuredDocumentation","src":"11512:241:24","text":" @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an\n invalid character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":4108,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseHexUint","nameLocation":"11767:15:24","nodeType":"FunctionDefinition","parameters":{"id":4079,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4074,"mutability":"mutable","name":"input","nameLocation":"11806:5:24","nodeType":"VariableDeclaration","scope":4108,"src":"11792:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4073,"name":"string","nodeType":"ElementaryTypeName","src":"11792:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4076,"mutability":"mutable","name":"begin","nameLocation":"11829:5:24","nodeType":"VariableDeclaration","scope":4108,"src":"11821:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4075,"name":"uint256","nodeType":"ElementaryTypeName","src":"11821:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4078,"mutability":"mutable","name":"end","nameLocation":"11852:3:24","nodeType":"VariableDeclaration","scope":4108,"src":"11844:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4077,"name":"uint256","nodeType":"ElementaryTypeName","src":"11844:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11782:79:24"},"returnParameters":{"id":4084,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4081,"mutability":"mutable","name":"success","nameLocation":"11890:7:24","nodeType":"VariableDeclaration","scope":4108,"src":"11885:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4080,"name":"bool","nodeType":"ElementaryTypeName","src":"11885:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4083,"mutability":"mutable","name":"value","nameLocation":"11907:5:24","nodeType":"VariableDeclaration","scope":4108,"src":"11899:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4082,"name":"uint256","nodeType":"ElementaryTypeName","src":"11899:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11884:29:24"},"scope":4459,"src":"11758:303:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4210,"nodeType":"Block","src":"12447:880:24","statements":[{"assignments":[4123],"declarations":[{"constant":false,"id":4123,"mutability":"mutable","name":"buffer","nameLocation":"12470:6:24","nodeType":"VariableDeclaration","scope":4210,"src":"12457:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":4122,"name":"bytes","nodeType":"ElementaryTypeName","src":"12457:5:24","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":4128,"initialValue":{"arguments":[{"id":4126,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4111,"src":"12485:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":4125,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12479:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":4124,"name":"bytes","nodeType":"ElementaryTypeName","src":"12479:5:24","typeDescriptions":{}}},"id":4127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12479:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"12457:34:24"},{"assignments":[4130],"declarations":[{"constant":false,"id":4130,"mutability":"mutable","name":"hasPrefix","nameLocation":"12544:9:24","nodeType":"VariableDeclaration","scope":4210,"src":"12539:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4129,"name":"bool","nodeType":"ElementaryTypeName","src":"12539:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":4150,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4131,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4115,"src":"12557:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4134,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4132,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4113,"src":"12563:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":4133,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12571:1:24","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"12563:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12557:15:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":4136,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12556:17:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":4148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":4140,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4123,"src":"12607:6:24","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":4141,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4113,"src":"12615:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4139,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4458,"src":"12584:22:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":4142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12584:37:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4138,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12577:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":4137,"name":"bytes2","nodeType":"ElementaryTypeName","src":"12577:6:24","typeDescriptions":{}}},"id":4143,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12577:45:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"3078","id":4146,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12633:4:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""},"value":"0x"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""}],"id":4145,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12626:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":4144,"name":"bytes2","nodeType":"ElementaryTypeName","src":"12626:6:24","typeDescriptions":{}}},"id":4147,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12626:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"12577:61:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12556:82:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"12539:99:24"},{"assignments":[4152],"declarations":[{"constant":false,"id":4152,"mutability":"mutable","name":"offset","nameLocation":"12727:6:24","nodeType":"VariableDeclaration","scope":4210,"src":"12719:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4151,"name":"uint256","nodeType":"ElementaryTypeName","src":"12719:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4158,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4157,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4153,"name":"hasPrefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4130,"src":"12736:9:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4154,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12746:6:24","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"12736:16:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":4155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12736:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":4156,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12757:1:24","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"12736:22:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12719:39:24"},{"assignments":[4160],"declarations":[{"constant":false,"id":4160,"mutability":"mutable","name":"result","nameLocation":"12777:6:24","nodeType":"VariableDeclaration","scope":4210,"src":"12769:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4159,"name":"uint256","nodeType":"ElementaryTypeName","src":"12769:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4162,"initialValue":{"hexValue":"30","id":4161,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12786:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"12769:18:24"},{"body":{"id":4204,"nodeType":"Block","src":"12844:446:24","statements":[{"assignments":[4176],"declarations":[{"constant":false,"id":4176,"mutability":"mutable","name":"chr","nameLocation":"12864:3:24","nodeType":"VariableDeclaration","scope":4204,"src":"12858:9:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4175,"name":"uint8","nodeType":"ElementaryTypeName","src":"12858:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":4186,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":4181,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4123,"src":"12913:6:24","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":4182,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4164,"src":"12921:1:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4180,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4458,"src":"12890:22:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":4183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12890:33:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4179,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12883:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":4178,"name":"bytes1","nodeType":"ElementaryTypeName","src":"12883:6:24","typeDescriptions":{}}},"id":4184,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12883:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":4177,"name":"_tryParseChr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4446,"src":"12870:12:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes1_$returns$_t_uint8_$","typeString":"function (bytes1) pure returns (uint8)"}},"id":4185,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12870:55:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"12858:67:24"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":4189,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4187,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4176,"src":"12943:3:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3135","id":4188,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12949:2:24","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"15"},"src":"12943:8:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4194,"nodeType":"IfStatement","src":"12939:31:24","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":4190,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"12961:5:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":4191,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12968:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":4192,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"12960:10:24","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":4121,"id":4193,"nodeType":"Return","src":"12953:17:24"}},{"expression":{"id":4197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4195,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4160,"src":"12984:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"hexValue":"3136","id":4196,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12994:2:24","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"12984:12:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4198,"nodeType":"ExpressionStatement","src":"12984:12:24"},{"id":4203,"nodeType":"UncheckedBlock","src":"13010:270:24","statements":[{"expression":{"id":4201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4199,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4160,"src":"13252:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":4200,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4176,"src":"13262:3:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"13252:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4202,"nodeType":"ExpressionStatement","src":"13252:13:24"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4169,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4164,"src":"12830:1:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":4170,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4115,"src":"12834:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12830:7:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4205,"initializationExpression":{"assignments":[4164],"declarations":[{"constant":false,"id":4164,"mutability":"mutable","name":"i","nameLocation":"12810:1:24","nodeType":"VariableDeclaration","scope":4205,"src":"12802:9:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4163,"name":"uint256","nodeType":"ElementaryTypeName","src":"12802:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4168,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4165,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4113,"src":"12814:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":4166,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4152,"src":"12822:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12814:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12802:26:24"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":4173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"12839:3:24","subExpression":{"id":4172,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4164,"src":"12841:1:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4174,"nodeType":"ExpressionStatement","src":"12839:3:24"},"nodeType":"ForStatement","src":"12797:493:24"},{"expression":{"components":[{"hexValue":"74727565","id":4206,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13307:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":4207,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4160,"src":"13313:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4208,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13306:14:24","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":4121,"id":4209,"nodeType":"Return","src":"13299:21:24"}]},"documentation":{"id":4109,"nodeType":"StructuredDocumentation","src":"12067:204:24","text":" @dev Implementation of {tryParseHexUint} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":4211,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseHexUintUncheckedBounds","nameLocation":"12285:31:24","nodeType":"FunctionDefinition","parameters":{"id":4116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4111,"mutability":"mutable","name":"input","nameLocation":"12340:5:24","nodeType":"VariableDeclaration","scope":4211,"src":"12326:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4110,"name":"string","nodeType":"ElementaryTypeName","src":"12326:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4113,"mutability":"mutable","name":"begin","nameLocation":"12363:5:24","nodeType":"VariableDeclaration","scope":4211,"src":"12355:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4112,"name":"uint256","nodeType":"ElementaryTypeName","src":"12355:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4115,"mutability":"mutable","name":"end","nameLocation":"12386:3:24","nodeType":"VariableDeclaration","scope":4211,"src":"12378:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4114,"name":"uint256","nodeType":"ElementaryTypeName","src":"12378:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12316:79:24"},"returnParameters":{"id":4121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4118,"mutability":"mutable","name":"success","nameLocation":"12423:7:24","nodeType":"VariableDeclaration","scope":4211,"src":"12418:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4117,"name":"bool","nodeType":"ElementaryTypeName","src":"12418:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4120,"mutability":"mutable","name":"value","nameLocation":"12440:5:24","nodeType":"VariableDeclaration","scope":4211,"src":"12432:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4119,"name":"uint256","nodeType":"ElementaryTypeName","src":"12432:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12417:29:24"},"scope":4459,"src":"12276:1051:24","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":4229,"nodeType":"Block","src":"13625:67:24","statements":[{"expression":{"arguments":[{"id":4220,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4214,"src":"13655:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":4221,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13662:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":4224,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4214,"src":"13671:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":4223,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13665:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":4222,"name":"bytes","nodeType":"ElementaryTypeName","src":"13665:5:24","typeDescriptions":{}}},"id":4225,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13665:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":4226,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13678:6:24","memberName":"length","nodeType":"MemberAccess","src":"13665:19:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4219,"name":"parseAddress","nodeType":"Identifier","overloadedDeclarations":[4230,4261],"referencedDeclaration":4261,"src":"13642:12:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_address_$","typeString":"function (string memory,uint256,uint256) pure returns (address)"}},"id":4227,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13642:43:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4218,"id":4228,"nodeType":"Return","src":"13635:50:24"}]},"documentation":{"id":4212,"nodeType":"StructuredDocumentation","src":"13333:212:24","text":" @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as an `address`.\n Requirements:\n - The string must be formatted as `(0x)?[0-9a-fA-F]{40}`"},"id":4230,"implemented":true,"kind":"function","modifiers":[],"name":"parseAddress","nameLocation":"13559:12:24","nodeType":"FunctionDefinition","parameters":{"id":4215,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4214,"mutability":"mutable","name":"input","nameLocation":"13586:5:24","nodeType":"VariableDeclaration","scope":4230,"src":"13572:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4213,"name":"string","nodeType":"ElementaryTypeName","src":"13572:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"13571:21:24"},"returnParameters":{"id":4218,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4217,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4230,"src":"13616:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4216,"name":"address","nodeType":"ElementaryTypeName","src":"13616:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"13615:9:24"},"scope":4459,"src":"13550:142:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4260,"nodeType":"Block","src":"14058:165:24","statements":[{"assignments":[4243,4245],"declarations":[{"constant":false,"id":4243,"mutability":"mutable","name":"success","nameLocation":"14074:7:24","nodeType":"VariableDeclaration","scope":4260,"src":"14069:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4242,"name":"bool","nodeType":"ElementaryTypeName","src":"14069:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4245,"mutability":"mutable","name":"value","nameLocation":"14091:5:24","nodeType":"VariableDeclaration","scope":4260,"src":"14083:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4244,"name":"address","nodeType":"ElementaryTypeName","src":"14083:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4251,"initialValue":{"arguments":[{"id":4247,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4233,"src":"14116:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":4248,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4235,"src":"14123:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4249,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4237,"src":"14130:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4246,"name":"tryParseAddress","nodeType":"Identifier","overloadedDeclarations":[4282,4386],"referencedDeclaration":4386,"src":"14100:15:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_address_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,address)"}},"id":4250,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14100:34:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"nodeType":"VariableDeclarationStatement","src":"14068:66:24"},{"condition":{"id":4253,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14148:8:24","subExpression":{"id":4252,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4243,"src":"14149:7:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4257,"nodeType":"IfStatement","src":"14144:50:24","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":4254,"name":"StringsInvalidAddressFormat","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3289,"src":"14165:27:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":4255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14165:29:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4256,"nodeType":"RevertStatement","src":"14158:36:24"}},{"expression":{"id":4258,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4245,"src":"14211:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4241,"id":4259,"nodeType":"Return","src":"14204:12:24"}]},"documentation":{"id":4231,"nodeType":"StructuredDocumentation","src":"13698:252:24","text":" @dev Variant of {parseAddress} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}`"},"id":4261,"implemented":true,"kind":"function","modifiers":[],"name":"parseAddress","nameLocation":"13964:12:24","nodeType":"FunctionDefinition","parameters":{"id":4238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4233,"mutability":"mutable","name":"input","nameLocation":"13991:5:24","nodeType":"VariableDeclaration","scope":4261,"src":"13977:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4232,"name":"string","nodeType":"ElementaryTypeName","src":"13977:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4235,"mutability":"mutable","name":"begin","nameLocation":"14006:5:24","nodeType":"VariableDeclaration","scope":4261,"src":"13998:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4234,"name":"uint256","nodeType":"ElementaryTypeName","src":"13998:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4237,"mutability":"mutable","name":"end","nameLocation":"14021:3:24","nodeType":"VariableDeclaration","scope":4261,"src":"14013:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4236,"name":"uint256","nodeType":"ElementaryTypeName","src":"14013:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13976:49:24"},"returnParameters":{"id":4241,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4240,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4261,"src":"14049:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4239,"name":"address","nodeType":"ElementaryTypeName","src":"14049:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14048:9:24"},"scope":4459,"src":"13955:268:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4281,"nodeType":"Block","src":"14523:70:24","statements":[{"expression":{"arguments":[{"id":4272,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4264,"src":"14556:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":4273,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14563:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":4276,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4264,"src":"14572:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":4275,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14566:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":4274,"name":"bytes","nodeType":"ElementaryTypeName","src":"14566:5:24","typeDescriptions":{}}},"id":4277,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14566:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":4278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14579:6:24","memberName":"length","nodeType":"MemberAccess","src":"14566:19:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4271,"name":"tryParseAddress","nodeType":"Identifier","overloadedDeclarations":[4282,4386],"referencedDeclaration":4386,"src":"14540:15:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_address_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,address)"}},"id":4279,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14540:46:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":4270,"id":4280,"nodeType":"Return","src":"14533:53:24"}]},"documentation":{"id":4262,"nodeType":"StructuredDocumentation","src":"14229:191:24","text":" @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly\n formatted address. See {parseAddress} requirements."},"id":4282,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseAddress","nameLocation":"14434:15:24","nodeType":"FunctionDefinition","parameters":{"id":4265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4264,"mutability":"mutable","name":"input","nameLocation":"14464:5:24","nodeType":"VariableDeclaration","scope":4282,"src":"14450:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4263,"name":"string","nodeType":"ElementaryTypeName","src":"14450:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"14449:21:24"},"returnParameters":{"id":4270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4267,"mutability":"mutable","name":"success","nameLocation":"14499:7:24","nodeType":"VariableDeclaration","scope":4282,"src":"14494:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4266,"name":"bool","nodeType":"ElementaryTypeName","src":"14494:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4269,"mutability":"mutable","name":"value","nameLocation":"14516:5:24","nodeType":"VariableDeclaration","scope":4282,"src":"14508:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4268,"name":"address","nodeType":"ElementaryTypeName","src":"14508:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14493:29:24"},"scope":4459,"src":"14425:168:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4385,"nodeType":"Block","src":"14963:733:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4296,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4289,"src":"14977:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":4299,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4285,"src":"14989:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":4298,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14983:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":4297,"name":"bytes","nodeType":"ElementaryTypeName","src":"14983:5:24","typeDescriptions":{}}},"id":4300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14983:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":4301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14996:6:24","memberName":"length","nodeType":"MemberAccess","src":"14983:19:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14977:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4303,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4287,"src":"15006:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":4304,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4289,"src":"15014:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15006:11:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"14977:40:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4314,"nodeType":"IfStatement","src":"14973:72:24","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":4307,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"15027:5:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":4310,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15042:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":4309,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15034:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4308,"name":"address","nodeType":"ElementaryTypeName","src":"15034:7:24","typeDescriptions":{}}},"id":4311,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15034:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":4312,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"15026:19:24","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":4295,"id":4313,"nodeType":"Return","src":"15019:26:24"}},{"assignments":[4316],"declarations":[{"constant":false,"id":4316,"mutability":"mutable","name":"hasPrefix","nameLocation":"15061:9:24","nodeType":"VariableDeclaration","scope":4385,"src":"15056:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4315,"name":"bool","nodeType":"ElementaryTypeName","src":"15056:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":4339,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4338,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4317,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4289,"src":"15074:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4318,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4287,"src":"15080:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":4319,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15088:1:24","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"15080:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15074:15:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":4322,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15073:17:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":4337,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"arguments":[{"id":4328,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4285,"src":"15130:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":4327,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15124:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":4326,"name":"bytes","nodeType":"ElementaryTypeName","src":"15124:5:24","typeDescriptions":{}}},"id":4329,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15124:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":4330,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4287,"src":"15138:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4325,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4458,"src":"15101:22:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":4331,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15101:43:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4324,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15094:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":4323,"name":"bytes2","nodeType":"ElementaryTypeName","src":"15094:6:24","typeDescriptions":{}}},"id":4332,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15094:51:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"3078","id":4335,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15156:4:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""},"value":"0x"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""}],"id":4334,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15149:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":4333,"name":"bytes2","nodeType":"ElementaryTypeName","src":"15149:6:24","typeDescriptions":{}}},"id":4336,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15149:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"15094:67:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15073:88:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"15056:105:24"},{"assignments":[4341],"declarations":[{"constant":false,"id":4341,"mutability":"mutable","name":"expectedLength","nameLocation":"15250:14:24","nodeType":"VariableDeclaration","scope":4385,"src":"15242:22:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4340,"name":"uint256","nodeType":"ElementaryTypeName","src":"15242:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4349,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3430","id":4342,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15267:2:24","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4343,"name":"hasPrefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4316,"src":"15272:9:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15282:6:24","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"15272:16:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":4345,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15272:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":4346,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15293:1:24","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"15272:22:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15267:27:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15242:52:24"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4350,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4289,"src":"15359:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":4351,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4287,"src":"15365:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15359:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4353,"name":"expectedLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4341,"src":"15374:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15359:29:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":4383,"nodeType":"Block","src":"15639:51:24","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":4376,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"15661:5:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":4379,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15676:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":4378,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15668:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4377,"name":"address","nodeType":"ElementaryTypeName","src":"15668:7:24","typeDescriptions":{}}},"id":4380,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15668:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":4381,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"15660:19:24","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":4295,"id":4382,"nodeType":"Return","src":"15653:26:24"}]},"id":4384,"nodeType":"IfStatement","src":"15355:335:24","trueBody":{"id":4375,"nodeType":"Block","src":"15390:243:24","statements":[{"assignments":[4356,4358],"declarations":[{"constant":false,"id":4356,"mutability":"mutable","name":"s","nameLocation":"15511:1:24","nodeType":"VariableDeclaration","scope":4375,"src":"15506:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4355,"name":"bool","nodeType":"ElementaryTypeName","src":"15506:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4358,"mutability":"mutable","name":"v","nameLocation":"15522:1:24","nodeType":"VariableDeclaration","scope":4375,"src":"15514:9:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4357,"name":"uint256","nodeType":"ElementaryTypeName","src":"15514:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4364,"initialValue":{"arguments":[{"id":4360,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4285,"src":"15559:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":4361,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4287,"src":"15566:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4362,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4289,"src":"15573:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4359,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4211,"src":"15527:31:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":4363,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15527:50:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"15505:72:24"},{"expression":{"components":[{"id":4365,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4356,"src":"15599:1:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"arguments":[{"id":4370,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4358,"src":"15618:1:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4369,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15610:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":4368,"name":"uint160","nodeType":"ElementaryTypeName","src":"15610:7:24","typeDescriptions":{}}},"id":4371,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15610:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":4367,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15602:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4366,"name":"address","nodeType":"ElementaryTypeName","src":"15602:7:24","typeDescriptions":{}}},"id":4372,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15602:19:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":4373,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15598:24:24","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":4295,"id":4374,"nodeType":"Return","src":"15591:31:24"}]}}]},"documentation":{"id":4283,"nodeType":"StructuredDocumentation","src":"14599:203:24","text":" @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly\n formatted address. See {parseAddress} requirements."},"id":4386,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseAddress","nameLocation":"14816:15:24","nodeType":"FunctionDefinition","parameters":{"id":4290,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4285,"mutability":"mutable","name":"input","nameLocation":"14855:5:24","nodeType":"VariableDeclaration","scope":4386,"src":"14841:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4284,"name":"string","nodeType":"ElementaryTypeName","src":"14841:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4287,"mutability":"mutable","name":"begin","nameLocation":"14878:5:24","nodeType":"VariableDeclaration","scope":4386,"src":"14870:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4286,"name":"uint256","nodeType":"ElementaryTypeName","src":"14870:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4289,"mutability":"mutable","name":"end","nameLocation":"14901:3:24","nodeType":"VariableDeclaration","scope":4386,"src":"14893:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4288,"name":"uint256","nodeType":"ElementaryTypeName","src":"14893:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14831:79:24"},"returnParameters":{"id":4295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4292,"mutability":"mutable","name":"success","nameLocation":"14939:7:24","nodeType":"VariableDeclaration","scope":4386,"src":"14934:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4291,"name":"bool","nodeType":"ElementaryTypeName","src":"14934:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4294,"mutability":"mutable","name":"value","nameLocation":"14956:5:24","nodeType":"VariableDeclaration","scope":4386,"src":"14948:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4293,"name":"address","nodeType":"ElementaryTypeName","src":"14948:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14933:29:24"},"scope":4459,"src":"14807:889:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4445,"nodeType":"Block","src":"15765:461:24","statements":[{"assignments":[4394],"declarations":[{"constant":false,"id":4394,"mutability":"mutable","name":"value","nameLocation":"15781:5:24","nodeType":"VariableDeclaration","scope":4445,"src":"15775:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4393,"name":"uint8","nodeType":"ElementaryTypeName","src":"15775:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":4399,"initialValue":{"arguments":[{"id":4397,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4388,"src":"15795:3:24","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":4396,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15789:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":4395,"name":"uint8","nodeType":"ElementaryTypeName","src":"15789:5:24","typeDescriptions":{}}},"id":4398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15789:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"15775:24:24"},{"id":4442,"nodeType":"UncheckedBlock","src":"15959:238:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":4402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4400,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4394,"src":"15987:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3437","id":4401,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15995:2:24","typeDescriptions":{"typeIdentifier":"t_rational_47_by_1","typeString":"int_const 47"},"value":"47"},"src":"15987:10:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":4405,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4403,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4394,"src":"16001:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3538","id":4404,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16009:2:24","typeDescriptions":{"typeIdentifier":"t_rational_58_by_1","typeString":"int_const 58"},"value":"58"},"src":"16001:10:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15987:24:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":4413,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4411,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4394,"src":"16047:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3936","id":4412,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16055:2:24","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"16047:10:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":4416,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4414,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4394,"src":"16061:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"313033","id":4415,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16069:3:24","typeDescriptions":{"typeIdentifier":"t_rational_103_by_1","typeString":"int_const 103"},"value":"103"},"src":"16061:11:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16047:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4428,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":4424,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4422,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4394,"src":"16108:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3634","id":4423,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16116:2:24","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"16108:10:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":4427,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4425,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4394,"src":"16122:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3731","id":4426,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16130:2:24","typeDescriptions":{"typeIdentifier":"t_rational_71_by_1","typeString":"int_const 71"},"value":"71"},"src":"16122:10:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16108:24:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"expression":{"arguments":[{"id":4435,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16176:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":4434,"name":"uint8","nodeType":"ElementaryTypeName","src":"16176:5:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":4433,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16171:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":4436,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16171:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":4437,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16183:3:24","memberName":"max","nodeType":"MemberAccess","src":"16171:15:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":4392,"id":4438,"nodeType":"Return","src":"16164:22:24"},"id":4439,"nodeType":"IfStatement","src":"16104:82:24","trueBody":{"expression":{"id":4431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4429,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4394,"src":"16134:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3535","id":4430,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16143:2:24","typeDescriptions":{"typeIdentifier":"t_rational_55_by_1","typeString":"int_const 55"},"value":"55"},"src":"16134:11:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":4432,"nodeType":"ExpressionStatement","src":"16134:11:24"}},"id":4440,"nodeType":"IfStatement","src":"16043:143:24","trueBody":{"expression":{"id":4420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4418,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4394,"src":"16074:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3837","id":4419,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16083:2:24","typeDescriptions":{"typeIdentifier":"t_rational_87_by_1","typeString":"int_const 87"},"value":"87"},"src":"16074:11:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":4421,"nodeType":"ExpressionStatement","src":"16074:11:24"}},"id":4441,"nodeType":"IfStatement","src":"15983:203:24","trueBody":{"expression":{"id":4409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4407,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4394,"src":"16013:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3438","id":4408,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16022:2:24","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"16013:11:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":4410,"nodeType":"ExpressionStatement","src":"16013:11:24"}}]},{"expression":{"id":4443,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4394,"src":"16214:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":4392,"id":4444,"nodeType":"Return","src":"16207:12:24"}]},"id":4446,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseChr","nameLocation":"15711:12:24","nodeType":"FunctionDefinition","parameters":{"id":4389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4388,"mutability":"mutable","name":"chr","nameLocation":"15731:3:24","nodeType":"VariableDeclaration","scope":4446,"src":"15724:10:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":4387,"name":"bytes1","nodeType":"ElementaryTypeName","src":"15724:6:24","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"15723:12:24"},"returnParameters":{"id":4392,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4391,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4446,"src":"15758:5:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4390,"name":"uint8","nodeType":"ElementaryTypeName","src":"15758:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"15757:7:24"},"scope":4459,"src":"15702:524:24","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":4457,"nodeType":"Block","src":"16611:225:24","statements":[{"AST":{"nativeSrc":"16760:70:24","nodeType":"YulBlock","src":"16760:70:24","statements":[{"nativeSrc":"16774:46:24","nodeType":"YulAssignment","src":"16774:46:24","value":{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"16793:6:24","nodeType":"YulIdentifier","src":"16793:6:24"},{"arguments":[{"kind":"number","nativeSrc":"16805:4:24","nodeType":"YulLiteral","src":"16805:4:24","type":"","value":"0x20"},{"name":"offset","nativeSrc":"16811:6:24","nodeType":"YulIdentifier","src":"16811:6:24"}],"functionName":{"name":"add","nativeSrc":"16801:3:24","nodeType":"YulIdentifier","src":"16801:3:24"},"nativeSrc":"16801:17:24","nodeType":"YulFunctionCall","src":"16801:17:24"}],"functionName":{"name":"add","nativeSrc":"16789:3:24","nodeType":"YulIdentifier","src":"16789:3:24"},"nativeSrc":"16789:30:24","nodeType":"YulFunctionCall","src":"16789:30:24"}],"functionName":{"name":"mload","nativeSrc":"16783:5:24","nodeType":"YulIdentifier","src":"16783:5:24"},"nativeSrc":"16783:37:24","nodeType":"YulFunctionCall","src":"16783:37:24"},"variableNames":[{"name":"value","nativeSrc":"16774:5:24","nodeType":"YulIdentifier","src":"16774:5:24"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":4449,"isOffset":false,"isSlot":false,"src":"16793:6:24","valueSize":1},{"declaration":4451,"isOffset":false,"isSlot":false,"src":"16811:6:24","valueSize":1},{"declaration":4454,"isOffset":false,"isSlot":false,"src":"16774:5:24","valueSize":1}],"flags":["memory-safe"],"id":4456,"nodeType":"InlineAssembly","src":"16735:95:24"}]},"documentation":{"id":4447,"nodeType":"StructuredDocumentation","src":"16232:268:24","text":" @dev Reads a bytes32 from a bytes array without bounds checking.\n NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the\n assembly block as such would prevent some optimizations."},"id":4458,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeReadBytesOffset","nameLocation":"16514:22:24","nodeType":"FunctionDefinition","parameters":{"id":4452,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4449,"mutability":"mutable","name":"buffer","nameLocation":"16550:6:24","nodeType":"VariableDeclaration","scope":4458,"src":"16537:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":4448,"name":"bytes","nodeType":"ElementaryTypeName","src":"16537:5:24","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":4451,"mutability":"mutable","name":"offset","nameLocation":"16566:6:24","nodeType":"VariableDeclaration","scope":4458,"src":"16558:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4450,"name":"uint256","nodeType":"ElementaryTypeName","src":"16558:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16536:37:24"},"returnParameters":{"id":4455,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4454,"mutability":"mutable","name":"value","nameLocation":"16604:5:24","nodeType":"VariableDeclaration","scope":4458,"src":"16596:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4453,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16596:7:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"16595:15:24"},"scope":4459,"src":"16505:331:24","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":4460,"src":"297:16541:24","usedErrors":[3283,3286,3289],"usedEvents":[]}],"src":"101:16738:24"},"id":24},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","exportedSymbols":{"ECDSA":[4807]},"id":4808,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4461,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"112:24:25"},{"abstract":false,"baseContracts":[],"canonicalName":"ECDSA","contractDependencies":[],"contractKind":"library","documentation":{"id":4462,"nodeType":"StructuredDocumentation","src":"138:205:25","text":" @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n These functions can be used to verify that a message was signed by the holder\n of the private keys of a given address."},"fullyImplemented":true,"id":4807,"linearizedBaseContracts":[4807],"name":"ECDSA","nameLocation":"352:5:25","nodeType":"ContractDefinition","nodes":[{"canonicalName":"ECDSA.RecoverError","id":4467,"members":[{"id":4463,"name":"NoError","nameLocation":"392:7:25","nodeType":"EnumValue","src":"392:7:25"},{"id":4464,"name":"InvalidSignature","nameLocation":"409:16:25","nodeType":"EnumValue","src":"409:16:25"},{"id":4465,"name":"InvalidSignatureLength","nameLocation":"435:22:25","nodeType":"EnumValue","src":"435:22:25"},{"id":4466,"name":"InvalidSignatureS","nameLocation":"467:17:25","nodeType":"EnumValue","src":"467:17:25"}],"name":"RecoverError","nameLocation":"369:12:25","nodeType":"EnumDefinition","src":"364:126:25"},{"documentation":{"id":4468,"nodeType":"StructuredDocumentation","src":"496:63:25","text":" @dev The signature derives the `address(0)`."},"errorSelector":"f645eedf","id":4470,"name":"ECDSAInvalidSignature","nameLocation":"570:21:25","nodeType":"ErrorDefinition","parameters":{"id":4469,"nodeType":"ParameterList","parameters":[],"src":"591:2:25"},"src":"564:30:25"},{"documentation":{"id":4471,"nodeType":"StructuredDocumentation","src":"600:60:25","text":" @dev The signature has an invalid length."},"errorSelector":"fce698f7","id":4475,"name":"ECDSAInvalidSignatureLength","nameLocation":"671:27:25","nodeType":"ErrorDefinition","parameters":{"id":4474,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4473,"mutability":"mutable","name":"length","nameLocation":"707:6:25","nodeType":"VariableDeclaration","scope":4475,"src":"699:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4472,"name":"uint256","nodeType":"ElementaryTypeName","src":"699:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"698:16:25"},"src":"665:50:25"},{"documentation":{"id":4476,"nodeType":"StructuredDocumentation","src":"721:85:25","text":" @dev The signature has an S value that is in the upper half order."},"errorSelector":"d78bce0c","id":4480,"name":"ECDSAInvalidSignatureS","nameLocation":"817:22:25","nodeType":"ErrorDefinition","parameters":{"id":4479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4478,"mutability":"mutable","name":"s","nameLocation":"848:1:25","nodeType":"VariableDeclaration","scope":4480,"src":"840:9:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4477,"name":"bytes32","nodeType":"ElementaryTypeName","src":"840:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"839:11:25"},"src":"811:40:25"},{"body":{"id":4532,"nodeType":"Block","src":"2285:622:25","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4498,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4495,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4485,"src":"2299:9:25","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":4496,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2309:6:25","memberName":"length","nodeType":"MemberAccess","src":"2299:16:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3635","id":4497,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2319:2:25","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"65"},"src":"2299:22:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":4530,"nodeType":"Block","src":"2793:108:25","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":4519,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2823:1:25","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":4518,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2815:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4517,"name":"address","nodeType":"ElementaryTypeName","src":"2815:7:25","typeDescriptions":{}}},"id":4520,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2815:10:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":4521,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4467,"src":"2827:12:25","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$4467_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":4522,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2840:22:25","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":4465,"src":"2827:35:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"expression":{"id":4525,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4485,"src":"2872:9:25","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":4526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2882:6:25","memberName":"length","nodeType":"MemberAccess","src":"2872:16:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4524,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2864:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":4523,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2864:7:25","typeDescriptions":{}}},"id":4527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2864:25:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":4528,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2814:76:25","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$4467_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":4494,"id":4529,"nodeType":"Return","src":"2807:83:25"}]},"id":4531,"nodeType":"IfStatement","src":"2295:606:25","trueBody":{"id":4516,"nodeType":"Block","src":"2323:464:25","statements":[{"assignments":[4500],"declarations":[{"constant":false,"id":4500,"mutability":"mutable","name":"r","nameLocation":"2345:1:25","nodeType":"VariableDeclaration","scope":4516,"src":"2337:9:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4499,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2337:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4501,"nodeType":"VariableDeclarationStatement","src":"2337:9:25"},{"assignments":[4503],"declarations":[{"constant":false,"id":4503,"mutability":"mutable","name":"s","nameLocation":"2368:1:25","nodeType":"VariableDeclaration","scope":4516,"src":"2360:9:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4502,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2360:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4504,"nodeType":"VariableDeclarationStatement","src":"2360:9:25"},{"assignments":[4506],"declarations":[{"constant":false,"id":4506,"mutability":"mutable","name":"v","nameLocation":"2389:1:25","nodeType":"VariableDeclaration","scope":4516,"src":"2383:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4505,"name":"uint8","nodeType":"ElementaryTypeName","src":"2383:5:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":4507,"nodeType":"VariableDeclarationStatement","src":"2383:7:25"},{"AST":{"nativeSrc":"2560:171:25","nodeType":"YulBlock","src":"2560:171:25","statements":[{"nativeSrc":"2578:32:25","nodeType":"YulAssignment","src":"2578:32:25","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"2593:9:25","nodeType":"YulIdentifier","src":"2593:9:25"},{"kind":"number","nativeSrc":"2604:4:25","nodeType":"YulLiteral","src":"2604:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2589:3:25","nodeType":"YulIdentifier","src":"2589:3:25"},"nativeSrc":"2589:20:25","nodeType":"YulFunctionCall","src":"2589:20:25"}],"functionName":{"name":"mload","nativeSrc":"2583:5:25","nodeType":"YulIdentifier","src":"2583:5:25"},"nativeSrc":"2583:27:25","nodeType":"YulFunctionCall","src":"2583:27:25"},"variableNames":[{"name":"r","nativeSrc":"2578:1:25","nodeType":"YulIdentifier","src":"2578:1:25"}]},{"nativeSrc":"2627:32:25","nodeType":"YulAssignment","src":"2627:32:25","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"2642:9:25","nodeType":"YulIdentifier","src":"2642:9:25"},{"kind":"number","nativeSrc":"2653:4:25","nodeType":"YulLiteral","src":"2653:4:25","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"2638:3:25","nodeType":"YulIdentifier","src":"2638:3:25"},"nativeSrc":"2638:20:25","nodeType":"YulFunctionCall","src":"2638:20:25"}],"functionName":{"name":"mload","nativeSrc":"2632:5:25","nodeType":"YulIdentifier","src":"2632:5:25"},"nativeSrc":"2632:27:25","nodeType":"YulFunctionCall","src":"2632:27:25"},"variableNames":[{"name":"s","nativeSrc":"2627:1:25","nodeType":"YulIdentifier","src":"2627:1:25"}]},{"nativeSrc":"2676:41:25","nodeType":"YulAssignment","src":"2676:41:25","value":{"arguments":[{"kind":"number","nativeSrc":"2686:1:25","nodeType":"YulLiteral","src":"2686:1:25","type":"","value":"0"},{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"2699:9:25","nodeType":"YulIdentifier","src":"2699:9:25"},{"kind":"number","nativeSrc":"2710:4:25","nodeType":"YulLiteral","src":"2710:4:25","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"2695:3:25","nodeType":"YulIdentifier","src":"2695:3:25"},"nativeSrc":"2695:20:25","nodeType":"YulFunctionCall","src":"2695:20:25"}],"functionName":{"name":"mload","nativeSrc":"2689:5:25","nodeType":"YulIdentifier","src":"2689:5:25"},"nativeSrc":"2689:27:25","nodeType":"YulFunctionCall","src":"2689:27:25"}],"functionName":{"name":"byte","nativeSrc":"2681:4:25","nodeType":"YulIdentifier","src":"2681:4:25"},"nativeSrc":"2681:36:25","nodeType":"YulFunctionCall","src":"2681:36:25"},"variableNames":[{"name":"v","nativeSrc":"2676:1:25","nodeType":"YulIdentifier","src":"2676:1:25"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":4500,"isOffset":false,"isSlot":false,"src":"2578:1:25","valueSize":1},{"declaration":4503,"isOffset":false,"isSlot":false,"src":"2627:1:25","valueSize":1},{"declaration":4485,"isOffset":false,"isSlot":false,"src":"2593:9:25","valueSize":1},{"declaration":4485,"isOffset":false,"isSlot":false,"src":"2642:9:25","valueSize":1},{"declaration":4485,"isOffset":false,"isSlot":false,"src":"2699:9:25","valueSize":1},{"declaration":4506,"isOffset":false,"isSlot":false,"src":"2676:1:25","valueSize":1}],"flags":["memory-safe"],"id":4508,"nodeType":"InlineAssembly","src":"2535:196:25"},{"expression":{"arguments":[{"id":4510,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4483,"src":"2762:4:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4511,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4506,"src":"2768:1:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":4512,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4500,"src":"2771:1:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4513,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4503,"src":"2774:1:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4509,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[4533,4613,4721],"referencedDeclaration":4721,"src":"2751:10:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$4467_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":4514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2751:25:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$4467_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":4494,"id":4515,"nodeType":"Return","src":"2744:32:25"}]}}]},"documentation":{"id":4481,"nodeType":"StructuredDocumentation","src":"857:1267:25","text":" @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not\n return address(0) without also returning an error description. Errors are documented using an enum (error type)\n and a bytes32 providing additional information about the error.\n If no error is returned, then the address can be used for verification purposes.\n The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n this function rejects them by requiring the `s` value to be in the lower\n half order, and the `v` value to be either 27 or 28.\n IMPORTANT: `hash` _must_ be the result of a hash operation for the\n verification to be secure: it is possible to craft signatures that\n recover to arbitrary addresses for non-hashed data. A safe way to ensure\n this is by receiving a hash of the original message (which may otherwise\n be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.\n Documentation for signature generation:\n - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]"},"id":4533,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"2138:10:25","nodeType":"FunctionDefinition","parameters":{"id":4486,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4483,"mutability":"mutable","name":"hash","nameLocation":"2166:4:25","nodeType":"VariableDeclaration","scope":4533,"src":"2158:12:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4482,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2158:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4485,"mutability":"mutable","name":"signature","nameLocation":"2193:9:25","nodeType":"VariableDeclaration","scope":4533,"src":"2180:22:25","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":4484,"name":"bytes","nodeType":"ElementaryTypeName","src":"2180:5:25","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2148:60:25"},"returnParameters":{"id":4494,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4488,"mutability":"mutable","name":"recovered","nameLocation":"2240:9:25","nodeType":"VariableDeclaration","scope":4533,"src":"2232:17:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4487,"name":"address","nodeType":"ElementaryTypeName","src":"2232:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4491,"mutability":"mutable","name":"err","nameLocation":"2264:3:25","nodeType":"VariableDeclaration","scope":4533,"src":"2251:16:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":4490,"nodeType":"UserDefinedTypeName","pathNode":{"id":4489,"name":"RecoverError","nameLocations":["2251:12:25"],"nodeType":"IdentifierPath","referencedDeclaration":4467,"src":"2251:12:25"},"referencedDeclaration":4467,"src":"2251:12:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":4493,"mutability":"mutable","name":"errArg","nameLocation":"2277:6:25","nodeType":"VariableDeclaration","scope":4533,"src":"2269:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4492,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2269:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2231:53:25"},"scope":4807,"src":"2129:778:25","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4562,"nodeType":"Block","src":"3801:168:25","statements":[{"assignments":[4544,4547,4549],"declarations":[{"constant":false,"id":4544,"mutability":"mutable","name":"recovered","nameLocation":"3820:9:25","nodeType":"VariableDeclaration","scope":4562,"src":"3812:17:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4543,"name":"address","nodeType":"ElementaryTypeName","src":"3812:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4547,"mutability":"mutable","name":"error","nameLocation":"3844:5:25","nodeType":"VariableDeclaration","scope":4562,"src":"3831:18:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":4546,"nodeType":"UserDefinedTypeName","pathNode":{"id":4545,"name":"RecoverError","nameLocations":["3831:12:25"],"nodeType":"IdentifierPath","referencedDeclaration":4467,"src":"3831:12:25"},"referencedDeclaration":4467,"src":"3831:12:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":4549,"mutability":"mutable","name":"errorArg","nameLocation":"3859:8:25","nodeType":"VariableDeclaration","scope":4562,"src":"3851:16:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4548,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3851:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4554,"initialValue":{"arguments":[{"id":4551,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4536,"src":"3882:4:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4552,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4538,"src":"3888:9:25","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":4550,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[4533,4613,4721],"referencedDeclaration":4533,"src":"3871:10:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$_t_enum$_RecoverError_$4467_$_t_bytes32_$","typeString":"function (bytes32,bytes memory) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":4553,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3871:27:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$4467_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"3811:87:25"},{"expression":{"arguments":[{"id":4556,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4547,"src":"3920:5:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},{"id":4557,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4549,"src":"3927:8:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4555,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4806,"src":"3908:11:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$4467_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":4558,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3908:28:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4559,"nodeType":"ExpressionStatement","src":"3908:28:25"},{"expression":{"id":4560,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4544,"src":"3953:9:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4542,"id":4561,"nodeType":"Return","src":"3946:16:25"}]},"documentation":{"id":4534,"nodeType":"StructuredDocumentation","src":"2913:796:25","text":" @dev Returns the address that signed a hashed message (`hash`) with\n `signature`. This address can then be used for verification purposes.\n The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n this function rejects them by requiring the `s` value to be in the lower\n half order, and the `v` value to be either 27 or 28.\n IMPORTANT: `hash` _must_ be the result of a hash operation for the\n verification to be secure: it is possible to craft signatures that\n recover to arbitrary addresses for non-hashed data. A safe way to ensure\n this is by receiving a hash of the original message (which may otherwise\n be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it."},"id":4563,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"3723:7:25","nodeType":"FunctionDefinition","parameters":{"id":4539,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4536,"mutability":"mutable","name":"hash","nameLocation":"3739:4:25","nodeType":"VariableDeclaration","scope":4563,"src":"3731:12:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4535,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3731:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4538,"mutability":"mutable","name":"signature","nameLocation":"3758:9:25","nodeType":"VariableDeclaration","scope":4563,"src":"3745:22:25","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":4537,"name":"bytes","nodeType":"ElementaryTypeName","src":"3745:5:25","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3730:38:25"},"returnParameters":{"id":4542,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4541,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4563,"src":"3792:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4540,"name":"address","nodeType":"ElementaryTypeName","src":"3792:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3791:9:25"},"scope":4807,"src":"3714:255:25","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4612,"nodeType":"Block","src":"4348:342:25","statements":[{"id":4611,"nodeType":"UncheckedBlock","src":"4358:326:25","statements":[{"assignments":[4581],"declarations":[{"constant":false,"id":4581,"mutability":"mutable","name":"s","nameLocation":"4390:1:25","nodeType":"VariableDeclaration","scope":4611,"src":"4382:9:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4580,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4382:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4588,"initialValue":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":4587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4582,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4570,"src":"4394:2:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"arguments":[{"hexValue":"307837666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666","id":4585,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4407:66:25","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819967_by_1","typeString":"int_const 5789...(69 digits omitted)...9967"},"value":"0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819967_by_1","typeString":"int_const 5789...(69 digits omitted)...9967"}],"id":4584,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4399:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":4583,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4399:7:25","typeDescriptions":{}}},"id":4586,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4399:75:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4394:80:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"4382:92:25"},{"assignments":[4590],"declarations":[{"constant":false,"id":4590,"mutability":"mutable","name":"v","nameLocation":"4591:1:25","nodeType":"VariableDeclaration","scope":4611,"src":"4585:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4589,"name":"uint8","nodeType":"ElementaryTypeName","src":"4585:5:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":4603,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4601,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4598,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":4595,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4570,"src":"4610:2:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4594,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4602:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":4593,"name":"uint256","nodeType":"ElementaryTypeName","src":"4602:7:25","typeDescriptions":{}}},"id":4596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4602:11:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":4597,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4617:3:25","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"4602:18:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4599,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4601:20:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3237","id":4600,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4624:2:25","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"4601:25:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4592,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4595:5:25","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":4591,"name":"uint8","nodeType":"ElementaryTypeName","src":"4595:5:25","typeDescriptions":{}}},"id":4602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4595:32:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"4585:42:25"},{"expression":{"arguments":[{"id":4605,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4566,"src":"4659:4:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4606,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4590,"src":"4665:1:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":4607,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"4668:1:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4608,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4581,"src":"4671:1:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4604,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[4533,4613,4721],"referencedDeclaration":4721,"src":"4648:10:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$4467_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":4609,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4648:25:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$4467_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":4579,"id":4610,"nodeType":"Return","src":"4641:32:25"}]}]},"documentation":{"id":4564,"nodeType":"StructuredDocumentation","src":"3975:205:25","text":" @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n See https://eips.ethereum.org/EIPS/eip-2098[ERC-2098 short signatures]"},"id":4613,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"4194:10:25","nodeType":"FunctionDefinition","parameters":{"id":4571,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4566,"mutability":"mutable","name":"hash","nameLocation":"4222:4:25","nodeType":"VariableDeclaration","scope":4613,"src":"4214:12:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4565,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4214:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4568,"mutability":"mutable","name":"r","nameLocation":"4244:1:25","nodeType":"VariableDeclaration","scope":4613,"src":"4236:9:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4567,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4236:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4570,"mutability":"mutable","name":"vs","nameLocation":"4263:2:25","nodeType":"VariableDeclaration","scope":4613,"src":"4255:10:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4569,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4255:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4204:67:25"},"returnParameters":{"id":4579,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4573,"mutability":"mutable","name":"recovered","nameLocation":"4303:9:25","nodeType":"VariableDeclaration","scope":4613,"src":"4295:17:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4572,"name":"address","nodeType":"ElementaryTypeName","src":"4295:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4576,"mutability":"mutable","name":"err","nameLocation":"4327:3:25","nodeType":"VariableDeclaration","scope":4613,"src":"4314:16:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":4575,"nodeType":"UserDefinedTypeName","pathNode":{"id":4574,"name":"RecoverError","nameLocations":["4314:12:25"],"nodeType":"IdentifierPath","referencedDeclaration":4467,"src":"4314:12:25"},"referencedDeclaration":4467,"src":"4314:12:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":4578,"mutability":"mutable","name":"errArg","nameLocation":"4340:6:25","nodeType":"VariableDeclaration","scope":4613,"src":"4332:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4577,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4332:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4294:53:25"},"scope":4807,"src":"4185:505:25","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4645,"nodeType":"Block","src":"4903:164:25","statements":[{"assignments":[4626,4629,4631],"declarations":[{"constant":false,"id":4626,"mutability":"mutable","name":"recovered","nameLocation":"4922:9:25","nodeType":"VariableDeclaration","scope":4645,"src":"4914:17:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4625,"name":"address","nodeType":"ElementaryTypeName","src":"4914:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4629,"mutability":"mutable","name":"error","nameLocation":"4946:5:25","nodeType":"VariableDeclaration","scope":4645,"src":"4933:18:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":4628,"nodeType":"UserDefinedTypeName","pathNode":{"id":4627,"name":"RecoverError","nameLocations":["4933:12:25"],"nodeType":"IdentifierPath","referencedDeclaration":4467,"src":"4933:12:25"},"referencedDeclaration":4467,"src":"4933:12:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":4631,"mutability":"mutable","name":"errorArg","nameLocation":"4961:8:25","nodeType":"VariableDeclaration","scope":4645,"src":"4953:16:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4630,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4953:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4637,"initialValue":{"arguments":[{"id":4633,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4616,"src":"4984:4:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4634,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4618,"src":"4990:1:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4635,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4620,"src":"4993:2:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4632,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[4533,4613,4721],"referencedDeclaration":4613,"src":"4973:10:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$4467_$_t_bytes32_$","typeString":"function (bytes32,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":4636,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4973:23:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$4467_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"4913:83:25"},{"expression":{"arguments":[{"id":4639,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4629,"src":"5018:5:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},{"id":4640,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4631,"src":"5025:8:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4638,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4806,"src":"5006:11:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$4467_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":4641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5006:28:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4642,"nodeType":"ExpressionStatement","src":"5006:28:25"},{"expression":{"id":4643,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4626,"src":"5051:9:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4624,"id":4644,"nodeType":"Return","src":"5044:16:25"}]},"documentation":{"id":4614,"nodeType":"StructuredDocumentation","src":"4696:116:25","text":" @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately."},"id":4646,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"4826:7:25","nodeType":"FunctionDefinition","parameters":{"id":4621,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4616,"mutability":"mutable","name":"hash","nameLocation":"4842:4:25","nodeType":"VariableDeclaration","scope":4646,"src":"4834:12:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4615,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4834:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4618,"mutability":"mutable","name":"r","nameLocation":"4856:1:25","nodeType":"VariableDeclaration","scope":4646,"src":"4848:9:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4617,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4848:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4620,"mutability":"mutable","name":"vs","nameLocation":"4867:2:25","nodeType":"VariableDeclaration","scope":4646,"src":"4859:10:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4619,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4859:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4833:37:25"},"returnParameters":{"id":4624,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4623,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4646,"src":"4894:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4622,"name":"address","nodeType":"ElementaryTypeName","src":"4894:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4893:9:25"},"scope":4807,"src":"4817:250:25","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4720,"nodeType":"Block","src":"5382:1372:25","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":4667,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4655,"src":"6278:1:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4666,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6270:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":4665,"name":"uint256","nodeType":"ElementaryTypeName","src":"6270:7:25","typeDescriptions":{}}},"id":4668,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6270:10:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307837464646464646464646464646464646464646464646464646464646464646463544353736453733353741343530314444464539324634363638314232304130","id":4669,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6283:66:25","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926418782139537452191302581570759080747168_by_1","typeString":"int_const 5789...(69 digits omitted)...7168"},"value":"0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0"},"src":"6270:79:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4681,"nodeType":"IfStatement","src":"6266:164:25","trueBody":{"id":4680,"nodeType":"Block","src":"6351:79:25","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":4673,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6381:1:25","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":4672,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6373:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4671,"name":"address","nodeType":"ElementaryTypeName","src":"6373:7:25","typeDescriptions":{}}},"id":4674,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6373:10:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":4675,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4467,"src":"6385:12:25","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$4467_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":4676,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6398:17:25","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":4466,"src":"6385:30:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},{"id":4677,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4655,"src":"6417:1:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":4678,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6372:47:25","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$4467_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":4664,"id":4679,"nodeType":"Return","src":"6365:54:25"}]}},{"assignments":[4683],"declarations":[{"constant":false,"id":4683,"mutability":"mutable","name":"signer","nameLocation":"6532:6:25","nodeType":"VariableDeclaration","scope":4720,"src":"6524:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4682,"name":"address","nodeType":"ElementaryTypeName","src":"6524:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4690,"initialValue":{"arguments":[{"id":4685,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4649,"src":"6551:4:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4686,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4651,"src":"6557:1:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":4687,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4653,"src":"6560:1:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4688,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4655,"src":"6563:1:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4684,"name":"ecrecover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-6,"src":"6541:9:25","typeDescriptions":{"typeIdentifier":"t_function_ecrecover_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address)"}},"id":4689,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6541:24:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6524:41:25"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":4696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4691,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4683,"src":"6579:6:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":4694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6597:1:25","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":4693,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6589:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4692,"name":"address","nodeType":"ElementaryTypeName","src":"6589:7:25","typeDescriptions":{}}},"id":4695,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6589:10:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6579:20:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4710,"nodeType":"IfStatement","src":"6575:113:25","trueBody":{"id":4709,"nodeType":"Block","src":"6601:87:25","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":4699,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6631:1:25","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":4698,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6623:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4697,"name":"address","nodeType":"ElementaryTypeName","src":"6623:7:25","typeDescriptions":{}}},"id":4700,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6623:10:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":4701,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4467,"src":"6635:12:25","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$4467_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":4702,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6648:16:25","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":4464,"src":"6635:29:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"hexValue":"30","id":4705,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6674:1:25","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":4704,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6666:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":4703,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6666:7:25","typeDescriptions":{}}},"id":4706,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6666:10:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":4707,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6622:55:25","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$4467_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":4664,"id":4708,"nodeType":"Return","src":"6615:62:25"}]}},{"expression":{"components":[{"id":4711,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4683,"src":"6706:6:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":4712,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4467,"src":"6714:12:25","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$4467_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":4713,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6727:7:25","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":4463,"src":"6714:20:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"hexValue":"30","id":4716,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6744:1:25","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":4715,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6736:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":4714,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6736:7:25","typeDescriptions":{}}},"id":4717,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6736:10:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":4718,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6705:42:25","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$4467_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":4664,"id":4719,"nodeType":"Return","src":"6698:49:25"}]},"documentation":{"id":4647,"nodeType":"StructuredDocumentation","src":"5073:125:25","text":" @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n `r` and `s` signature fields separately."},"id":4721,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"5212:10:25","nodeType":"FunctionDefinition","parameters":{"id":4656,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4649,"mutability":"mutable","name":"hash","nameLocation":"5240:4:25","nodeType":"VariableDeclaration","scope":4721,"src":"5232:12:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4648,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5232:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4651,"mutability":"mutable","name":"v","nameLocation":"5260:1:25","nodeType":"VariableDeclaration","scope":4721,"src":"5254:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4650,"name":"uint8","nodeType":"ElementaryTypeName","src":"5254:5:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":4653,"mutability":"mutable","name":"r","nameLocation":"5279:1:25","nodeType":"VariableDeclaration","scope":4721,"src":"5271:9:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4652,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5271:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4655,"mutability":"mutable","name":"s","nameLocation":"5298:1:25","nodeType":"VariableDeclaration","scope":4721,"src":"5290:9:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4654,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5290:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5222:83:25"},"returnParameters":{"id":4664,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4658,"mutability":"mutable","name":"recovered","nameLocation":"5337:9:25","nodeType":"VariableDeclaration","scope":4721,"src":"5329:17:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4657,"name":"address","nodeType":"ElementaryTypeName","src":"5329:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4661,"mutability":"mutable","name":"err","nameLocation":"5361:3:25","nodeType":"VariableDeclaration","scope":4721,"src":"5348:16:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":4660,"nodeType":"UserDefinedTypeName","pathNode":{"id":4659,"name":"RecoverError","nameLocations":["5348:12:25"],"nodeType":"IdentifierPath","referencedDeclaration":4467,"src":"5348:12:25"},"referencedDeclaration":4467,"src":"5348:12:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":4663,"mutability":"mutable","name":"errArg","nameLocation":"5374:6:25","nodeType":"VariableDeclaration","scope":4721,"src":"5366:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4662,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5366:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5328:53:25"},"scope":4807,"src":"5203:1551:25","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4756,"nodeType":"Block","src":"6981:166:25","statements":[{"assignments":[4736,4739,4741],"declarations":[{"constant":false,"id":4736,"mutability":"mutable","name":"recovered","nameLocation":"7000:9:25","nodeType":"VariableDeclaration","scope":4756,"src":"6992:17:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4735,"name":"address","nodeType":"ElementaryTypeName","src":"6992:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4739,"mutability":"mutable","name":"error","nameLocation":"7024:5:25","nodeType":"VariableDeclaration","scope":4756,"src":"7011:18:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":4738,"nodeType":"UserDefinedTypeName","pathNode":{"id":4737,"name":"RecoverError","nameLocations":["7011:12:25"],"nodeType":"IdentifierPath","referencedDeclaration":4467,"src":"7011:12:25"},"referencedDeclaration":4467,"src":"7011:12:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":4741,"mutability":"mutable","name":"errorArg","nameLocation":"7039:8:25","nodeType":"VariableDeclaration","scope":4756,"src":"7031:16:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4740,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7031:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4748,"initialValue":{"arguments":[{"id":4743,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4724,"src":"7062:4:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4744,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4726,"src":"7068:1:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":4745,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4728,"src":"7071:1:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4746,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4730,"src":"7074:1:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4742,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[4533,4613,4721],"referencedDeclaration":4721,"src":"7051:10:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$4467_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":4747,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7051:25:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$4467_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"6991:85:25"},{"expression":{"arguments":[{"id":4750,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4739,"src":"7098:5:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},{"id":4751,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4741,"src":"7105:8:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4749,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4806,"src":"7086:11:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$4467_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":4752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7086:28:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4753,"nodeType":"ExpressionStatement","src":"7086:28:25"},{"expression":{"id":4754,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4736,"src":"7131:9:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4734,"id":4755,"nodeType":"Return","src":"7124:16:25"}]},"documentation":{"id":4722,"nodeType":"StructuredDocumentation","src":"6760:122:25","text":" @dev Overload of {ECDSA-recover} that receives the `v`,\n `r` and `s` signature fields separately."},"id":4757,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"6896:7:25","nodeType":"FunctionDefinition","parameters":{"id":4731,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4724,"mutability":"mutable","name":"hash","nameLocation":"6912:4:25","nodeType":"VariableDeclaration","scope":4757,"src":"6904:12:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4723,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6904:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4726,"mutability":"mutable","name":"v","nameLocation":"6924:1:25","nodeType":"VariableDeclaration","scope":4757,"src":"6918:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4725,"name":"uint8","nodeType":"ElementaryTypeName","src":"6918:5:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":4728,"mutability":"mutable","name":"r","nameLocation":"6935:1:25","nodeType":"VariableDeclaration","scope":4757,"src":"6927:9:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4727,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6927:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4730,"mutability":"mutable","name":"s","nameLocation":"6946:1:25","nodeType":"VariableDeclaration","scope":4757,"src":"6938:9:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4729,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6938:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6903:45:25"},"returnParameters":{"id":4734,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4733,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4757,"src":"6972:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4732,"name":"address","nodeType":"ElementaryTypeName","src":"6972:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6971:9:25"},"scope":4807,"src":"6887:260:25","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4805,"nodeType":"Block","src":"7352:460:25","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"},"id":4769,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4766,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4761,"src":"7366:5:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":4767,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4467,"src":"7375:12:25","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$4467_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":4768,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7388:7:25","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":4463,"src":"7375:20:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},"src":"7366:29:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"},"id":4775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4772,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4761,"src":"7462:5:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":4773,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4467,"src":"7471:12:25","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$4467_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":4774,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7484:16:25","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":4464,"src":"7471:29:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},"src":"7462:38:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"},"id":4783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4780,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4761,"src":"7567:5:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":4781,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4467,"src":"7576:12:25","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$4467_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":4782,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7589:22:25","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":4465,"src":"7576:35:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},"src":"7567:44:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"},"id":4795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4792,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4761,"src":"7701:5:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":4793,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4467,"src":"7710:12:25","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$4467_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":4794,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7723:17:25","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":4466,"src":"7710:30:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},"src":"7701:39:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4801,"nodeType":"IfStatement","src":"7697:109:25","trueBody":{"id":4800,"nodeType":"Block","src":"7742:64:25","statements":[{"errorCall":{"arguments":[{"id":4797,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4763,"src":"7786:8:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4796,"name":"ECDSAInvalidSignatureS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4480,"src":"7763:22:25","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":4798,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7763:32:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4799,"nodeType":"RevertStatement","src":"7756:39:25"}]}},"id":4802,"nodeType":"IfStatement","src":"7563:243:25","trueBody":{"id":4791,"nodeType":"Block","src":"7613:78:25","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":4787,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4763,"src":"7670:8:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4786,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7662:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":4785,"name":"uint256","nodeType":"ElementaryTypeName","src":"7662:7:25","typeDescriptions":{}}},"id":4788,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7662:17:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4784,"name":"ECDSAInvalidSignatureLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4475,"src":"7634:27:25","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":4789,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7634:46:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4790,"nodeType":"RevertStatement","src":"7627:53:25"}]}},"id":4803,"nodeType":"IfStatement","src":"7458:348:25","trueBody":{"id":4779,"nodeType":"Block","src":"7502:55:25","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":4776,"name":"ECDSAInvalidSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4470,"src":"7523:21:25","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":4777,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7523:23:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4778,"nodeType":"RevertStatement","src":"7516:30:25"}]}},"id":4804,"nodeType":"IfStatement","src":"7362:444:25","trueBody":{"id":4771,"nodeType":"Block","src":"7397:55:25","statements":[{"functionReturnParameters":4765,"id":4770,"nodeType":"Return","src":"7411:7:25"}]}}]},"documentation":{"id":4758,"nodeType":"StructuredDocumentation","src":"7153:122:25","text":" @dev Optionally reverts with the corresponding custom error according to the `error` argument provided."},"id":4806,"implemented":true,"kind":"function","modifiers":[],"name":"_throwError","nameLocation":"7289:11:25","nodeType":"FunctionDefinition","parameters":{"id":4764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4761,"mutability":"mutable","name":"error","nameLocation":"7314:5:25","nodeType":"VariableDeclaration","scope":4806,"src":"7301:18:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":4760,"nodeType":"UserDefinedTypeName","pathNode":{"id":4759,"name":"RecoverError","nameLocations":["7301:12:25"],"nodeType":"IdentifierPath","referencedDeclaration":4467,"src":"7301:12:25"},"referencedDeclaration":4467,"src":"7301:12:25","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$4467","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":4763,"mutability":"mutable","name":"errorArg","nameLocation":"7329:8:25","nodeType":"VariableDeclaration","scope":4806,"src":"7321:16:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4762,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7321:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7300:38:25"},"returnParameters":{"id":4765,"nodeType":"ParameterList","parameters":[],"src":"7352:0:25"},"scope":4807,"src":"7280:532:25","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":4808,"src":"344:7470:25","usedErrors":[4470,4475,4480],"usedEvents":[]}],"src":"112:7703:25"},"id":25},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","exportedSymbols":{"MessageHashUtils":[4881],"Strings":[4459]},"id":4882,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4809,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"123:24:26"},{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","file":"../Strings.sol","id":4811,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4882,"sourceUnit":4460,"src":"149:39:26","symbolAliases":[{"foreign":{"id":4810,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4459,"src":"157:7:26","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"MessageHashUtils","contractDependencies":[],"contractKind":"library","documentation":{"id":4812,"nodeType":"StructuredDocumentation","src":"190:330:26","text":" @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.\n The library provides methods for generating a hash of a message that conforms to the\n https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]\n specifications."},"fullyImplemented":true,"id":4881,"linearizedBaseContracts":[4881],"name":"MessageHashUtils","nameLocation":"529:16:26","nodeType":"ContractDefinition","nodes":[{"body":{"id":4821,"nodeType":"Block","src":"1314:341:26","statements":[{"AST":{"nativeSrc":"1349:300:26","nodeType":"YulBlock","src":"1349:300:26","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1370:4:26","nodeType":"YulLiteral","src":"1370:4:26","type":"","value":"0x00"},{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a3332","kind":"string","nativeSrc":"1376:34:26","nodeType":"YulLiteral","src":"1376:34:26","type":"","value":"\u0019Ethereum Signed Message:\n32"}],"functionName":{"name":"mstore","nativeSrc":"1363:6:26","nodeType":"YulIdentifier","src":"1363:6:26"},"nativeSrc":"1363:48:26","nodeType":"YulFunctionCall","src":"1363:48:26"},"nativeSrc":"1363:48:26","nodeType":"YulExpressionStatement","src":"1363:48:26"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1472:4:26","nodeType":"YulLiteral","src":"1472:4:26","type":"","value":"0x1c"},{"name":"messageHash","nativeSrc":"1478:11:26","nodeType":"YulIdentifier","src":"1478:11:26"}],"functionName":{"name":"mstore","nativeSrc":"1465:6:26","nodeType":"YulIdentifier","src":"1465:6:26"},"nativeSrc":"1465:25:26","nodeType":"YulFunctionCall","src":"1465:25:26"},"nativeSrc":"1465:25:26","nodeType":"YulExpressionStatement","src":"1465:25:26"},{"nativeSrc":"1544:31:26","nodeType":"YulAssignment","src":"1544:31:26","value":{"arguments":[{"kind":"number","nativeSrc":"1564:4:26","nodeType":"YulLiteral","src":"1564:4:26","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1570:4:26","nodeType":"YulLiteral","src":"1570:4:26","type":"","value":"0x3c"}],"functionName":{"name":"keccak256","nativeSrc":"1554:9:26","nodeType":"YulIdentifier","src":"1554:9:26"},"nativeSrc":"1554:21:26","nodeType":"YulFunctionCall","src":"1554:21:26"},"variableNames":[{"name":"digest","nativeSrc":"1544:6:26","nodeType":"YulIdentifier","src":"1544:6:26"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":4818,"isOffset":false,"isSlot":false,"src":"1544:6:26","valueSize":1},{"declaration":4815,"isOffset":false,"isSlot":false,"src":"1478:11:26","valueSize":1}],"flags":["memory-safe"],"id":4820,"nodeType":"InlineAssembly","src":"1324:325:26"}]},"documentation":{"id":4813,"nodeType":"StructuredDocumentation","src":"552:665:26","text":" @dev Returns the keccak256 digest of an ERC-191 signed data with version\n `0x45` (`personal_sign` messages).\n The digest is calculated by prefixing a bytes32 `messageHash` with\n `\"\\x19Ethereum Signed Message:\\n32\"` and hashing the result. It corresponds with the\n hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.\n NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with\n keccak256, although any bytes32 value can be safely used because the final digest will\n be re-hashed.\n See {ECDSA-recover}."},"id":4822,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"1231:22:26","nodeType":"FunctionDefinition","parameters":{"id":4816,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4815,"mutability":"mutable","name":"messageHash","nameLocation":"1262:11:26","nodeType":"VariableDeclaration","scope":4822,"src":"1254:19:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4814,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1254:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1253:21:26"},"returnParameters":{"id":4819,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4818,"mutability":"mutable","name":"digest","nameLocation":"1306:6:26","nodeType":"VariableDeclaration","scope":4822,"src":"1298:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4817,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1298:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1297:16:26"},"scope":4881,"src":"1222:433:26","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4847,"nodeType":"Block","src":"2207:143:26","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a","id":4834,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2259:32:26","typeDescriptions":{"typeIdentifier":"t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4","typeString":"literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""},"value":"\u0019Ethereum Signed Message:\n"},{"arguments":[{"arguments":[{"expression":{"id":4839,"name":"message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4825,"src":"2316:7:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":4840,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2324:6:26","memberName":"length","nodeType":"MemberAccess","src":"2316:14:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4837,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4459,"src":"2299:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Strings_$4459_$","typeString":"type(library Strings)"}},"id":4838,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2307:8:26","memberName":"toString","nodeType":"MemberAccess","referencedDeclaration":3337,"src":"2299:16:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":4841,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2299:32:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":4836,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2293:5:26","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":4835,"name":"bytes","nodeType":"ElementaryTypeName","src":"2293:5:26","typeDescriptions":{}}},"id":4842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2293:39:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":4843,"name":"message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4825,"src":"2334:7:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4","typeString":"literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":4832,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2246:5:26","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":4831,"name":"bytes","nodeType":"ElementaryTypeName","src":"2246:5:26","typeDescriptions":{}}},"id":4833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2252:6:26","memberName":"concat","nodeType":"MemberAccess","src":"2246:12:26","typeDescriptions":{"typeIdentifier":"t_function_bytesconcat_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4844,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2246:96:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":4830,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2236:9:26","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4845,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2236:107:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":4829,"id":4846,"nodeType":"Return","src":"2217:126:26"}]},"documentation":{"id":4823,"nodeType":"StructuredDocumentation","src":"1661:455:26","text":" @dev Returns the keccak256 digest of an ERC-191 signed data with version\n `0x45` (`personal_sign` messages).\n The digest is calculated by prefixing an arbitrary `message` with\n `\"\\x19Ethereum Signed Message:\\n\" + len(message)` and hashing the result. It corresponds with the\n hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.\n See {ECDSA-recover}."},"id":4848,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"2130:22:26","nodeType":"FunctionDefinition","parameters":{"id":4826,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4825,"mutability":"mutable","name":"message","nameLocation":"2166:7:26","nodeType":"VariableDeclaration","scope":4848,"src":"2153:20:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":4824,"name":"bytes","nodeType":"ElementaryTypeName","src":"2153:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2152:22:26"},"returnParameters":{"id":4829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4828,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4848,"src":"2198:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4827,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2198:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2197:9:26"},"scope":4881,"src":"2121:229:26","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4867,"nodeType":"Block","src":"2804:80:26","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"1900","id":4861,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"2848:10:26","typeDescriptions":{"typeIdentifier":"t_stringliteral_73fd5d154550a4a103564cb191928cd38898034de1b952dc21b290898b4b697a","typeString":"literal_string hex\"1900\""},"value":"\u0019\u0000"},{"id":4862,"name":"validator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4851,"src":"2860:9:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4863,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4853,"src":"2871:4:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_73fd5d154550a4a103564cb191928cd38898034de1b952dc21b290898b4b697a","typeString":"literal_string hex\"1900\""},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":4859,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2831:3:26","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":4860,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2835:12:26","memberName":"encodePacked","nodeType":"MemberAccess","src":"2831:16:26","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2831:45:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":4858,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2821:9:26","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4865,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2821:56:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":4857,"id":4866,"nodeType":"Return","src":"2814:63:26"}]},"documentation":{"id":4849,"nodeType":"StructuredDocumentation","src":"2356:332:26","text":" @dev Returns the keccak256 digest of an ERC-191 signed data with version\n `0x00` (data with intended validator).\n The digest is calculated by prefixing an arbitrary `data` with `\"\\x19\\x00\"` and the intended\n `validator` address. Then hashing the result.\n See {ECDSA-recover}."},"id":4868,"implemented":true,"kind":"function","modifiers":[],"name":"toDataWithIntendedValidatorHash","nameLocation":"2702:31:26","nodeType":"FunctionDefinition","parameters":{"id":4854,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4851,"mutability":"mutable","name":"validator","nameLocation":"2742:9:26","nodeType":"VariableDeclaration","scope":4868,"src":"2734:17:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4850,"name":"address","nodeType":"ElementaryTypeName","src":"2734:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4853,"mutability":"mutable","name":"data","nameLocation":"2766:4:26","nodeType":"VariableDeclaration","scope":4868,"src":"2753:17:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":4852,"name":"bytes","nodeType":"ElementaryTypeName","src":"2753:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2733:38:26"},"returnParameters":{"id":4857,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4856,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4868,"src":"2795:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4855,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2795:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2794:9:26"},"scope":4881,"src":"2693:191:26","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4879,"nodeType":"Block","src":"3435:265:26","statements":[{"AST":{"nativeSrc":"3470:224:26","nodeType":"YulBlock","src":"3470:224:26","statements":[{"nativeSrc":"3484:22:26","nodeType":"YulVariableDeclaration","src":"3484:22:26","value":{"arguments":[{"kind":"number","nativeSrc":"3501:4:26","nodeType":"YulLiteral","src":"3501:4:26","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"3495:5:26","nodeType":"YulIdentifier","src":"3495:5:26"},"nativeSrc":"3495:11:26","nodeType":"YulFunctionCall","src":"3495:11:26"},"variables":[{"name":"ptr","nativeSrc":"3488:3:26","nodeType":"YulTypedName","src":"3488:3:26","type":""}]},{"expression":{"arguments":[{"name":"ptr","nativeSrc":"3526:3:26","nodeType":"YulIdentifier","src":"3526:3:26"},{"hexValue":"1901","kind":"string","nativeSrc":"3531:10:26","nodeType":"YulLiteral","src":"3531:10:26","type":"","value":"\u0019\u0001"}],"functionName":{"name":"mstore","nativeSrc":"3519:6:26","nodeType":"YulIdentifier","src":"3519:6:26"},"nativeSrc":"3519:23:26","nodeType":"YulFunctionCall","src":"3519:23:26"},"nativeSrc":"3519:23:26","nodeType":"YulExpressionStatement","src":"3519:23:26"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"3566:3:26","nodeType":"YulIdentifier","src":"3566:3:26"},{"kind":"number","nativeSrc":"3571:4:26","nodeType":"YulLiteral","src":"3571:4:26","type":"","value":"0x02"}],"functionName":{"name":"add","nativeSrc":"3562:3:26","nodeType":"YulIdentifier","src":"3562:3:26"},"nativeSrc":"3562:14:26","nodeType":"YulFunctionCall","src":"3562:14:26"},{"name":"domainSeparator","nativeSrc":"3578:15:26","nodeType":"YulIdentifier","src":"3578:15:26"}],"functionName":{"name":"mstore","nativeSrc":"3555:6:26","nodeType":"YulIdentifier","src":"3555:6:26"},"nativeSrc":"3555:39:26","nodeType":"YulFunctionCall","src":"3555:39:26"},"nativeSrc":"3555:39:26","nodeType":"YulExpressionStatement","src":"3555:39:26"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"3618:3:26","nodeType":"YulIdentifier","src":"3618:3:26"},{"kind":"number","nativeSrc":"3623:4:26","nodeType":"YulLiteral","src":"3623:4:26","type":"","value":"0x22"}],"functionName":{"name":"add","nativeSrc":"3614:3:26","nodeType":"YulIdentifier","src":"3614:3:26"},"nativeSrc":"3614:14:26","nodeType":"YulFunctionCall","src":"3614:14:26"},{"name":"structHash","nativeSrc":"3630:10:26","nodeType":"YulIdentifier","src":"3630:10:26"}],"functionName":{"name":"mstore","nativeSrc":"3607:6:26","nodeType":"YulIdentifier","src":"3607:6:26"},"nativeSrc":"3607:34:26","nodeType":"YulFunctionCall","src":"3607:34:26"},"nativeSrc":"3607:34:26","nodeType":"YulExpressionStatement","src":"3607:34:26"},{"nativeSrc":"3654:30:26","nodeType":"YulAssignment","src":"3654:30:26","value":{"arguments":[{"name":"ptr","nativeSrc":"3674:3:26","nodeType":"YulIdentifier","src":"3674:3:26"},{"kind":"number","nativeSrc":"3679:4:26","nodeType":"YulLiteral","src":"3679:4:26","type":"","value":"0x42"}],"functionName":{"name":"keccak256","nativeSrc":"3664:9:26","nodeType":"YulIdentifier","src":"3664:9:26"},"nativeSrc":"3664:20:26","nodeType":"YulFunctionCall","src":"3664:20:26"},"variableNames":[{"name":"digest","nativeSrc":"3654:6:26","nodeType":"YulIdentifier","src":"3654:6:26"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":4876,"isOffset":false,"isSlot":false,"src":"3654:6:26","valueSize":1},{"declaration":4871,"isOffset":false,"isSlot":false,"src":"3578:15:26","valueSize":1},{"declaration":4873,"isOffset":false,"isSlot":false,"src":"3630:10:26","valueSize":1}],"flags":["memory-safe"],"id":4878,"nodeType":"InlineAssembly","src":"3445:249:26"}]},"documentation":{"id":4869,"nodeType":"StructuredDocumentation","src":"2890:431:26","text":" @dev Returns the keccak256 digest of an EIP-712 typed data (ERC-191 version `0x01`).\n The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with\n `\\x19\\x01` and hashing the result. It corresponds to the hash signed by the\n https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.\n See {ECDSA-recover}."},"id":4880,"implemented":true,"kind":"function","modifiers":[],"name":"toTypedDataHash","nameLocation":"3335:15:26","nodeType":"FunctionDefinition","parameters":{"id":4874,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4871,"mutability":"mutable","name":"domainSeparator","nameLocation":"3359:15:26","nodeType":"VariableDeclaration","scope":4880,"src":"3351:23:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4870,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3351:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4873,"mutability":"mutable","name":"structHash","nameLocation":"3384:10:26","nodeType":"VariableDeclaration","scope":4880,"src":"3376:18:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4872,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3376:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3350:45:26"},"returnParameters":{"id":4877,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4876,"mutability":"mutable","name":"digest","nameLocation":"3427:6:26","nodeType":"VariableDeclaration","scope":4880,"src":"3419:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4875,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3419:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3418:16:26"},"scope":4881,"src":"3326:374:26","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":4882,"src":"521:3181:26","usedErrors":[],"usedEvents":[]}],"src":"123:3580:26"},"id":26},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","exportedSymbols":{"ERC165":[4905],"IERC165":[4917]},"id":4906,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4883,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"114:24:27"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"./IERC165.sol","id":4885,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4906,"sourceUnit":4918,"src":"140:38:27","symbolAliases":[{"foreign":{"id":4884,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4917,"src":"148:7:27","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4887,"name":"IERC165","nameLocations":["688:7:27"],"nodeType":"IdentifierPath","referencedDeclaration":4917,"src":"688:7:27"},"id":4888,"nodeType":"InheritanceSpecifier","src":"688:7:27"}],"canonicalName":"ERC165","contractDependencies":[],"contractKind":"contract","documentation":{"id":4886,"nodeType":"StructuredDocumentation","src":"180:479:27","text":" @dev Implementation of the {IERC165} interface.\n Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check\n for the additional interface id that will be supported. For example:\n ```solidity\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n }\n ```"},"fullyImplemented":true,"id":4905,"linearizedBaseContracts":[4905,4917],"name":"ERC165","nameLocation":"678:6:27","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[4916],"body":{"id":4903,"nodeType":"Block","src":"845:64:27","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":4901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4896,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4891,"src":"862:11:27","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":4898,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4917,"src":"882:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$4917_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$4917_$","typeString":"type(contract IERC165)"}],"id":4897,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"877:4:27","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":4899,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"877:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$4917","typeString":"type(contract IERC165)"}},"id":4900,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"891:11:27","memberName":"interfaceId","nodeType":"MemberAccess","src":"877:25:27","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"862:40:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":4895,"id":4902,"nodeType":"Return","src":"855:47:27"}]},"documentation":{"id":4889,"nodeType":"StructuredDocumentation","src":"702:56:27","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":4904,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"772:17:27","nodeType":"FunctionDefinition","parameters":{"id":4892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4891,"mutability":"mutable","name":"interfaceId","nameLocation":"797:11:27","nodeType":"VariableDeclaration","scope":4904,"src":"790:18:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":4890,"name":"bytes4","nodeType":"ElementaryTypeName","src":"790:6:27","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"789:20:27"},"returnParameters":{"id":4895,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4894,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4904,"src":"839:4:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4893,"name":"bool","nodeType":"ElementaryTypeName","src":"839:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"838:6:27"},"scope":4905,"src":"763:146:27","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":4906,"src":"660:251:27","usedErrors":[],"usedEvents":[]}],"src":"114:798:27"},"id":27},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","exportedSymbols":{"IERC165":[4917]},"id":4918,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4907,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"115:24:28"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC165","contractDependencies":[],"contractKind":"interface","documentation":{"id":4908,"nodeType":"StructuredDocumentation","src":"141:280:28","text":" @dev Interface of the ERC-165 standard, as defined in the\n https://eips.ethereum.org/EIPS/eip-165[ERC].\n Implementers can declare support of contract interfaces, which can then be\n queried by others ({ERC165Checker}).\n For an implementation, see {ERC165}."},"fullyImplemented":false,"id":4917,"linearizedBaseContracts":[4917],"name":"IERC165","nameLocation":"432:7:28","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":4909,"nodeType":"StructuredDocumentation","src":"446:340:28","text":" @dev Returns true if this contract implements the interface defined by\n `interfaceId`. See the corresponding\n https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]\n to learn more about how these ids are created.\n This function call must use less than 30 000 gas."},"functionSelector":"01ffc9a7","id":4916,"implemented":false,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"800:17:28","nodeType":"FunctionDefinition","parameters":{"id":4912,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4911,"mutability":"mutable","name":"interfaceId","nameLocation":"825:11:28","nodeType":"VariableDeclaration","scope":4916,"src":"818:18:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":4910,"name":"bytes4","nodeType":"ElementaryTypeName","src":"818:6:28","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"817:20:28"},"returnParameters":{"id":4915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4914,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4916,"src":"861:4:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4913,"name":"bool","nodeType":"ElementaryTypeName","src":"861:4:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"860:6:28"},"scope":4917,"src":"791:76:28","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":4918,"src":"422:447:28","usedErrors":[],"usedEvents":[]}],"src":"115:755:28"},"id":28},"@openzeppelin/contracts/utils/math/Math.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","exportedSymbols":{"Math":[6523],"Panic":[3259],"SafeCast":[8288]},"id":6524,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4919,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"103:24:29"},{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","file":"../Panic.sol","id":4921,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6524,"sourceUnit":3260,"src":"129:35:29","symbolAliases":[{"foreign":{"id":4920,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3259,"src":"137:5:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./SafeCast.sol","id":4923,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6524,"sourceUnit":8289,"src":"165:40:29","symbolAliases":[{"foreign":{"id":4922,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"173:8:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Math","contractDependencies":[],"contractKind":"library","documentation":{"id":4924,"nodeType":"StructuredDocumentation","src":"207:73:29","text":" @dev Standard math utilities missing in the Solidity language."},"fullyImplemented":true,"id":6523,"linearizedBaseContracts":[6523],"name":"Math","nameLocation":"289:4:29","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Math.Rounding","id":4929,"members":[{"id":4925,"name":"Floor","nameLocation":"324:5:29","nodeType":"EnumValue","src":"324:5:29"},{"id":4926,"name":"Ceil","nameLocation":"367:4:29","nodeType":"EnumValue","src":"367:4:29"},{"id":4927,"name":"Trunc","nameLocation":"409:5:29","nodeType":"EnumValue","src":"409:5:29"},{"id":4928,"name":"Expand","nameLocation":"439:6:29","nodeType":"EnumValue","src":"439:6:29"}],"name":"Rounding","nameLocation":"305:8:29","nodeType":"EnumDefinition","src":"300:169:29"},{"body":{"id":4960,"nodeType":"Block","src":"677:140:29","statements":[{"id":4959,"nodeType":"UncheckedBlock","src":"687:124:29","statements":[{"assignments":[4942],"declarations":[{"constant":false,"id":4942,"mutability":"mutable","name":"c","nameLocation":"719:1:29","nodeType":"VariableDeclaration","scope":4959,"src":"711:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4941,"name":"uint256","nodeType":"ElementaryTypeName","src":"711:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4946,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4945,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4943,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4932,"src":"723:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":4944,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4934,"src":"727:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"723:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"711:17:29"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4947,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4942,"src":"746:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":4948,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4932,"src":"750:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"746:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4954,"nodeType":"IfStatement","src":"742:28:29","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":4950,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"761:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":4951,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"768:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":4952,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"760:10:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":4940,"id":4953,"nodeType":"Return","src":"753:17:29"}},{"expression":{"components":[{"hexValue":"74727565","id":4955,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"792:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":4956,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4942,"src":"798:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4957,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"791:9:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":4940,"id":4958,"nodeType":"Return","src":"784:16:29"}]}]},"documentation":{"id":4930,"nodeType":"StructuredDocumentation","src":"475:106:29","text":" @dev Returns the addition of two unsigned integers, with an success flag (no overflow)."},"id":4961,"implemented":true,"kind":"function","modifiers":[],"name":"tryAdd","nameLocation":"595:6:29","nodeType":"FunctionDefinition","parameters":{"id":4935,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4932,"mutability":"mutable","name":"a","nameLocation":"610:1:29","nodeType":"VariableDeclaration","scope":4961,"src":"602:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4931,"name":"uint256","nodeType":"ElementaryTypeName","src":"602:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4934,"mutability":"mutable","name":"b","nameLocation":"621:1:29","nodeType":"VariableDeclaration","scope":4961,"src":"613:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4933,"name":"uint256","nodeType":"ElementaryTypeName","src":"613:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"601:22:29"},"returnParameters":{"id":4940,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4937,"mutability":"mutable","name":"success","nameLocation":"652:7:29","nodeType":"VariableDeclaration","scope":4961,"src":"647:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4936,"name":"bool","nodeType":"ElementaryTypeName","src":"647:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4939,"mutability":"mutable","name":"result","nameLocation":"669:6:29","nodeType":"VariableDeclaration","scope":4961,"src":"661:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4938,"name":"uint256","nodeType":"ElementaryTypeName","src":"661:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"646:30:29"},"scope":6523,"src":"586:231:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4988,"nodeType":"Block","src":"1028:113:29","statements":[{"id":4987,"nodeType":"UncheckedBlock","src":"1038:97:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4973,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4966,"src":"1066:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":4974,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4964,"src":"1070:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1066:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4980,"nodeType":"IfStatement","src":"1062:28:29","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":4976,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1081:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":4977,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1088:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":4978,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1080:10:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":4972,"id":4979,"nodeType":"Return","src":"1073:17:29"}},{"expression":{"components":[{"hexValue":"74727565","id":4981,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1112:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4982,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4964,"src":"1118:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":4983,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4966,"src":"1122:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1118:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4985,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1111:13:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":4972,"id":4986,"nodeType":"Return","src":"1104:20:29"}]}]},"documentation":{"id":4962,"nodeType":"StructuredDocumentation","src":"823:109:29","text":" @dev Returns the subtraction of two unsigned integers, with an success flag (no overflow)."},"id":4989,"implemented":true,"kind":"function","modifiers":[],"name":"trySub","nameLocation":"946:6:29","nodeType":"FunctionDefinition","parameters":{"id":4967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4964,"mutability":"mutable","name":"a","nameLocation":"961:1:29","nodeType":"VariableDeclaration","scope":4989,"src":"953:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4963,"name":"uint256","nodeType":"ElementaryTypeName","src":"953:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4966,"mutability":"mutable","name":"b","nameLocation":"972:1:29","nodeType":"VariableDeclaration","scope":4989,"src":"964:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4965,"name":"uint256","nodeType":"ElementaryTypeName","src":"964:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"952:22:29"},"returnParameters":{"id":4972,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4969,"mutability":"mutable","name":"success","nameLocation":"1003:7:29","nodeType":"VariableDeclaration","scope":4989,"src":"998:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4968,"name":"bool","nodeType":"ElementaryTypeName","src":"998:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4971,"mutability":"mutable","name":"result","nameLocation":"1020:6:29","nodeType":"VariableDeclaration","scope":4989,"src":"1012:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4970,"name":"uint256","nodeType":"ElementaryTypeName","src":"1012:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"997:30:29"},"scope":6523,"src":"937:204:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5030,"nodeType":"Block","src":"1355:417:29","statements":[{"id":5029,"nodeType":"UncheckedBlock","src":"1365:401:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5003,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5001,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4992,"src":"1623:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5002,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1628:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1623:6:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5008,"nodeType":"IfStatement","src":"1619:28:29","trueBody":{"expression":{"components":[{"hexValue":"74727565","id":5004,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1639:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"hexValue":"30","id":5005,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1645:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":5006,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1638:9:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":5000,"id":5007,"nodeType":"Return","src":"1631:16:29"}},{"assignments":[5010],"declarations":[{"constant":false,"id":5010,"mutability":"mutable","name":"c","nameLocation":"1669:1:29","nodeType":"VariableDeclaration","scope":5029,"src":"1661:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5009,"name":"uint256","nodeType":"ElementaryTypeName","src":"1661:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5014,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5011,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4992,"src":"1673:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5012,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4994,"src":"1677:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1673:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1661:17:29"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5019,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5015,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5010,"src":"1696:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5016,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4992,"src":"1700:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1696:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":5018,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4994,"src":"1705:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1696:10:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5024,"nodeType":"IfStatement","src":"1692:33:29","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":5020,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1716:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":5021,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1723:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":5022,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1715:10:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":5000,"id":5023,"nodeType":"Return","src":"1708:17:29"}},{"expression":{"components":[{"hexValue":"74727565","id":5025,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1747:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":5026,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5010,"src":"1753:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5027,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1746:9:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":5000,"id":5028,"nodeType":"Return","src":"1739:16:29"}]}]},"documentation":{"id":4990,"nodeType":"StructuredDocumentation","src":"1147:112:29","text":" @dev Returns the multiplication of two unsigned integers, with an success flag (no overflow)."},"id":5031,"implemented":true,"kind":"function","modifiers":[],"name":"tryMul","nameLocation":"1273:6:29","nodeType":"FunctionDefinition","parameters":{"id":4995,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4992,"mutability":"mutable","name":"a","nameLocation":"1288:1:29","nodeType":"VariableDeclaration","scope":5031,"src":"1280:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4991,"name":"uint256","nodeType":"ElementaryTypeName","src":"1280:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4994,"mutability":"mutable","name":"b","nameLocation":"1299:1:29","nodeType":"VariableDeclaration","scope":5031,"src":"1291:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4993,"name":"uint256","nodeType":"ElementaryTypeName","src":"1291:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1279:22:29"},"returnParameters":{"id":5000,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4997,"mutability":"mutable","name":"success","nameLocation":"1330:7:29","nodeType":"VariableDeclaration","scope":5031,"src":"1325:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4996,"name":"bool","nodeType":"ElementaryTypeName","src":"1325:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4999,"mutability":"mutable","name":"result","nameLocation":"1347:6:29","nodeType":"VariableDeclaration","scope":5031,"src":"1339:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4998,"name":"uint256","nodeType":"ElementaryTypeName","src":"1339:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1324:30:29"},"scope":6523,"src":"1264:508:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5058,"nodeType":"Block","src":"1987:114:29","statements":[{"id":5057,"nodeType":"UncheckedBlock","src":"1997:98:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5043,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5036,"src":"2025:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5044,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2030:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2025:6:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5050,"nodeType":"IfStatement","src":"2021:29:29","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":5046,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2041:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":5047,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2048:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":5048,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2040:10:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":5042,"id":5049,"nodeType":"Return","src":"2033:17:29"}},{"expression":{"components":[{"hexValue":"74727565","id":5051,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2072:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5052,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5034,"src":"2078:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5053,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5036,"src":"2082:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2078:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5055,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2071:13:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":5042,"id":5056,"nodeType":"Return","src":"2064:20:29"}]}]},"documentation":{"id":5032,"nodeType":"StructuredDocumentation","src":"1778:113:29","text":" @dev Returns the division of two unsigned integers, with a success flag (no division by zero)."},"id":5059,"implemented":true,"kind":"function","modifiers":[],"name":"tryDiv","nameLocation":"1905:6:29","nodeType":"FunctionDefinition","parameters":{"id":5037,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5034,"mutability":"mutable","name":"a","nameLocation":"1920:1:29","nodeType":"VariableDeclaration","scope":5059,"src":"1912:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5033,"name":"uint256","nodeType":"ElementaryTypeName","src":"1912:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5036,"mutability":"mutable","name":"b","nameLocation":"1931:1:29","nodeType":"VariableDeclaration","scope":5059,"src":"1923:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5035,"name":"uint256","nodeType":"ElementaryTypeName","src":"1923:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1911:22:29"},"returnParameters":{"id":5042,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5039,"mutability":"mutable","name":"success","nameLocation":"1962:7:29","nodeType":"VariableDeclaration","scope":5059,"src":"1957:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5038,"name":"bool","nodeType":"ElementaryTypeName","src":"1957:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5041,"mutability":"mutable","name":"result","nameLocation":"1979:6:29","nodeType":"VariableDeclaration","scope":5059,"src":"1971:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5040,"name":"uint256","nodeType":"ElementaryTypeName","src":"1971:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1956:30:29"},"scope":6523,"src":"1896:205:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5086,"nodeType":"Block","src":"2326:114:29","statements":[{"id":5085,"nodeType":"UncheckedBlock","src":"2336:98:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5071,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5064,"src":"2364:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5072,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2369:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2364:6:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5078,"nodeType":"IfStatement","src":"2360:29:29","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":5074,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2380:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":5075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2387:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":5076,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2379:10:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":5070,"id":5077,"nodeType":"Return","src":"2372:17:29"}},{"expression":{"components":[{"hexValue":"74727565","id":5079,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2411:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5080,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5062,"src":"2417:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"id":5081,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5064,"src":"2421:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2417:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5083,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2410:13:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":5070,"id":5084,"nodeType":"Return","src":"2403:20:29"}]}]},"documentation":{"id":5060,"nodeType":"StructuredDocumentation","src":"2107:123:29","text":" @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero)."},"id":5087,"implemented":true,"kind":"function","modifiers":[],"name":"tryMod","nameLocation":"2244:6:29","nodeType":"FunctionDefinition","parameters":{"id":5065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5062,"mutability":"mutable","name":"a","nameLocation":"2259:1:29","nodeType":"VariableDeclaration","scope":5087,"src":"2251:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5061,"name":"uint256","nodeType":"ElementaryTypeName","src":"2251:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5064,"mutability":"mutable","name":"b","nameLocation":"2270:1:29","nodeType":"VariableDeclaration","scope":5087,"src":"2262:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5063,"name":"uint256","nodeType":"ElementaryTypeName","src":"2262:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2250:22:29"},"returnParameters":{"id":5070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5067,"mutability":"mutable","name":"success","nameLocation":"2301:7:29","nodeType":"VariableDeclaration","scope":5087,"src":"2296:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5066,"name":"bool","nodeType":"ElementaryTypeName","src":"2296:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5069,"mutability":"mutable","name":"result","nameLocation":"2318:6:29","nodeType":"VariableDeclaration","scope":5087,"src":"2310:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5068,"name":"uint256","nodeType":"ElementaryTypeName","src":"2310:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2295:30:29"},"scope":6523,"src":"2235:205:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5113,"nodeType":"Block","src":"2912:207:29","statements":[{"id":5112,"nodeType":"UncheckedBlock","src":"2922:191:29","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5099,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5094,"src":"3060:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5102,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5100,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5092,"src":"3066:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":5101,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5094,"src":"3070:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3066:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5103,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3065:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":5106,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5090,"src":"3091:9:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5104,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"3075:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":5105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3084:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"3075:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5107,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3075:26:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3065:36:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5109,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3064:38:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3060:42:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5098,"id":5111,"nodeType":"Return","src":"3053:49:29"}]}]},"documentation":{"id":5088,"nodeType":"StructuredDocumentation","src":"2446:374:29","text":" @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n one branch when needed, making this function more expensive."},"id":5114,"implemented":true,"kind":"function","modifiers":[],"name":"ternary","nameLocation":"2834:7:29","nodeType":"FunctionDefinition","parameters":{"id":5095,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5090,"mutability":"mutable","name":"condition","nameLocation":"2847:9:29","nodeType":"VariableDeclaration","scope":5114,"src":"2842:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5089,"name":"bool","nodeType":"ElementaryTypeName","src":"2842:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5092,"mutability":"mutable","name":"a","nameLocation":"2866:1:29","nodeType":"VariableDeclaration","scope":5114,"src":"2858:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5091,"name":"uint256","nodeType":"ElementaryTypeName","src":"2858:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5094,"mutability":"mutable","name":"b","nameLocation":"2877:1:29","nodeType":"VariableDeclaration","scope":5114,"src":"2869:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5093,"name":"uint256","nodeType":"ElementaryTypeName","src":"2869:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2841:38:29"},"returnParameters":{"id":5098,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5097,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5114,"src":"2903:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5096,"name":"uint256","nodeType":"ElementaryTypeName","src":"2903:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2902:9:29"},"scope":6523,"src":"2825:294:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5132,"nodeType":"Block","src":"3256:44:29","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5127,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5125,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5117,"src":"3281:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":5126,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5119,"src":"3285:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3281:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":5128,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5117,"src":"3288:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5129,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5119,"src":"3291:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5124,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5114,"src":"3273:7:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":5130,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3273:20:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5123,"id":5131,"nodeType":"Return","src":"3266:27:29"}]},"documentation":{"id":5115,"nodeType":"StructuredDocumentation","src":"3125:59:29","text":" @dev Returns the largest of two numbers."},"id":5133,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"3198:3:29","nodeType":"FunctionDefinition","parameters":{"id":5120,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5117,"mutability":"mutable","name":"a","nameLocation":"3210:1:29","nodeType":"VariableDeclaration","scope":5133,"src":"3202:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5116,"name":"uint256","nodeType":"ElementaryTypeName","src":"3202:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5119,"mutability":"mutable","name":"b","nameLocation":"3221:1:29","nodeType":"VariableDeclaration","scope":5133,"src":"3213:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5118,"name":"uint256","nodeType":"ElementaryTypeName","src":"3213:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3201:22:29"},"returnParameters":{"id":5123,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5122,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5133,"src":"3247:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5121,"name":"uint256","nodeType":"ElementaryTypeName","src":"3247:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3246:9:29"},"scope":6523,"src":"3189:111:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5151,"nodeType":"Block","src":"3438:44:29","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5144,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5136,"src":"3463:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":5145,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5138,"src":"3467:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3463:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":5147,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5136,"src":"3470:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5148,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5138,"src":"3473:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5143,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5114,"src":"3455:7:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":5149,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3455:20:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5142,"id":5150,"nodeType":"Return","src":"3448:27:29"}]},"documentation":{"id":5134,"nodeType":"StructuredDocumentation","src":"3306:60:29","text":" @dev Returns the smallest of two numbers."},"id":5152,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"3380:3:29","nodeType":"FunctionDefinition","parameters":{"id":5139,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5136,"mutability":"mutable","name":"a","nameLocation":"3392:1:29","nodeType":"VariableDeclaration","scope":5152,"src":"3384:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5135,"name":"uint256","nodeType":"ElementaryTypeName","src":"3384:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5138,"mutability":"mutable","name":"b","nameLocation":"3403:1:29","nodeType":"VariableDeclaration","scope":5152,"src":"3395:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5137,"name":"uint256","nodeType":"ElementaryTypeName","src":"3395:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3383:22:29"},"returnParameters":{"id":5142,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5141,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5152,"src":"3429:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5140,"name":"uint256","nodeType":"ElementaryTypeName","src":"3429:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3428:9:29"},"scope":6523,"src":"3371:111:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5174,"nodeType":"Block","src":"3666:82:29","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5162,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5155,"src":"3721:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":5163,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5157,"src":"3725:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3721:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5165,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3720:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5168,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5166,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5155,"src":"3731:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":5167,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5157,"src":"3735:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3731:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5169,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3730:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":5170,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3740:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"3730:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3720:21:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5161,"id":5173,"nodeType":"Return","src":"3713:28:29"}]},"documentation":{"id":5153,"nodeType":"StructuredDocumentation","src":"3488:102:29","text":" @dev Returns the average of two numbers. The result is rounded towards\n zero."},"id":5175,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"3604:7:29","nodeType":"FunctionDefinition","parameters":{"id":5158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5155,"mutability":"mutable","name":"a","nameLocation":"3620:1:29","nodeType":"VariableDeclaration","scope":5175,"src":"3612:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5154,"name":"uint256","nodeType":"ElementaryTypeName","src":"3612:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5157,"mutability":"mutable","name":"b","nameLocation":"3631:1:29","nodeType":"VariableDeclaration","scope":5175,"src":"3623:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5156,"name":"uint256","nodeType":"ElementaryTypeName","src":"3623:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3611:22:29"},"returnParameters":{"id":5161,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5160,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5175,"src":"3657:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5159,"name":"uint256","nodeType":"ElementaryTypeName","src":"3657:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3656:9:29"},"scope":6523,"src":"3595:153:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5215,"nodeType":"Block","src":"4040:633:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5185,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5180,"src":"4054:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5186,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4059:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4054:6:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5196,"nodeType":"IfStatement","src":"4050:150:29","trueBody":{"id":5195,"nodeType":"Block","src":"4062:138:29","statements":[{"expression":{"arguments":[{"expression":{"id":5191,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3259,"src":"4166:5:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$3259_$","typeString":"type(library Panic)"}},"id":5192,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4172:16:29","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":3226,"src":"4166:22:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5188,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3259,"src":"4154:5:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$3259_$","typeString":"type(library Panic)"}},"id":5190,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4160:5:29","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":3258,"src":"4154:11:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":5193,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4154:35:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5194,"nodeType":"ExpressionStatement","src":"4154:35:29"}]}},{"id":5214,"nodeType":"UncheckedBlock","src":"4583:84:29","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5199,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5178,"src":"4630:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":5200,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4634:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4630:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5197,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"4614:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":5198,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4623:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"4614:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5202,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4614:22:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5205,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5203,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5178,"src":"4641:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":5204,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4645:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4641:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5206,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4640:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5207,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5180,"src":"4650:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4640:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":5209,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4654:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4640:15:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5211,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4639:17:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4614:42:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5184,"id":5213,"nodeType":"Return","src":"4607:49:29"}]}]},"documentation":{"id":5176,"nodeType":"StructuredDocumentation","src":"3754:210:29","text":" @dev Returns the ceiling of the division of two numbers.\n This differs from standard division with `/` in that it rounds towards infinity instead\n of rounding towards zero."},"id":5216,"implemented":true,"kind":"function","modifiers":[],"name":"ceilDiv","nameLocation":"3978:7:29","nodeType":"FunctionDefinition","parameters":{"id":5181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5178,"mutability":"mutable","name":"a","nameLocation":"3994:1:29","nodeType":"VariableDeclaration","scope":5216,"src":"3986:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5177,"name":"uint256","nodeType":"ElementaryTypeName","src":"3986:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5180,"mutability":"mutable","name":"b","nameLocation":"4005:1:29","nodeType":"VariableDeclaration","scope":5216,"src":"3997:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5179,"name":"uint256","nodeType":"ElementaryTypeName","src":"3997:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3985:22:29"},"returnParameters":{"id":5184,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5183,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5216,"src":"4031:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5182,"name":"uint256","nodeType":"ElementaryTypeName","src":"4031:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4030:9:29"},"scope":6523,"src":"3969:704:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5352,"nodeType":"Block","src":"5094:4128:29","statements":[{"id":5351,"nodeType":"UncheckedBlock","src":"5104:4112:29","statements":[{"assignments":[5229],"declarations":[{"constant":false,"id":5229,"mutability":"mutable","name":"prod0","nameLocation":"5441:5:29","nodeType":"VariableDeclaration","scope":5351,"src":"5433:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5228,"name":"uint256","nodeType":"ElementaryTypeName","src":"5433:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5233,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5230,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5219,"src":"5449:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5231,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5221,"src":"5453:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5449:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5433:21:29"},{"assignments":[5235],"declarations":[{"constant":false,"id":5235,"mutability":"mutable","name":"prod1","nameLocation":"5521:5:29","nodeType":"VariableDeclaration","scope":5351,"src":"5513:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5234,"name":"uint256","nodeType":"ElementaryTypeName","src":"5513:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5236,"nodeType":"VariableDeclarationStatement","src":"5513:13:29"},{"AST":{"nativeSrc":"5593:122:29","nodeType":"YulBlock","src":"5593:122:29","statements":[{"nativeSrc":"5611:30:29","nodeType":"YulVariableDeclaration","src":"5611:30:29","value":{"arguments":[{"name":"x","nativeSrc":"5628:1:29","nodeType":"YulIdentifier","src":"5628:1:29"},{"name":"y","nativeSrc":"5631:1:29","nodeType":"YulIdentifier","src":"5631:1:29"},{"arguments":[{"kind":"number","nativeSrc":"5638:1:29","nodeType":"YulLiteral","src":"5638:1:29","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5634:3:29","nodeType":"YulIdentifier","src":"5634:3:29"},"nativeSrc":"5634:6:29","nodeType":"YulFunctionCall","src":"5634:6:29"}],"functionName":{"name":"mulmod","nativeSrc":"5621:6:29","nodeType":"YulIdentifier","src":"5621:6:29"},"nativeSrc":"5621:20:29","nodeType":"YulFunctionCall","src":"5621:20:29"},"variables":[{"name":"mm","nativeSrc":"5615:2:29","nodeType":"YulTypedName","src":"5615:2:29","type":""}]},{"nativeSrc":"5658:43:29","nodeType":"YulAssignment","src":"5658:43:29","value":{"arguments":[{"arguments":[{"name":"mm","nativeSrc":"5675:2:29","nodeType":"YulIdentifier","src":"5675:2:29"},{"name":"prod0","nativeSrc":"5679:5:29","nodeType":"YulIdentifier","src":"5679:5:29"}],"functionName":{"name":"sub","nativeSrc":"5671:3:29","nodeType":"YulIdentifier","src":"5671:3:29"},"nativeSrc":"5671:14:29","nodeType":"YulFunctionCall","src":"5671:14:29"},{"arguments":[{"name":"mm","nativeSrc":"5690:2:29","nodeType":"YulIdentifier","src":"5690:2:29"},{"name":"prod0","nativeSrc":"5694:5:29","nodeType":"YulIdentifier","src":"5694:5:29"}],"functionName":{"name":"lt","nativeSrc":"5687:2:29","nodeType":"YulIdentifier","src":"5687:2:29"},"nativeSrc":"5687:13:29","nodeType":"YulFunctionCall","src":"5687:13:29"}],"functionName":{"name":"sub","nativeSrc":"5667:3:29","nodeType":"YulIdentifier","src":"5667:3:29"},"nativeSrc":"5667:34:29","nodeType":"YulFunctionCall","src":"5667:34:29"},"variableNames":[{"name":"prod1","nativeSrc":"5658:5:29","nodeType":"YulIdentifier","src":"5658:5:29"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":5229,"isOffset":false,"isSlot":false,"src":"5679:5:29","valueSize":1},{"declaration":5229,"isOffset":false,"isSlot":false,"src":"5694:5:29","valueSize":1},{"declaration":5235,"isOffset":false,"isSlot":false,"src":"5658:5:29","valueSize":1},{"declaration":5219,"isOffset":false,"isSlot":false,"src":"5628:1:29","valueSize":1},{"declaration":5221,"isOffset":false,"isSlot":false,"src":"5631:1:29","valueSize":1}],"id":5237,"nodeType":"InlineAssembly","src":"5584:131:29"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5240,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5238,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5235,"src":"5796:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5239,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5805:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5796:10:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5246,"nodeType":"IfStatement","src":"5792:368:29","trueBody":{"id":5245,"nodeType":"Block","src":"5808:352:29","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5241,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5229,"src":"6126:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5242,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5223,"src":"6134:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6126:19:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5227,"id":5244,"nodeType":"Return","src":"6119:26:29"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5249,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5247,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5223,"src":"6270:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":5248,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5235,"src":"6285:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6270:20:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5265,"nodeType":"IfStatement","src":"6266:143:29","trueBody":{"id":5264,"nodeType":"Block","src":"6292:117:29","statements":[{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5256,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5254,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5223,"src":"6330:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5255,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6345:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6330:16:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"expression":{"id":5257,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3259,"src":"6348:5:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$3259_$","typeString":"type(library Panic)"}},"id":5258,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6354:16:29","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":3226,"src":"6348:22:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":5259,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3259,"src":"6372:5:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$3259_$","typeString":"type(library Panic)"}},"id":5260,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6378:14:29","memberName":"UNDER_OVERFLOW","nodeType":"MemberAccess","referencedDeclaration":3222,"src":"6372:20:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5253,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5114,"src":"6322:7:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":5261,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6322:71:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5250,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3259,"src":"6310:5:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$3259_$","typeString":"type(library Panic)"}},"id":5252,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6316:5:29","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":3258,"src":"6310:11:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":5262,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6310:84:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5263,"nodeType":"ExpressionStatement","src":"6310:84:29"}]}},{"assignments":[5267],"declarations":[{"constant":false,"id":5267,"mutability":"mutable","name":"remainder","nameLocation":"6672:9:29","nodeType":"VariableDeclaration","scope":5351,"src":"6664:17:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5266,"name":"uint256","nodeType":"ElementaryTypeName","src":"6664:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5268,"nodeType":"VariableDeclarationStatement","src":"6664:17:29"},{"AST":{"nativeSrc":"6704:291:29","nodeType":"YulBlock","src":"6704:291:29","statements":[{"nativeSrc":"6773:38:29","nodeType":"YulAssignment","src":"6773:38:29","value":{"arguments":[{"name":"x","nativeSrc":"6793:1:29","nodeType":"YulIdentifier","src":"6793:1:29"},{"name":"y","nativeSrc":"6796:1:29","nodeType":"YulIdentifier","src":"6796:1:29"},{"name":"denominator","nativeSrc":"6799:11:29","nodeType":"YulIdentifier","src":"6799:11:29"}],"functionName":{"name":"mulmod","nativeSrc":"6786:6:29","nodeType":"YulIdentifier","src":"6786:6:29"},"nativeSrc":"6786:25:29","nodeType":"YulFunctionCall","src":"6786:25:29"},"variableNames":[{"name":"remainder","nativeSrc":"6773:9:29","nodeType":"YulIdentifier","src":"6773:9:29"}]},{"nativeSrc":"6893:41:29","nodeType":"YulAssignment","src":"6893:41:29","value":{"arguments":[{"name":"prod1","nativeSrc":"6906:5:29","nodeType":"YulIdentifier","src":"6906:5:29"},{"arguments":[{"name":"remainder","nativeSrc":"6916:9:29","nodeType":"YulIdentifier","src":"6916:9:29"},{"name":"prod0","nativeSrc":"6927:5:29","nodeType":"YulIdentifier","src":"6927:5:29"}],"functionName":{"name":"gt","nativeSrc":"6913:2:29","nodeType":"YulIdentifier","src":"6913:2:29"},"nativeSrc":"6913:20:29","nodeType":"YulFunctionCall","src":"6913:20:29"}],"functionName":{"name":"sub","nativeSrc":"6902:3:29","nodeType":"YulIdentifier","src":"6902:3:29"},"nativeSrc":"6902:32:29","nodeType":"YulFunctionCall","src":"6902:32:29"},"variableNames":[{"name":"prod1","nativeSrc":"6893:5:29","nodeType":"YulIdentifier","src":"6893:5:29"}]},{"nativeSrc":"6951:30:29","nodeType":"YulAssignment","src":"6951:30:29","value":{"arguments":[{"name":"prod0","nativeSrc":"6964:5:29","nodeType":"YulIdentifier","src":"6964:5:29"},{"name":"remainder","nativeSrc":"6971:9:29","nodeType":"YulIdentifier","src":"6971:9:29"}],"functionName":{"name":"sub","nativeSrc":"6960:3:29","nodeType":"YulIdentifier","src":"6960:3:29"},"nativeSrc":"6960:21:29","nodeType":"YulFunctionCall","src":"6960:21:29"},"variableNames":[{"name":"prod0","nativeSrc":"6951:5:29","nodeType":"YulIdentifier","src":"6951:5:29"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":5223,"isOffset":false,"isSlot":false,"src":"6799:11:29","valueSize":1},{"declaration":5229,"isOffset":false,"isSlot":false,"src":"6927:5:29","valueSize":1},{"declaration":5229,"isOffset":false,"isSlot":false,"src":"6951:5:29","valueSize":1},{"declaration":5229,"isOffset":false,"isSlot":false,"src":"6964:5:29","valueSize":1},{"declaration":5235,"isOffset":false,"isSlot":false,"src":"6893:5:29","valueSize":1},{"declaration":5235,"isOffset":false,"isSlot":false,"src":"6906:5:29","valueSize":1},{"declaration":5267,"isOffset":false,"isSlot":false,"src":"6773:9:29","valueSize":1},{"declaration":5267,"isOffset":false,"isSlot":false,"src":"6916:9:29","valueSize":1},{"declaration":5267,"isOffset":false,"isSlot":false,"src":"6971:9:29","valueSize":1},{"declaration":5219,"isOffset":false,"isSlot":false,"src":"6793:1:29","valueSize":1},{"declaration":5221,"isOffset":false,"isSlot":false,"src":"6796:1:29","valueSize":1}],"id":5269,"nodeType":"InlineAssembly","src":"6695:300:29"},{"assignments":[5271],"declarations":[{"constant":false,"id":5271,"mutability":"mutable","name":"twos","nameLocation":"7207:4:29","nodeType":"VariableDeclaration","scope":5351,"src":"7199:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5270,"name":"uint256","nodeType":"ElementaryTypeName","src":"7199:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5278,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5272,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5223,"src":"7214:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"30","id":5273,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7229:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":5274,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5223,"src":"7233:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7229:15:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5276,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7228:17:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7214:31:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7199:46:29"},{"AST":{"nativeSrc":"7268:366:29","nodeType":"YulBlock","src":"7268:366:29","statements":[{"nativeSrc":"7333:37:29","nodeType":"YulAssignment","src":"7333:37:29","value":{"arguments":[{"name":"denominator","nativeSrc":"7352:11:29","nodeType":"YulIdentifier","src":"7352:11:29"},{"name":"twos","nativeSrc":"7365:4:29","nodeType":"YulIdentifier","src":"7365:4:29"}],"functionName":{"name":"div","nativeSrc":"7348:3:29","nodeType":"YulIdentifier","src":"7348:3:29"},"nativeSrc":"7348:22:29","nodeType":"YulFunctionCall","src":"7348:22:29"},"variableNames":[{"name":"denominator","nativeSrc":"7333:11:29","nodeType":"YulIdentifier","src":"7333:11:29"}]},{"nativeSrc":"7437:25:29","nodeType":"YulAssignment","src":"7437:25:29","value":{"arguments":[{"name":"prod0","nativeSrc":"7450:5:29","nodeType":"YulIdentifier","src":"7450:5:29"},{"name":"twos","nativeSrc":"7457:4:29","nodeType":"YulIdentifier","src":"7457:4:29"}],"functionName":{"name":"div","nativeSrc":"7446:3:29","nodeType":"YulIdentifier","src":"7446:3:29"},"nativeSrc":"7446:16:29","nodeType":"YulFunctionCall","src":"7446:16:29"},"variableNames":[{"name":"prod0","nativeSrc":"7437:5:29","nodeType":"YulIdentifier","src":"7437:5:29"}]},{"nativeSrc":"7581:39:29","nodeType":"YulAssignment","src":"7581:39:29","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7601:1:29","nodeType":"YulLiteral","src":"7601:1:29","type":"","value":"0"},{"name":"twos","nativeSrc":"7604:4:29","nodeType":"YulIdentifier","src":"7604:4:29"}],"functionName":{"name":"sub","nativeSrc":"7597:3:29","nodeType":"YulIdentifier","src":"7597:3:29"},"nativeSrc":"7597:12:29","nodeType":"YulFunctionCall","src":"7597:12:29"},{"name":"twos","nativeSrc":"7611:4:29","nodeType":"YulIdentifier","src":"7611:4:29"}],"functionName":{"name":"div","nativeSrc":"7593:3:29","nodeType":"YulIdentifier","src":"7593:3:29"},"nativeSrc":"7593:23:29","nodeType":"YulFunctionCall","src":"7593:23:29"},{"kind":"number","nativeSrc":"7618:1:29","nodeType":"YulLiteral","src":"7618:1:29","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"7589:3:29","nodeType":"YulIdentifier","src":"7589:3:29"},"nativeSrc":"7589:31:29","nodeType":"YulFunctionCall","src":"7589:31:29"},"variableNames":[{"name":"twos","nativeSrc":"7581:4:29","nodeType":"YulIdentifier","src":"7581:4:29"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":5223,"isOffset":false,"isSlot":false,"src":"7333:11:29","valueSize":1},{"declaration":5223,"isOffset":false,"isSlot":false,"src":"7352:11:29","valueSize":1},{"declaration":5229,"isOffset":false,"isSlot":false,"src":"7437:5:29","valueSize":1},{"declaration":5229,"isOffset":false,"isSlot":false,"src":"7450:5:29","valueSize":1},{"declaration":5271,"isOffset":false,"isSlot":false,"src":"7365:4:29","valueSize":1},{"declaration":5271,"isOffset":false,"isSlot":false,"src":"7457:4:29","valueSize":1},{"declaration":5271,"isOffset":false,"isSlot":false,"src":"7581:4:29","valueSize":1},{"declaration":5271,"isOffset":false,"isSlot":false,"src":"7604:4:29","valueSize":1},{"declaration":5271,"isOffset":false,"isSlot":false,"src":"7611:4:29","valueSize":1}],"id":5279,"nodeType":"InlineAssembly","src":"7259:375:29"},{"expression":{"id":5284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5280,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5229,"src":"7700:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5283,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5281,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5235,"src":"7709:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5282,"name":"twos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5271,"src":"7717:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7709:12:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7700:21:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5285,"nodeType":"ExpressionStatement","src":"7700:21:29"},{"assignments":[5287],"declarations":[{"constant":false,"id":5287,"mutability":"mutable","name":"inverse","nameLocation":"8064:7:29","nodeType":"VariableDeclaration","scope":5351,"src":"8056:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5286,"name":"uint256","nodeType":"ElementaryTypeName","src":"8056:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5294,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":5288,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8075:1:29","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5289,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5223,"src":"8079:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8075:15:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5291,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8074:17:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"hexValue":"32","id":5292,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8094:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"8074:21:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8056:39:29"},{"expression":{"id":5301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5295,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5287,"src":"8312:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":5296,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8323:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5297,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5223,"src":"8327:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5298,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5287,"src":"8341:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8327:21:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8323:25:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8312:36:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5302,"nodeType":"ExpressionStatement","src":"8312:36:29"},{"expression":{"id":5309,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5303,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5287,"src":"8382:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5308,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":5304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8393:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5305,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5223,"src":"8397:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5306,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5287,"src":"8411:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8397:21:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8393:25:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8382:36:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5310,"nodeType":"ExpressionStatement","src":"8382:36:29"},{"expression":{"id":5317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5311,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5287,"src":"8454:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":5312,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8465:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5313,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5223,"src":"8469:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5314,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5287,"src":"8483:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8469:21:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8465:25:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8454:36:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5318,"nodeType":"ExpressionStatement","src":"8454:36:29"},{"expression":{"id":5325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5319,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5287,"src":"8525:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":5320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8536:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5321,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5223,"src":"8540:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5322,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5287,"src":"8554:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8540:21:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8536:25:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8525:36:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5326,"nodeType":"ExpressionStatement","src":"8525:36:29"},{"expression":{"id":5333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5327,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5287,"src":"8598:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":5328,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8609:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5329,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5223,"src":"8613:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5330,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5287,"src":"8627:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8613:21:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8609:25:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8598:36:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5334,"nodeType":"ExpressionStatement","src":"8598:36:29"},{"expression":{"id":5341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5335,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5287,"src":"8672:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":5336,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8683:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5337,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5223,"src":"8687:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5338,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5287,"src":"8701:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8687:21:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8683:25:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8672:36:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5342,"nodeType":"ExpressionStatement","src":"8672:36:29"},{"expression":{"id":5347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5343,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5226,"src":"9154:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5346,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5344,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5229,"src":"9163:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5345,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5287,"src":"9171:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9163:15:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9154:24:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5348,"nodeType":"ExpressionStatement","src":"9154:24:29"},{"expression":{"id":5349,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5226,"src":"9199:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5227,"id":5350,"nodeType":"Return","src":"9192:13:29"}]}]},"documentation":{"id":5217,"nodeType":"StructuredDocumentation","src":"4679:312:29","text":" @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or\n denominator == 0.\n Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by\n Uniswap Labs also under MIT license."},"id":5353,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"5005:6:29","nodeType":"FunctionDefinition","parameters":{"id":5224,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5219,"mutability":"mutable","name":"x","nameLocation":"5020:1:29","nodeType":"VariableDeclaration","scope":5353,"src":"5012:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5218,"name":"uint256","nodeType":"ElementaryTypeName","src":"5012:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5221,"mutability":"mutable","name":"y","nameLocation":"5031:1:29","nodeType":"VariableDeclaration","scope":5353,"src":"5023:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5220,"name":"uint256","nodeType":"ElementaryTypeName","src":"5023:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5223,"mutability":"mutable","name":"denominator","nameLocation":"5042:11:29","nodeType":"VariableDeclaration","scope":5353,"src":"5034:19:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5222,"name":"uint256","nodeType":"ElementaryTypeName","src":"5034:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5011:43:29"},"returnParameters":{"id":5227,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5226,"mutability":"mutable","name":"result","nameLocation":"5086:6:29","nodeType":"VariableDeclaration","scope":5353,"src":"5078:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5225,"name":"uint256","nodeType":"ElementaryTypeName","src":"5078:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5077:16:29"},"scope":6523,"src":"4996:4226:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5389,"nodeType":"Block","src":"9461:128:29","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":5369,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5356,"src":"9485:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5370,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5358,"src":"9488:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5371,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5360,"src":"9491:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5368,"name":"mulDiv","nodeType":"Identifier","overloadedDeclarations":[5353,5390],"referencedDeclaration":5353,"src":"9478:6:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":5372,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9478:25:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":5376,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5363,"src":"9539:8:29","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}],"id":5375,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6522,"src":"9522:16:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$4929_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":5377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9522:26:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":5379,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5356,"src":"9559:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5380,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5358,"src":"9562:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5381,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5360,"src":"9565:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5378,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"9552:6:29","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":5382,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9552:25:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":5383,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9580:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9552:29:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9522:59:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5373,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"9506:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":5374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9515:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"9506:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5386,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9506:76:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9478:104:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5367,"id":5388,"nodeType":"Return","src":"9471:111:29"}]},"documentation":{"id":5354,"nodeType":"StructuredDocumentation","src":"9228:118:29","text":" @dev Calculates x * y / denominator with full precision, following the selected rounding direction."},"id":5390,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"9360:6:29","nodeType":"FunctionDefinition","parameters":{"id":5364,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5356,"mutability":"mutable","name":"x","nameLocation":"9375:1:29","nodeType":"VariableDeclaration","scope":5390,"src":"9367:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5355,"name":"uint256","nodeType":"ElementaryTypeName","src":"9367:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5358,"mutability":"mutable","name":"y","nameLocation":"9386:1:29","nodeType":"VariableDeclaration","scope":5390,"src":"9378:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5357,"name":"uint256","nodeType":"ElementaryTypeName","src":"9378:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5360,"mutability":"mutable","name":"denominator","nameLocation":"9397:11:29","nodeType":"VariableDeclaration","scope":5390,"src":"9389:19:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5359,"name":"uint256","nodeType":"ElementaryTypeName","src":"9389:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5363,"mutability":"mutable","name":"rounding","nameLocation":"9419:8:29","nodeType":"VariableDeclaration","scope":5390,"src":"9410:17:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"},"typeName":{"id":5362,"nodeType":"UserDefinedTypeName","pathNode":{"id":5361,"name":"Rounding","nameLocations":["9410:8:29"],"nodeType":"IdentifierPath","referencedDeclaration":4929,"src":"9410:8:29"},"referencedDeclaration":4929,"src":"9410:8:29","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"9366:62:29"},"returnParameters":{"id":5367,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5366,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5390,"src":"9452:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5365,"name":"uint256","nodeType":"ElementaryTypeName","src":"9452:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9451:9:29"},"scope":6523,"src":"9351:238:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5486,"nodeType":"Block","src":"10223:1849:29","statements":[{"id":5485,"nodeType":"UncheckedBlock","src":"10233:1833:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5400,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5395,"src":"10261:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5401,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10266:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10261:6:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5405,"nodeType":"IfStatement","src":"10257:20:29","trueBody":{"expression":{"hexValue":"30","id":5403,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10276:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":5399,"id":5404,"nodeType":"Return","src":"10269:8:29"}},{"assignments":[5407],"declarations":[{"constant":false,"id":5407,"mutability":"mutable","name":"remainder","nameLocation":"10756:9:29","nodeType":"VariableDeclaration","scope":5485,"src":"10748:17:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5406,"name":"uint256","nodeType":"ElementaryTypeName","src":"10748:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5411,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5408,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5393,"src":"10768:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"id":5409,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5395,"src":"10772:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10768:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10748:25:29"},{"assignments":[5413],"declarations":[{"constant":false,"id":5413,"mutability":"mutable","name":"gcd","nameLocation":"10795:3:29","nodeType":"VariableDeclaration","scope":5485,"src":"10787:11:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5412,"name":"uint256","nodeType":"ElementaryTypeName","src":"10787:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5415,"initialValue":{"id":5414,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5395,"src":"10801:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10787:15:29"},{"assignments":[5417],"declarations":[{"constant":false,"id":5417,"mutability":"mutable","name":"x","nameLocation":"10945:1:29","nodeType":"VariableDeclaration","scope":5485,"src":"10938:8:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":5416,"name":"int256","nodeType":"ElementaryTypeName","src":"10938:6:29","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":5419,"initialValue":{"hexValue":"30","id":5418,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10949:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"10938:12:29"},{"assignments":[5421],"declarations":[{"constant":false,"id":5421,"mutability":"mutable","name":"y","nameLocation":"10971:1:29","nodeType":"VariableDeclaration","scope":5485,"src":"10964:8:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":5420,"name":"int256","nodeType":"ElementaryTypeName","src":"10964:6:29","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":5423,"initialValue":{"hexValue":"31","id":5422,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10975:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"10964:12:29"},{"body":{"id":5460,"nodeType":"Block","src":"11014:882:29","statements":[{"assignments":[5428],"declarations":[{"constant":false,"id":5428,"mutability":"mutable","name":"quotient","nameLocation":"11040:8:29","nodeType":"VariableDeclaration","scope":5460,"src":"11032:16:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5427,"name":"uint256","nodeType":"ElementaryTypeName","src":"11032:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5432,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5429,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5413,"src":"11051:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5430,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5407,"src":"11057:9:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11051:15:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11032:34:29"},{"expression":{"id":5443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":5433,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5413,"src":"11086:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5434,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5407,"src":"11091:9:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5435,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"11085:16:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":5436,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5407,"src":"11191:9:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5437,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5413,"src":"11436:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5438,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5407,"src":"11442:9:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5439,"name":"quotient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5428,"src":"11454:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11442:20:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11436:26:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5442,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11104:376:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"src":"11085:395:29","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5444,"nodeType":"ExpressionStatement","src":"11085:395:29"},{"expression":{"id":5458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":5445,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5417,"src":"11500:1:29","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":5446,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5421,"src":"11503:1:29","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":5447,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"11499:6:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_int256_$_t_int256_$","typeString":"tuple(int256,int256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":5448,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5421,"src":"11585:1:29","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":5456,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5449,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5417,"src":"11839:1:29","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":5455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5450,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5421,"src":"11843:1:29","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":5453,"name":"quotient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5428,"src":"11854:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5452,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11847:6:29","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":5451,"name":"int256","nodeType":"ElementaryTypeName","src":"11847:6:29","typeDescriptions":{}}},"id":5454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11847:16:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"11843:20:29","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"11839:24:29","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":5457,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11508:373:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_int256_$_t_int256_$","typeString":"tuple(int256,int256)"}},"src":"11499:382:29","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5459,"nodeType":"ExpressionStatement","src":"11499:382:29"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5424,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5407,"src":"10998:9:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":5425,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11011:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10998:14:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5461,"nodeType":"WhileStatement","src":"10991:905:29"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5462,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5413,"src":"11914:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"31","id":5463,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11921:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11914:8:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5467,"nodeType":"IfStatement","src":"11910:22:29","trueBody":{"expression":{"hexValue":"30","id":5465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11931:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":5399,"id":5466,"nodeType":"Return","src":"11924:8:29"}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":5471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5469,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5417,"src":"11983:1:29","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":5470,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11987:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11983:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5472,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5395,"src":"11990:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":5476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"12002:2:29","subExpression":{"id":5475,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5417,"src":"12003:1:29","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":5474,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11994:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5473,"name":"uint256","nodeType":"ElementaryTypeName","src":"11994:7:29","typeDescriptions":{}}},"id":5477,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11994:11:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11990:15:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":5481,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5417,"src":"12015:1:29","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":5480,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12007:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5479,"name":"uint256","nodeType":"ElementaryTypeName","src":"12007:7:29","typeDescriptions":{}}},"id":5482,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12007:10:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5468,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5114,"src":"11975:7:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":5483,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11975:43:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5399,"id":5484,"nodeType":"Return","src":"11968:50:29"}]}]},"documentation":{"id":5391,"nodeType":"StructuredDocumentation","src":"9595:553:29","text":" @dev Calculate the modular multiplicative inverse of a number in Z/nZ.\n If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.\n If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.\n If the input value is not inversible, 0 is returned.\n NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the\n inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}."},"id":5487,"implemented":true,"kind":"function","modifiers":[],"name":"invMod","nameLocation":"10162:6:29","nodeType":"FunctionDefinition","parameters":{"id":5396,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5393,"mutability":"mutable","name":"a","nameLocation":"10177:1:29","nodeType":"VariableDeclaration","scope":5487,"src":"10169:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5392,"name":"uint256","nodeType":"ElementaryTypeName","src":"10169:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5395,"mutability":"mutable","name":"n","nameLocation":"10188:1:29","nodeType":"VariableDeclaration","scope":5487,"src":"10180:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5394,"name":"uint256","nodeType":"ElementaryTypeName","src":"10180:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10168:22:29"},"returnParameters":{"id":5399,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5398,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5487,"src":"10214:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5397,"name":"uint256","nodeType":"ElementaryTypeName","src":"10214:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10213:9:29"},"scope":6523,"src":"10153:1919:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5507,"nodeType":"Block","src":"12672:82:29","statements":[{"id":5506,"nodeType":"UncheckedBlock","src":"12682:66:29","statements":[{"expression":{"arguments":[{"id":5499,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5490,"src":"12725:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5502,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5500,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5492,"src":"12728:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"32","id":5501,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12732:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"12728:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5503,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5492,"src":"12735:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5497,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6523,"src":"12713:4:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$6523_$","typeString":"type(library Math)"}},"id":5498,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12718:6:29","memberName":"modExp","nodeType":"MemberAccess","referencedDeclaration":5544,"src":"12713:11:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) view returns (uint256)"}},"id":5504,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12713:24:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5496,"id":5505,"nodeType":"Return","src":"12706:31:29"}]}]},"documentation":{"id":5488,"nodeType":"StructuredDocumentation","src":"12078:514:29","text":" @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.\n From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is\n prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that\n `a**(p-2)` is the modular multiplicative inverse of a in Fp.\n NOTE: this function does NOT check that `p` is a prime greater than `2`."},"id":5508,"implemented":true,"kind":"function","modifiers":[],"name":"invModPrime","nameLocation":"12606:11:29","nodeType":"FunctionDefinition","parameters":{"id":5493,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5490,"mutability":"mutable","name":"a","nameLocation":"12626:1:29","nodeType":"VariableDeclaration","scope":5508,"src":"12618:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5489,"name":"uint256","nodeType":"ElementaryTypeName","src":"12618:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5492,"mutability":"mutable","name":"p","nameLocation":"12637:1:29","nodeType":"VariableDeclaration","scope":5508,"src":"12629:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5491,"name":"uint256","nodeType":"ElementaryTypeName","src":"12629:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12617:22:29"},"returnParameters":{"id":5496,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5495,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5508,"src":"12663:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5494,"name":"uint256","nodeType":"ElementaryTypeName","src":"12663:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12662:9:29"},"scope":6523,"src":"12597:157:29","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5543,"nodeType":"Block","src":"13524:174:29","statements":[{"assignments":[5521,5523],"declarations":[{"constant":false,"id":5521,"mutability":"mutable","name":"success","nameLocation":"13540:7:29","nodeType":"VariableDeclaration","scope":5543,"src":"13535:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5520,"name":"bool","nodeType":"ElementaryTypeName","src":"13535:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5523,"mutability":"mutable","name":"result","nameLocation":"13557:6:29","nodeType":"VariableDeclaration","scope":5543,"src":"13549:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5522,"name":"uint256","nodeType":"ElementaryTypeName","src":"13549:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5529,"initialValue":{"arguments":[{"id":5525,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5511,"src":"13577:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5526,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5513,"src":"13580:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5527,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5515,"src":"13583:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5524,"name":"tryModExp","nodeType":"Identifier","overloadedDeclarations":[5568,5650],"referencedDeclaration":5568,"src":"13567:9:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256,uint256) view returns (bool,uint256)"}},"id":5528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13567:18:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"13534:51:29"},{"condition":{"id":5531,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"13599:8:29","subExpression":{"id":5530,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5521,"src":"13600:7:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5540,"nodeType":"IfStatement","src":"13595:74:29","trueBody":{"id":5539,"nodeType":"Block","src":"13609:60:29","statements":[{"expression":{"arguments":[{"expression":{"id":5535,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3259,"src":"13635:5:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$3259_$","typeString":"type(library Panic)"}},"id":5536,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13641:16:29","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":3226,"src":"13635:22:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5532,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3259,"src":"13623:5:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$3259_$","typeString":"type(library Panic)"}},"id":5534,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13629:5:29","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":3258,"src":"13623:11:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":5537,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13623:35:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5538,"nodeType":"ExpressionStatement","src":"13623:35:29"}]}},{"expression":{"id":5541,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5523,"src":"13685:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5519,"id":5542,"nodeType":"Return","src":"13678:13:29"}]},"documentation":{"id":5509,"nodeType":"StructuredDocumentation","src":"12760:678:29","text":" @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)\n Requirements:\n - modulus can't be zero\n - underlying staticcall to precompile must succeed\n IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make\n sure the chain you're using it on supports the precompiled contract for modular exponentiation\n at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,\n the underlying function will succeed given the lack of a revert, but the result may be incorrectly\n interpreted as 0."},"id":5544,"implemented":true,"kind":"function","modifiers":[],"name":"modExp","nameLocation":"13452:6:29","nodeType":"FunctionDefinition","parameters":{"id":5516,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5511,"mutability":"mutable","name":"b","nameLocation":"13467:1:29","nodeType":"VariableDeclaration","scope":5544,"src":"13459:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5510,"name":"uint256","nodeType":"ElementaryTypeName","src":"13459:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5513,"mutability":"mutable","name":"e","nameLocation":"13478:1:29","nodeType":"VariableDeclaration","scope":5544,"src":"13470:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5512,"name":"uint256","nodeType":"ElementaryTypeName","src":"13470:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5515,"mutability":"mutable","name":"m","nameLocation":"13489:1:29","nodeType":"VariableDeclaration","scope":5544,"src":"13481:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5514,"name":"uint256","nodeType":"ElementaryTypeName","src":"13481:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13458:33:29"},"returnParameters":{"id":5519,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5518,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5544,"src":"13515:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5517,"name":"uint256","nodeType":"ElementaryTypeName","src":"13515:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13514:9:29"},"scope":6523,"src":"13443:255:29","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5567,"nodeType":"Block","src":"14552:1493:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5560,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5558,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5551,"src":"14566:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5559,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14571:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14566:6:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5565,"nodeType":"IfStatement","src":"14562:29:29","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":5561,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"14582:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":5562,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14589:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":5563,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"14581:10:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":5557,"id":5564,"nodeType":"Return","src":"14574:17:29"}},{"AST":{"nativeSrc":"14626:1413:29","nodeType":"YulBlock","src":"14626:1413:29","statements":[{"nativeSrc":"14640:22:29","nodeType":"YulVariableDeclaration","src":"14640:22:29","value":{"arguments":[{"kind":"number","nativeSrc":"14657:4:29","nodeType":"YulLiteral","src":"14657:4:29","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"14651:5:29","nodeType":"YulIdentifier","src":"14651:5:29"},"nativeSrc":"14651:11:29","nodeType":"YulFunctionCall","src":"14651:11:29"},"variables":[{"name":"ptr","nativeSrc":"14644:3:29","nodeType":"YulTypedName","src":"14644:3:29","type":""}]},{"expression":{"arguments":[{"name":"ptr","nativeSrc":"15570:3:29","nodeType":"YulIdentifier","src":"15570:3:29"},{"kind":"number","nativeSrc":"15575:4:29","nodeType":"YulLiteral","src":"15575:4:29","type":"","value":"0x20"}],"functionName":{"name":"mstore","nativeSrc":"15563:6:29","nodeType":"YulIdentifier","src":"15563:6:29"},"nativeSrc":"15563:17:29","nodeType":"YulFunctionCall","src":"15563:17:29"},"nativeSrc":"15563:17:29","nodeType":"YulExpressionStatement","src":"15563:17:29"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"15604:3:29","nodeType":"YulIdentifier","src":"15604:3:29"},{"kind":"number","nativeSrc":"15609:4:29","nodeType":"YulLiteral","src":"15609:4:29","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15600:3:29","nodeType":"YulIdentifier","src":"15600:3:29"},"nativeSrc":"15600:14:29","nodeType":"YulFunctionCall","src":"15600:14:29"},{"kind":"number","nativeSrc":"15616:4:29","nodeType":"YulLiteral","src":"15616:4:29","type":"","value":"0x20"}],"functionName":{"name":"mstore","nativeSrc":"15593:6:29","nodeType":"YulIdentifier","src":"15593:6:29"},"nativeSrc":"15593:28:29","nodeType":"YulFunctionCall","src":"15593:28:29"},"nativeSrc":"15593:28:29","nodeType":"YulExpressionStatement","src":"15593:28:29"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"15645:3:29","nodeType":"YulIdentifier","src":"15645:3:29"},{"kind":"number","nativeSrc":"15650:4:29","nodeType":"YulLiteral","src":"15650:4:29","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"15641:3:29","nodeType":"YulIdentifier","src":"15641:3:29"},"nativeSrc":"15641:14:29","nodeType":"YulFunctionCall","src":"15641:14:29"},{"kind":"number","nativeSrc":"15657:4:29","nodeType":"YulLiteral","src":"15657:4:29","type":"","value":"0x20"}],"functionName":{"name":"mstore","nativeSrc":"15634:6:29","nodeType":"YulIdentifier","src":"15634:6:29"},"nativeSrc":"15634:28:29","nodeType":"YulFunctionCall","src":"15634:28:29"},"nativeSrc":"15634:28:29","nodeType":"YulExpressionStatement","src":"15634:28:29"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"15686:3:29","nodeType":"YulIdentifier","src":"15686:3:29"},{"kind":"number","nativeSrc":"15691:4:29","nodeType":"YulLiteral","src":"15691:4:29","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"15682:3:29","nodeType":"YulIdentifier","src":"15682:3:29"},"nativeSrc":"15682:14:29","nodeType":"YulFunctionCall","src":"15682:14:29"},{"name":"b","nativeSrc":"15698:1:29","nodeType":"YulIdentifier","src":"15698:1:29"}],"functionName":{"name":"mstore","nativeSrc":"15675:6:29","nodeType":"YulIdentifier","src":"15675:6:29"},"nativeSrc":"15675:25:29","nodeType":"YulFunctionCall","src":"15675:25:29"},"nativeSrc":"15675:25:29","nodeType":"YulExpressionStatement","src":"15675:25:29"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"15724:3:29","nodeType":"YulIdentifier","src":"15724:3:29"},{"kind":"number","nativeSrc":"15729:4:29","nodeType":"YulLiteral","src":"15729:4:29","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"15720:3:29","nodeType":"YulIdentifier","src":"15720:3:29"},"nativeSrc":"15720:14:29","nodeType":"YulFunctionCall","src":"15720:14:29"},{"name":"e","nativeSrc":"15736:1:29","nodeType":"YulIdentifier","src":"15736:1:29"}],"functionName":{"name":"mstore","nativeSrc":"15713:6:29","nodeType":"YulIdentifier","src":"15713:6:29"},"nativeSrc":"15713:25:29","nodeType":"YulFunctionCall","src":"15713:25:29"},"nativeSrc":"15713:25:29","nodeType":"YulExpressionStatement","src":"15713:25:29"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"15762:3:29","nodeType":"YulIdentifier","src":"15762:3:29"},{"kind":"number","nativeSrc":"15767:4:29","nodeType":"YulLiteral","src":"15767:4:29","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"15758:3:29","nodeType":"YulIdentifier","src":"15758:3:29"},"nativeSrc":"15758:14:29","nodeType":"YulFunctionCall","src":"15758:14:29"},{"name":"m","nativeSrc":"15774:1:29","nodeType":"YulIdentifier","src":"15774:1:29"}],"functionName":{"name":"mstore","nativeSrc":"15751:6:29","nodeType":"YulIdentifier","src":"15751:6:29"},"nativeSrc":"15751:25:29","nodeType":"YulFunctionCall","src":"15751:25:29"},"nativeSrc":"15751:25:29","nodeType":"YulExpressionStatement","src":"15751:25:29"},{"nativeSrc":"15938:57:29","nodeType":"YulAssignment","src":"15938:57:29","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"15960:3:29","nodeType":"YulIdentifier","src":"15960:3:29"},"nativeSrc":"15960:5:29","nodeType":"YulFunctionCall","src":"15960:5:29"},{"kind":"number","nativeSrc":"15967:4:29","nodeType":"YulLiteral","src":"15967:4:29","type":"","value":"0x05"},{"name":"ptr","nativeSrc":"15973:3:29","nodeType":"YulIdentifier","src":"15973:3:29"},{"kind":"number","nativeSrc":"15978:4:29","nodeType":"YulLiteral","src":"15978:4:29","type":"","value":"0xc0"},{"kind":"number","nativeSrc":"15984:4:29","nodeType":"YulLiteral","src":"15984:4:29","type":"","value":"0x00"},{"kind":"number","nativeSrc":"15990:4:29","nodeType":"YulLiteral","src":"15990:4:29","type":"","value":"0x20"}],"functionName":{"name":"staticcall","nativeSrc":"15949:10:29","nodeType":"YulIdentifier","src":"15949:10:29"},"nativeSrc":"15949:46:29","nodeType":"YulFunctionCall","src":"15949:46:29"},"variableNames":[{"name":"success","nativeSrc":"15938:7:29","nodeType":"YulIdentifier","src":"15938:7:29"}]},{"nativeSrc":"16008:21:29","nodeType":"YulAssignment","src":"16008:21:29","value":{"arguments":[{"kind":"number","nativeSrc":"16024:4:29","nodeType":"YulLiteral","src":"16024:4:29","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"16018:5:29","nodeType":"YulIdentifier","src":"16018:5:29"},"nativeSrc":"16018:11:29","nodeType":"YulFunctionCall","src":"16018:11:29"},"variableNames":[{"name":"result","nativeSrc":"16008:6:29","nodeType":"YulIdentifier","src":"16008:6:29"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":5547,"isOffset":false,"isSlot":false,"src":"15698:1:29","valueSize":1},{"declaration":5549,"isOffset":false,"isSlot":false,"src":"15736:1:29","valueSize":1},{"declaration":5551,"isOffset":false,"isSlot":false,"src":"15774:1:29","valueSize":1},{"declaration":5556,"isOffset":false,"isSlot":false,"src":"16008:6:29","valueSize":1},{"declaration":5554,"isOffset":false,"isSlot":false,"src":"15938:7:29","valueSize":1}],"flags":["memory-safe"],"id":5566,"nodeType":"InlineAssembly","src":"14601:1438:29"}]},"documentation":{"id":5545,"nodeType":"StructuredDocumentation","src":"13704:738:29","text":" @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).\n It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying\n to operate modulo 0 or if the underlying precompile reverted.\n IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain\n you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in\n https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack\n of a revert, but the result may be incorrectly interpreted as 0."},"id":5568,"implemented":true,"kind":"function","modifiers":[],"name":"tryModExp","nameLocation":"14456:9:29","nodeType":"FunctionDefinition","parameters":{"id":5552,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5547,"mutability":"mutable","name":"b","nameLocation":"14474:1:29","nodeType":"VariableDeclaration","scope":5568,"src":"14466:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5546,"name":"uint256","nodeType":"ElementaryTypeName","src":"14466:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5549,"mutability":"mutable","name":"e","nameLocation":"14485:1:29","nodeType":"VariableDeclaration","scope":5568,"src":"14477:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5548,"name":"uint256","nodeType":"ElementaryTypeName","src":"14477:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5551,"mutability":"mutable","name":"m","nameLocation":"14496:1:29","nodeType":"VariableDeclaration","scope":5568,"src":"14488:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5550,"name":"uint256","nodeType":"ElementaryTypeName","src":"14488:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14465:33:29"},"returnParameters":{"id":5557,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5554,"mutability":"mutable","name":"success","nameLocation":"14527:7:29","nodeType":"VariableDeclaration","scope":5568,"src":"14522:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5553,"name":"bool","nodeType":"ElementaryTypeName","src":"14522:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5556,"mutability":"mutable","name":"result","nameLocation":"14544:6:29","nodeType":"VariableDeclaration","scope":5568,"src":"14536:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5555,"name":"uint256","nodeType":"ElementaryTypeName","src":"14536:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14521:30:29"},"scope":6523,"src":"14447:1598:29","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5603,"nodeType":"Block","src":"16242:179:29","statements":[{"assignments":[5581,5583],"declarations":[{"constant":false,"id":5581,"mutability":"mutable","name":"success","nameLocation":"16258:7:29","nodeType":"VariableDeclaration","scope":5603,"src":"16253:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5580,"name":"bool","nodeType":"ElementaryTypeName","src":"16253:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5583,"mutability":"mutable","name":"result","nameLocation":"16280:6:29","nodeType":"VariableDeclaration","scope":5603,"src":"16267:19:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5582,"name":"bytes","nodeType":"ElementaryTypeName","src":"16267:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":5589,"initialValue":{"arguments":[{"id":5585,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5571,"src":"16300:1:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":5586,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5573,"src":"16303:1:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":5587,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5575,"src":"16306:1:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":5584,"name":"tryModExp","nodeType":"Identifier","overloadedDeclarations":[5568,5650],"referencedDeclaration":5650,"src":"16290:9:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes_memory_ptr_$_t_bytes_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory,bytes memory,bytes memory) view returns (bool,bytes memory)"}},"id":5588,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16290:18:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"16252:56:29"},{"condition":{"id":5591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"16322:8:29","subExpression":{"id":5590,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5581,"src":"16323:7:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5600,"nodeType":"IfStatement","src":"16318:74:29","trueBody":{"id":5599,"nodeType":"Block","src":"16332:60:29","statements":[{"expression":{"arguments":[{"expression":{"id":5595,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3259,"src":"16358:5:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$3259_$","typeString":"type(library Panic)"}},"id":5596,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16364:16:29","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":3226,"src":"16358:22:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5592,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3259,"src":"16346:5:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$3259_$","typeString":"type(library Panic)"}},"id":5594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16352:5:29","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":3258,"src":"16346:11:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":5597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16346:35:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5598,"nodeType":"ExpressionStatement","src":"16346:35:29"}]}},{"expression":{"id":5601,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5583,"src":"16408:6:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":5579,"id":5602,"nodeType":"Return","src":"16401:13:29"}]},"documentation":{"id":5569,"nodeType":"StructuredDocumentation","src":"16051:85:29","text":" @dev Variant of {modExp} that supports inputs of arbitrary length."},"id":5604,"implemented":true,"kind":"function","modifiers":[],"name":"modExp","nameLocation":"16150:6:29","nodeType":"FunctionDefinition","parameters":{"id":5576,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5571,"mutability":"mutable","name":"b","nameLocation":"16170:1:29","nodeType":"VariableDeclaration","scope":5604,"src":"16157:14:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5570,"name":"bytes","nodeType":"ElementaryTypeName","src":"16157:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":5573,"mutability":"mutable","name":"e","nameLocation":"16186:1:29","nodeType":"VariableDeclaration","scope":5604,"src":"16173:14:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5572,"name":"bytes","nodeType":"ElementaryTypeName","src":"16173:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":5575,"mutability":"mutable","name":"m","nameLocation":"16202:1:29","nodeType":"VariableDeclaration","scope":5604,"src":"16189:14:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5574,"name":"bytes","nodeType":"ElementaryTypeName","src":"16189:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16156:48:29"},"returnParameters":{"id":5579,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5578,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5604,"src":"16228:12:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5577,"name":"bytes","nodeType":"ElementaryTypeName","src":"16228:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16227:14:29"},"scope":6523,"src":"16141:280:29","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5649,"nodeType":"Block","src":"16675:771:29","statements":[{"condition":{"arguments":[{"id":5619,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5611,"src":"16700:1:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":5618,"name":"_zeroBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5683,"src":"16689:10:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (bytes memory) pure returns (bool)"}},"id":5620,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16689:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5628,"nodeType":"IfStatement","src":"16685:47:29","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":5621,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"16712:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":5624,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16729:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5623,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"16719:9:29","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":5622,"name":"bytes","nodeType":"ElementaryTypeName","src":"16723:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":5625,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16719:12:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":5626,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"16711:21:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"functionReturnParameters":5617,"id":5627,"nodeType":"Return","src":"16704:28:29"}},{"assignments":[5630],"declarations":[{"constant":false,"id":5630,"mutability":"mutable","name":"mLen","nameLocation":"16751:4:29","nodeType":"VariableDeclaration","scope":5649,"src":"16743:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5629,"name":"uint256","nodeType":"ElementaryTypeName","src":"16743:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5633,"initialValue":{"expression":{"id":5631,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5611,"src":"16758:1:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":5632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16760:6:29","memberName":"length","nodeType":"MemberAccess","src":"16758:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16743:23:29"},{"expression":{"id":5646,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5634,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5616,"src":"16848:6:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":5637,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5607,"src":"16874:1:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":5638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16876:6:29","memberName":"length","nodeType":"MemberAccess","src":"16874:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":5639,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5609,"src":"16884:1:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":5640,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16886:6:29","memberName":"length","nodeType":"MemberAccess","src":"16884:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5641,"name":"mLen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5630,"src":"16894:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5642,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5607,"src":"16900:1:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":5643,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5609,"src":"16903:1:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":5644,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5611,"src":"16906:1:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":5635,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"16857:3:29","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":5636,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16861:12:29","memberName":"encodePacked","nodeType":"MemberAccess","src":"16857:16:29","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":5645,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16857:51:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"16848:60:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":5647,"nodeType":"ExpressionStatement","src":"16848:60:29"},{"AST":{"nativeSrc":"16944:496:29","nodeType":"YulBlock","src":"16944:496:29","statements":[{"nativeSrc":"16958:32:29","nodeType":"YulVariableDeclaration","src":"16958:32:29","value":{"arguments":[{"name":"result","nativeSrc":"16977:6:29","nodeType":"YulIdentifier","src":"16977:6:29"},{"kind":"number","nativeSrc":"16985:4:29","nodeType":"YulLiteral","src":"16985:4:29","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"16973:3:29","nodeType":"YulIdentifier","src":"16973:3:29"},"nativeSrc":"16973:17:29","nodeType":"YulFunctionCall","src":"16973:17:29"},"variables":[{"name":"dataPtr","nativeSrc":"16962:7:29","nodeType":"YulTypedName","src":"16962:7:29","type":""}]},{"nativeSrc":"17080:73:29","nodeType":"YulAssignment","src":"17080:73:29","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"17102:3:29","nodeType":"YulIdentifier","src":"17102:3:29"},"nativeSrc":"17102:5:29","nodeType":"YulFunctionCall","src":"17102:5:29"},{"kind":"number","nativeSrc":"17109:4:29","nodeType":"YulLiteral","src":"17109:4:29","type":"","value":"0x05"},{"name":"dataPtr","nativeSrc":"17115:7:29","nodeType":"YulIdentifier","src":"17115:7:29"},{"arguments":[{"name":"result","nativeSrc":"17130:6:29","nodeType":"YulIdentifier","src":"17130:6:29"}],"functionName":{"name":"mload","nativeSrc":"17124:5:29","nodeType":"YulIdentifier","src":"17124:5:29"},"nativeSrc":"17124:13:29","nodeType":"YulFunctionCall","src":"17124:13:29"},{"name":"dataPtr","nativeSrc":"17139:7:29","nodeType":"YulIdentifier","src":"17139:7:29"},{"name":"mLen","nativeSrc":"17148:4:29","nodeType":"YulIdentifier","src":"17148:4:29"}],"functionName":{"name":"staticcall","nativeSrc":"17091:10:29","nodeType":"YulIdentifier","src":"17091:10:29"},"nativeSrc":"17091:62:29","nodeType":"YulFunctionCall","src":"17091:62:29"},"variableNames":[{"name":"success","nativeSrc":"17080:7:29","nodeType":"YulIdentifier","src":"17080:7:29"}]},{"expression":{"arguments":[{"name":"result","nativeSrc":"17309:6:29","nodeType":"YulIdentifier","src":"17309:6:29"},{"name":"mLen","nativeSrc":"17317:4:29","nodeType":"YulIdentifier","src":"17317:4:29"}],"functionName":{"name":"mstore","nativeSrc":"17302:6:29","nodeType":"YulIdentifier","src":"17302:6:29"},"nativeSrc":"17302:20:29","nodeType":"YulFunctionCall","src":"17302:20:29"},"nativeSrc":"17302:20:29","nodeType":"YulExpressionStatement","src":"17302:20:29"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"17405:4:29","nodeType":"YulLiteral","src":"17405:4:29","type":"","value":"0x40"},{"arguments":[{"name":"dataPtr","nativeSrc":"17415:7:29","nodeType":"YulIdentifier","src":"17415:7:29"},{"name":"mLen","nativeSrc":"17424:4:29","nodeType":"YulIdentifier","src":"17424:4:29"}],"functionName":{"name":"add","nativeSrc":"17411:3:29","nodeType":"YulIdentifier","src":"17411:3:29"},"nativeSrc":"17411:18:29","nodeType":"YulFunctionCall","src":"17411:18:29"}],"functionName":{"name":"mstore","nativeSrc":"17398:6:29","nodeType":"YulIdentifier","src":"17398:6:29"},"nativeSrc":"17398:32:29","nodeType":"YulFunctionCall","src":"17398:32:29"},"nativeSrc":"17398:32:29","nodeType":"YulExpressionStatement","src":"17398:32:29"}]},"evmVersion":"cancun","externalReferences":[{"declaration":5630,"isOffset":false,"isSlot":false,"src":"17148:4:29","valueSize":1},{"declaration":5630,"isOffset":false,"isSlot":false,"src":"17317:4:29","valueSize":1},{"declaration":5630,"isOffset":false,"isSlot":false,"src":"17424:4:29","valueSize":1},{"declaration":5616,"isOffset":false,"isSlot":false,"src":"16977:6:29","valueSize":1},{"declaration":5616,"isOffset":false,"isSlot":false,"src":"17130:6:29","valueSize":1},{"declaration":5616,"isOffset":false,"isSlot":false,"src":"17309:6:29","valueSize":1},{"declaration":5614,"isOffset":false,"isSlot":false,"src":"17080:7:29","valueSize":1}],"flags":["memory-safe"],"id":5648,"nodeType":"InlineAssembly","src":"16919:521:29"}]},"documentation":{"id":5605,"nodeType":"StructuredDocumentation","src":"16427:88:29","text":" @dev Variant of {tryModExp} that supports inputs of arbitrary length."},"id":5650,"implemented":true,"kind":"function","modifiers":[],"name":"tryModExp","nameLocation":"16529:9:29","nodeType":"FunctionDefinition","parameters":{"id":5612,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5607,"mutability":"mutable","name":"b","nameLocation":"16561:1:29","nodeType":"VariableDeclaration","scope":5650,"src":"16548:14:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5606,"name":"bytes","nodeType":"ElementaryTypeName","src":"16548:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":5609,"mutability":"mutable","name":"e","nameLocation":"16585:1:29","nodeType":"VariableDeclaration","scope":5650,"src":"16572:14:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5608,"name":"bytes","nodeType":"ElementaryTypeName","src":"16572:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":5611,"mutability":"mutable","name":"m","nameLocation":"16609:1:29","nodeType":"VariableDeclaration","scope":5650,"src":"16596:14:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5610,"name":"bytes","nodeType":"ElementaryTypeName","src":"16596:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16538:78:29"},"returnParameters":{"id":5617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5614,"mutability":"mutable","name":"success","nameLocation":"16645:7:29","nodeType":"VariableDeclaration","scope":5650,"src":"16640:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5613,"name":"bool","nodeType":"ElementaryTypeName","src":"16640:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5616,"mutability":"mutable","name":"result","nameLocation":"16667:6:29","nodeType":"VariableDeclaration","scope":5650,"src":"16654:19:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5615,"name":"bytes","nodeType":"ElementaryTypeName","src":"16654:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16639:35:29"},"scope":6523,"src":"16520:926:29","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5682,"nodeType":"Block","src":"17601:176:29","statements":[{"body":{"id":5678,"nodeType":"Block","src":"17658:92:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":5673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":5669,"name":"byteArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5653,"src":"17676:9:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":5671,"indexExpression":{"id":5670,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5659,"src":"17686:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17676:12:29","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":5672,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17692:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17676:17:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5677,"nodeType":"IfStatement","src":"17672:68:29","trueBody":{"id":5676,"nodeType":"Block","src":"17695:45:29","statements":[{"expression":{"hexValue":"66616c7365","id":5674,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17720:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":5657,"id":5675,"nodeType":"Return","src":"17713:12:29"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5662,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5659,"src":"17631:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":5663,"name":"byteArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5653,"src":"17635:9:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":5664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17645:6:29","memberName":"length","nodeType":"MemberAccess","src":"17635:16:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17631:20:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5679,"initializationExpression":{"assignments":[5659],"declarations":[{"constant":false,"id":5659,"mutability":"mutable","name":"i","nameLocation":"17624:1:29","nodeType":"VariableDeclaration","scope":5679,"src":"17616:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5658,"name":"uint256","nodeType":"ElementaryTypeName","src":"17616:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5661,"initialValue":{"hexValue":"30","id":5660,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17628:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"17616:13:29"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":5667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"17653:3:29","subExpression":{"id":5666,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5659,"src":"17655:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5668,"nodeType":"ExpressionStatement","src":"17653:3:29"},"nodeType":"ForStatement","src":"17611:139:29"},{"expression":{"hexValue":"74727565","id":5680,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17766:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":5657,"id":5681,"nodeType":"Return","src":"17759:11:29"}]},"documentation":{"id":5651,"nodeType":"StructuredDocumentation","src":"17452:72:29","text":" @dev Returns whether the provided byte array is zero."},"id":5683,"implemented":true,"kind":"function","modifiers":[],"name":"_zeroBytes","nameLocation":"17538:10:29","nodeType":"FunctionDefinition","parameters":{"id":5654,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5653,"mutability":"mutable","name":"byteArray","nameLocation":"17562:9:29","nodeType":"VariableDeclaration","scope":5683,"src":"17549:22:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5652,"name":"bytes","nodeType":"ElementaryTypeName","src":"17549:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"17548:24:29"},"returnParameters":{"id":5657,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5656,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5683,"src":"17595:4:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5655,"name":"bool","nodeType":"ElementaryTypeName","src":"17595:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"17594:6:29"},"scope":6523,"src":"17529:248:29","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":5901,"nodeType":"Block","src":"18137:5124:29","statements":[{"id":5900,"nodeType":"UncheckedBlock","src":"18147:5108:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5693,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5691,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5686,"src":"18241:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"31","id":5692,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18246:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"18241:6:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5697,"nodeType":"IfStatement","src":"18237:53:29","trueBody":{"id":5696,"nodeType":"Block","src":"18249:41:29","statements":[{"expression":{"id":5694,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5686,"src":"18274:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5690,"id":5695,"nodeType":"Return","src":"18267:8:29"}]}},{"assignments":[5699],"declarations":[{"constant":false,"id":5699,"mutability":"mutable","name":"aa","nameLocation":"19225:2:29","nodeType":"VariableDeclaration","scope":5900,"src":"19217:10:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5698,"name":"uint256","nodeType":"ElementaryTypeName","src":"19217:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5701,"initialValue":{"id":5700,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5686,"src":"19230:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"19217:14:29"},{"assignments":[5703],"declarations":[{"constant":false,"id":5703,"mutability":"mutable","name":"xn","nameLocation":"19253:2:29","nodeType":"VariableDeclaration","scope":5900,"src":"19245:10:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5702,"name":"uint256","nodeType":"ElementaryTypeName","src":"19245:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5705,"initialValue":{"hexValue":"31","id":5704,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19258:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"19245:14:29"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5706,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"19278:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"},"id":5709,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5707,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19285:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":5708,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19290:3:29","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"19285:8:29","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}}],"id":5710,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19284:10:29","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}},"src":"19278:16:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5721,"nodeType":"IfStatement","src":"19274:92:29","trueBody":{"id":5720,"nodeType":"Block","src":"19296:70:29","statements":[{"expression":{"id":5714,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5712,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"19314:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"313238","id":5713,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19321:3:29","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"19314:10:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5715,"nodeType":"ExpressionStatement","src":"19314:10:29"},{"expression":{"id":5718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5716,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"19342:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3634","id":5717,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19349:2:29","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"19342:9:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5719,"nodeType":"ExpressionStatement","src":"19342:9:29"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5722,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"19383:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"},"id":5725,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5723,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19390:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":5724,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19395:2:29","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"19390:7:29","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}}],"id":5726,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19389:9:29","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}},"src":"19383:15:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5737,"nodeType":"IfStatement","src":"19379:90:29","trueBody":{"id":5736,"nodeType":"Block","src":"19400:69:29","statements":[{"expression":{"id":5730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5728,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"19418:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3634","id":5729,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19425:2:29","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"19418:9:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5731,"nodeType":"ExpressionStatement","src":"19418:9:29"},{"expression":{"id":5734,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5732,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"19445:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3332","id":5733,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19452:2:29","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"19445:9:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5735,"nodeType":"ExpressionStatement","src":"19445:9:29"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5743,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5738,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"19486:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"},"id":5741,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5739,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19493:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":5740,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19498:2:29","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"19493:7:29","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}}],"id":5742,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19492:9:29","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}},"src":"19486:15:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5753,"nodeType":"IfStatement","src":"19482:90:29","trueBody":{"id":5752,"nodeType":"Block","src":"19503:69:29","statements":[{"expression":{"id":5746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5744,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"19521:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3332","id":5745,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19528:2:29","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"19521:9:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5747,"nodeType":"ExpressionStatement","src":"19521:9:29"},{"expression":{"id":5750,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5748,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"19548:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3136","id":5749,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19555:2:29","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"19548:9:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5751,"nodeType":"ExpressionStatement","src":"19548:9:29"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5759,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5754,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"19589:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"},"id":5757,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5755,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19596:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":5756,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19601:2:29","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"19596:7:29","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}}],"id":5758,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19595:9:29","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}},"src":"19589:15:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5769,"nodeType":"IfStatement","src":"19585:89:29","trueBody":{"id":5768,"nodeType":"Block","src":"19606:68:29","statements":[{"expression":{"id":5762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5760,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"19624:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3136","id":5761,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19631:2:29","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"19624:9:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5763,"nodeType":"ExpressionStatement","src":"19624:9:29"},{"expression":{"id":5766,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5764,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"19651:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"38","id":5765,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19658:1:29","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"19651:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5767,"nodeType":"ExpressionStatement","src":"19651:8:29"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5770,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"19691:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":5773,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5771,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19698:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":5772,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19703:1:29","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"19698:6:29","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":5774,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19697:8:29","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"src":"19691:14:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5785,"nodeType":"IfStatement","src":"19687:87:29","trueBody":{"id":5784,"nodeType":"Block","src":"19707:67:29","statements":[{"expression":{"id":5778,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5776,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"19725:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"38","id":5777,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19732:1:29","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"19725:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5779,"nodeType":"ExpressionStatement","src":"19725:8:29"},{"expression":{"id":5782,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5780,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"19751:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"34","id":5781,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19758:1:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"19751:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5783,"nodeType":"ExpressionStatement","src":"19751:8:29"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5791,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5786,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"19791:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"id":5789,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5787,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19798:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":5788,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19803:1:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"19798:6:29","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}}],"id":5790,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19797:8:29","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}},"src":"19791:14:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5801,"nodeType":"IfStatement","src":"19787:87:29","trueBody":{"id":5800,"nodeType":"Block","src":"19807:67:29","statements":[{"expression":{"id":5794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5792,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"19825:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":5793,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19832:1:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"19825:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5795,"nodeType":"ExpressionStatement","src":"19825:8:29"},{"expression":{"id":5798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5796,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"19851:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"32","id":5797,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19858:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"19851:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5799,"nodeType":"ExpressionStatement","src":"19851:8:29"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5802,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"19891:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"id":5805,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5803,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19898:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"32","id":5804,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19903:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"19898:6:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}}],"id":5806,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19897:8:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}},"src":"19891:14:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5813,"nodeType":"IfStatement","src":"19887:61:29","trueBody":{"id":5812,"nodeType":"Block","src":"19907:41:29","statements":[{"expression":{"id":5810,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5808,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"19925:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"31","id":5809,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19932:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"19925:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5811,"nodeType":"ExpressionStatement","src":"19925:8:29"}]}},{"expression":{"id":5821,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5814,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"20368:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":5815,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20374:1:29","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5816,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"20378:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20374:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5818,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20373:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":5819,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20385:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"20373:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20368:18:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5822,"nodeType":"ExpressionStatement","src":"20368:18:29"},{"expression":{"id":5832,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5823,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22273:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5824,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22279:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5827,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5825,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5686,"src":"22284:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5826,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22288:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22284:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22279:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5829,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22278:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":5830,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22295:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22278:18:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22273:23:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5833,"nodeType":"ExpressionStatement","src":"22273:23:29"},{"expression":{"id":5843,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5834,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22382:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5842,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5839,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5835,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22388:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5838,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5836,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5686,"src":"22393:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5837,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22397:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22393:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22388:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5840,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22387:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":5841,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22404:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22387:18:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22382:23:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5844,"nodeType":"ExpressionStatement","src":"22382:23:29"},{"expression":{"id":5854,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5845,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22493:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5850,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5846,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22499:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5849,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5847,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5686,"src":"22504:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5848,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22508:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22504:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22499:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5851,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22498:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":5852,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22515:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22498:18:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22493:23:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5855,"nodeType":"ExpressionStatement","src":"22493:23:29"},{"expression":{"id":5865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5856,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22602:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5857,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22608:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5858,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5686,"src":"22613:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5859,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22617:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22613:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22608:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5862,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22607:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":5863,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22624:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22607:18:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22602:23:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5866,"nodeType":"ExpressionStatement","src":"22602:23:29"},{"expression":{"id":5876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5867,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22712:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5875,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5868,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22718:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5871,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5869,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5686,"src":"22723:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5870,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22727:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22723:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22718:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5873,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22717:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":5874,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22734:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22717:18:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22712:23:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5877,"nodeType":"ExpressionStatement","src":"22712:23:29"},{"expression":{"id":5887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5878,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22822:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5886,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5883,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5879,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22828:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5880,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5686,"src":"22833:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5881,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"22837:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22833:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22828:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5884,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22827:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":5885,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22844:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22827:18:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22822:23:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5888,"nodeType":"ExpressionStatement","src":"22822:23:29"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5898,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5889,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"23211:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5896,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5892,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"23232:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5893,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5686,"src":"23237:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5894,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5703,"src":"23241:2:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23237:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23232:11:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5890,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"23216:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":5891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23225:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"23216:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5897,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23216:28:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23211:33:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5690,"id":5899,"nodeType":"Return","src":"23204:40:29"}]}]},"documentation":{"id":5684,"nodeType":"StructuredDocumentation","src":"17783:292:29","text":" @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded\n towards zero.\n This method is based on Newton's method for computing square roots; the algorithm is restricted to only\n using integer operations."},"id":5902,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"18089:4:29","nodeType":"FunctionDefinition","parameters":{"id":5687,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5686,"mutability":"mutable","name":"a","nameLocation":"18102:1:29","nodeType":"VariableDeclaration","scope":5902,"src":"18094:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5685,"name":"uint256","nodeType":"ElementaryTypeName","src":"18094:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18093:11:29"},"returnParameters":{"id":5690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5689,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5902,"src":"18128:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5688,"name":"uint256","nodeType":"ElementaryTypeName","src":"18128:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18127:9:29"},"scope":6523,"src":"18080:5181:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5935,"nodeType":"Block","src":"23434:171:29","statements":[{"id":5934,"nodeType":"UncheckedBlock","src":"23444:155:29","statements":[{"assignments":[5914],"declarations":[{"constant":false,"id":5914,"mutability":"mutable","name":"result","nameLocation":"23476:6:29","nodeType":"VariableDeclaration","scope":5934,"src":"23468:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5913,"name":"uint256","nodeType":"ElementaryTypeName","src":"23468:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5918,"initialValue":{"arguments":[{"id":5916,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5905,"src":"23490:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5915,"name":"sqrt","nodeType":"Identifier","overloadedDeclarations":[5902,5936],"referencedDeclaration":5902,"src":"23485:4:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":5917,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23485:7:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23468:24:29"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5932,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5919,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5914,"src":"23513:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":5923,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5908,"src":"23555:8:29","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}],"id":5922,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6522,"src":"23538:16:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$4929_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":5924,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23538:26:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5929,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5927,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5925,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5914,"src":"23568:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5926,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5914,"src":"23577:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23568:15:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":5928,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5905,"src":"23586:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23568:19:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"23538:49:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5920,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"23522:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":5921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23531:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"23522:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5931,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23522:66:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23513:75:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5912,"id":5933,"nodeType":"Return","src":"23506:82:29"}]}]},"documentation":{"id":5903,"nodeType":"StructuredDocumentation","src":"23267:86:29","text":" @dev Calculates sqrt(a), following the selected rounding direction."},"id":5936,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"23367:4:29","nodeType":"FunctionDefinition","parameters":{"id":5909,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5905,"mutability":"mutable","name":"a","nameLocation":"23380:1:29","nodeType":"VariableDeclaration","scope":5936,"src":"23372:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5904,"name":"uint256","nodeType":"ElementaryTypeName","src":"23372:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5908,"mutability":"mutable","name":"rounding","nameLocation":"23392:8:29","nodeType":"VariableDeclaration","scope":5936,"src":"23383:17:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"},"typeName":{"id":5907,"nodeType":"UserDefinedTypeName","pathNode":{"id":5906,"name":"Rounding","nameLocations":["23383:8:29"],"nodeType":"IdentifierPath","referencedDeclaration":4929,"src":"23383:8:29"},"referencedDeclaration":4929,"src":"23383:8:29","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"23371:30:29"},"returnParameters":{"id":5912,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5911,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5936,"src":"23425:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5910,"name":"uint256","nodeType":"ElementaryTypeName","src":"23425:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23424:9:29"},"scope":6523,"src":"23358:247:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6131,"nodeType":"Block","src":"23796:981:29","statements":[{"assignments":[5945],"declarations":[{"constant":false,"id":5945,"mutability":"mutable","name":"result","nameLocation":"23814:6:29","nodeType":"VariableDeclaration","scope":6131,"src":"23806:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5944,"name":"uint256","nodeType":"ElementaryTypeName","src":"23806:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5947,"initialValue":{"hexValue":"30","id":5946,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23823:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"23806:18:29"},{"assignments":[5949],"declarations":[{"constant":false,"id":5949,"mutability":"mutable","name":"exp","nameLocation":"23842:3:29","nodeType":"VariableDeclaration","scope":6131,"src":"23834:11:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5948,"name":"uint256","nodeType":"ElementaryTypeName","src":"23834:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5950,"nodeType":"VariableDeclarationStatement","src":"23834:11:29"},{"id":6128,"nodeType":"UncheckedBlock","src":"23855:893:29","statements":[{"expression":{"id":5965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5951,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"23879:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"313238","id":5952,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23885:3:29","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5962,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5955,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5939,"src":"23907:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"},"id":5961,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"},"id":5958,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5956,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23916:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":5957,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23921:3:29","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"23916:8:29","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}}],"id":5959,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"23915:10:29","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":5960,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23928:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"23915:14:29","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"}},"src":"23907:22:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5953,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"23891:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":5954,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23900:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"23891:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5963,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23891:39:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23885:45:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23879:51:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5966,"nodeType":"ExpressionStatement","src":"23879:51:29"},{"expression":{"id":5969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5967,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5939,"src":"23944:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":5968,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"23954:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23944:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5970,"nodeType":"ExpressionStatement","src":"23944:13:29"},{"expression":{"id":5973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5971,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5945,"src":"23971:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":5972,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"23981:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23971:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5974,"nodeType":"ExpressionStatement","src":"23971:13:29"},{"expression":{"id":5989,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5975,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"23999:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5988,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3634","id":5976,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24005:2:29","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5986,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5979,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5939,"src":"24026:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"},"id":5985,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"},"id":5982,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5980,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24035:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":5981,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24040:2:29","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"24035:7:29","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}}],"id":5983,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24034:9:29","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":5984,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24046:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24034:13:29","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"}},"src":"24026:21:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5977,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"24010:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":5978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24019:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"24010:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5987,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24010:38:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24005:43:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23999:49:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5990,"nodeType":"ExpressionStatement","src":"23999:49:29"},{"expression":{"id":5993,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5991,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5939,"src":"24062:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":5992,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"24072:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24062:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5994,"nodeType":"ExpressionStatement","src":"24062:13:29"},{"expression":{"id":5997,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5995,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5945,"src":"24089:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":5996,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"24099:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24089:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5998,"nodeType":"ExpressionStatement","src":"24089:13:29"},{"expression":{"id":6013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5999,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"24117:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6012,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3332","id":6000,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24123:2:29","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6003,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5939,"src":"24144:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"id":6009,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"},"id":6006,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":6004,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24153:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":6005,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24158:2:29","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"24153:7:29","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}}],"id":6007,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24152:9:29","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":6008,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24164:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24152:13:29","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"}},"src":"24144:21:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":6001,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"24128:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":6002,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24137:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"24128:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":6011,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24128:38:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24123:43:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24117:49:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6014,"nodeType":"ExpressionStatement","src":"24117:49:29"},{"expression":{"id":6017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6015,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5939,"src":"24180:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":6016,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"24190:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24180:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6018,"nodeType":"ExpressionStatement","src":"24180:13:29"},{"expression":{"id":6021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6019,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5945,"src":"24207:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":6020,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"24217:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24207:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6022,"nodeType":"ExpressionStatement","src":"24207:13:29"},{"expression":{"id":6037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6023,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"24235:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3136","id":6024,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24241:2:29","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6034,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6027,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5939,"src":"24262:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"},"id":6033,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"},"id":6030,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":6028,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24271:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":6029,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24276:2:29","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"24271:7:29","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}}],"id":6031,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24270:9:29","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":6032,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24282:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24270:13:29","typeDescriptions":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"}},"src":"24262:21:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":6025,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"24246:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":6026,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24255:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"24246:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":6035,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24246:38:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24241:43:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24235:49:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6038,"nodeType":"ExpressionStatement","src":"24235:49:29"},{"expression":{"id":6041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6039,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5939,"src":"24298:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":6040,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"24308:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24298:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6042,"nodeType":"ExpressionStatement","src":"24298:13:29"},{"expression":{"id":6045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6043,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5945,"src":"24325:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":6044,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"24335:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24325:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6046,"nodeType":"ExpressionStatement","src":"24325:13:29"},{"expression":{"id":6061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6047,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"24353:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"38","id":6048,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24359:1:29","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6051,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5939,"src":"24379:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"id":6057,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":6054,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":6052,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24388:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":6053,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24393:1:29","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"24388:6:29","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":6055,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24387:8:29","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":6056,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24398:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24387:12:29","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"}},"src":"24379:20:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":6049,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"24363:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":6050,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24372:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"24363:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":6059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24363:37:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24359:41:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24353:47:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6062,"nodeType":"ExpressionStatement","src":"24353:47:29"},{"expression":{"id":6065,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6063,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5939,"src":"24414:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":6064,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"24424:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24414:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6066,"nodeType":"ExpressionStatement","src":"24414:13:29"},{"expression":{"id":6069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6067,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5945,"src":"24441:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":6068,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"24451:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24441:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6070,"nodeType":"ExpressionStatement","src":"24441:13:29"},{"expression":{"id":6085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6071,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"24469:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"34","id":6072,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24475:1:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6075,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5939,"src":"24495:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"id":6081,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"id":6078,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":6076,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24504:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":6077,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24509:1:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"24504:6:29","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}}],"id":6079,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24503:8:29","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":6080,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24514:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24503:12:29","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"}},"src":"24495:20:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":6073,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"24479:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":6074,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24488:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"24479:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":6083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24479:37:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24475:41:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24469:47:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6086,"nodeType":"ExpressionStatement","src":"24469:47:29"},{"expression":{"id":6089,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6087,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5939,"src":"24530:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":6088,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"24540:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24530:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6090,"nodeType":"ExpressionStatement","src":"24530:13:29"},{"expression":{"id":6093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6091,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5945,"src":"24557:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":6092,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"24567:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24557:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6094,"nodeType":"ExpressionStatement","src":"24557:13:29"},{"expression":{"id":6109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6095,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"24585:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":6096,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24591:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6106,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6099,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5939,"src":"24611:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"id":6105,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"id":6102,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":6100,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24620:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"32","id":6101,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24625:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"24620:6:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}}],"id":6103,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24619:8:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":6104,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24630:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24619:12:29","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"}},"src":"24611:20:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":6097,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"24595:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":6098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24604:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"24595:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":6107,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24595:37:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24591:41:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24585:47:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6110,"nodeType":"ExpressionStatement","src":"24585:47:29"},{"expression":{"id":6113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6111,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5939,"src":"24646:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":6112,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"24656:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24646:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6114,"nodeType":"ExpressionStatement","src":"24646:13:29"},{"expression":{"id":6117,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6115,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5945,"src":"24673:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":6116,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"24683:3:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24673:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6118,"nodeType":"ExpressionStatement","src":"24673:13:29"},{"expression":{"id":6126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6119,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5945,"src":"24701:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6122,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5939,"src":"24727:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":6123,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24735:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24727:9:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":6120,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"24711:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":6121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24720:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"24711:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":6125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24711:26:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24701:36:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6127,"nodeType":"ExpressionStatement","src":"24701:36:29"}]},{"expression":{"id":6129,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5945,"src":"24764:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5943,"id":6130,"nodeType":"Return","src":"24757:13:29"}]},"documentation":{"id":5937,"nodeType":"StructuredDocumentation","src":"23611:119:29","text":" @dev Return the log in base 2 of a positive value rounded towards zero.\n Returns 0 if given 0."},"id":6132,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"23744:4:29","nodeType":"FunctionDefinition","parameters":{"id":5940,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5939,"mutability":"mutable","name":"value","nameLocation":"23757:5:29","nodeType":"VariableDeclaration","scope":6132,"src":"23749:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5938,"name":"uint256","nodeType":"ElementaryTypeName","src":"23749:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23748:15:29"},"returnParameters":{"id":5943,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5942,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6132,"src":"23787:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5941,"name":"uint256","nodeType":"ElementaryTypeName","src":"23787:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23786:9:29"},"scope":6523,"src":"23735:1042:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6165,"nodeType":"Block","src":"25010:175:29","statements":[{"id":6164,"nodeType":"UncheckedBlock","src":"25020:159:29","statements":[{"assignments":[6144],"declarations":[{"constant":false,"id":6144,"mutability":"mutable","name":"result","nameLocation":"25052:6:29","nodeType":"VariableDeclaration","scope":6164,"src":"25044:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6143,"name":"uint256","nodeType":"ElementaryTypeName","src":"25044:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6148,"initialValue":{"arguments":[{"id":6146,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6135,"src":"25066:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6145,"name":"log2","nodeType":"Identifier","overloadedDeclarations":[6132,6166],"referencedDeclaration":6132,"src":"25061:4:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":6147,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25061:11:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"25044:28:29"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6149,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6144,"src":"25093:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":6160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":6153,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6138,"src":"25135:8:29","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}],"id":6152,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6522,"src":"25118:16:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$4929_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":6154,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25118:26:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6159,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6157,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":6155,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25148:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":6156,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6144,"src":"25153:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25148:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":6158,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6135,"src":"25162:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25148:19:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25118:49:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":6150,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"25102:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":6151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25111:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"25102:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":6161,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25102:66:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25093:75:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6142,"id":6163,"nodeType":"Return","src":"25086:82:29"}]}]},"documentation":{"id":6133,"nodeType":"StructuredDocumentation","src":"24783:142:29","text":" @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":6166,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"24939:4:29","nodeType":"FunctionDefinition","parameters":{"id":6139,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6135,"mutability":"mutable","name":"value","nameLocation":"24952:5:29","nodeType":"VariableDeclaration","scope":6166,"src":"24944:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6134,"name":"uint256","nodeType":"ElementaryTypeName","src":"24944:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6138,"mutability":"mutable","name":"rounding","nameLocation":"24968:8:29","nodeType":"VariableDeclaration","scope":6166,"src":"24959:17:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"},"typeName":{"id":6137,"nodeType":"UserDefinedTypeName","pathNode":{"id":6136,"name":"Rounding","nameLocations":["24959:8:29"],"nodeType":"IdentifierPath","referencedDeclaration":4929,"src":"24959:8:29"},"referencedDeclaration":4929,"src":"24959:8:29","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"24943:34:29"},"returnParameters":{"id":6142,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6141,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6166,"src":"25001:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6140,"name":"uint256","nodeType":"ElementaryTypeName","src":"25001:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25000:9:29"},"scope":6523,"src":"24930:255:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6294,"nodeType":"Block","src":"25378:854:29","statements":[{"assignments":[6175],"declarations":[{"constant":false,"id":6175,"mutability":"mutable","name":"result","nameLocation":"25396:6:29","nodeType":"VariableDeclaration","scope":6294,"src":"25388:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6174,"name":"uint256","nodeType":"ElementaryTypeName","src":"25388:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6177,"initialValue":{"hexValue":"30","id":6176,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25405:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"25388:18:29"},{"id":6291,"nodeType":"UncheckedBlock","src":"25416:787:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6182,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6178,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6169,"src":"25444:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"},"id":6181,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":6179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25453:2:29","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":6180,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25459:2:29","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"25453:8:29","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"25444:17:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6194,"nodeType":"IfStatement","src":"25440:103:29","trueBody":{"id":6193,"nodeType":"Block","src":"25463:80:29","statements":[{"expression":{"id":6187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6183,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6169,"src":"25481:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"},"id":6186,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":6184,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25490:2:29","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":6185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25496:2:29","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"25490:8:29","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"25481:17:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6188,"nodeType":"ExpressionStatement","src":"25481:17:29"},{"expression":{"id":6191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6189,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6175,"src":"25516:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3634","id":6190,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25526:2:29","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"25516:12:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6192,"nodeType":"ExpressionStatement","src":"25516:12:29"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6195,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6169,"src":"25560:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"},"id":6198,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":6196,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25569:2:29","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":6197,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25575:2:29","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"25569:8:29","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"25560:17:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6211,"nodeType":"IfStatement","src":"25556:103:29","trueBody":{"id":6210,"nodeType":"Block","src":"25579:80:29","statements":[{"expression":{"id":6204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6200,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6169,"src":"25597:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"},"id":6203,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":6201,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25606:2:29","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":6202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25612:2:29","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"25606:8:29","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"25597:17:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6205,"nodeType":"ExpressionStatement","src":"25597:17:29"},{"expression":{"id":6208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6206,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6175,"src":"25632:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":6207,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25642:2:29","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"25632:12:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6209,"nodeType":"ExpressionStatement","src":"25632:12:29"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6216,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6212,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6169,"src":"25676:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":6215,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":6213,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25685:2:29","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":6214,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25691:2:29","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"25685:8:29","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"25676:17:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6228,"nodeType":"IfStatement","src":"25672:103:29","trueBody":{"id":6227,"nodeType":"Block","src":"25695:80:29","statements":[{"expression":{"id":6221,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6217,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6169,"src":"25713:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":6220,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":6218,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25722:2:29","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":6219,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25728:2:29","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"25722:8:29","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"25713:17:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6222,"nodeType":"ExpressionStatement","src":"25713:17:29"},{"expression":{"id":6225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6223,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6175,"src":"25748:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3136","id":6224,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25758:2:29","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"25748:12:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6226,"nodeType":"ExpressionStatement","src":"25748:12:29"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6233,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6229,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6169,"src":"25792:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":6232,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":6230,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25801:2:29","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":6231,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25807:1:29","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"25801:7:29","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"25792:16:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6245,"nodeType":"IfStatement","src":"25788:100:29","trueBody":{"id":6244,"nodeType":"Block","src":"25810:78:29","statements":[{"expression":{"id":6238,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6234,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6169,"src":"25828:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":6237,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":6235,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25837:2:29","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":6236,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25843:1:29","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"25837:7:29","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"25828:16:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6239,"nodeType":"ExpressionStatement","src":"25828:16:29"},{"expression":{"id":6242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6240,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6175,"src":"25862:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"38","id":6241,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25872:1:29","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"25862:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6243,"nodeType":"ExpressionStatement","src":"25862:11:29"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6246,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6169,"src":"25905:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":6249,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":6247,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25914:2:29","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":6248,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25920:1:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25914:7:29","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"25905:16:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6262,"nodeType":"IfStatement","src":"25901:100:29","trueBody":{"id":6261,"nodeType":"Block","src":"25923:78:29","statements":[{"expression":{"id":6255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6251,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6169,"src":"25941:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":6254,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":6252,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25950:2:29","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":6253,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25956:1:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25950:7:29","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"25941:16:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6256,"nodeType":"ExpressionStatement","src":"25941:16:29"},{"expression":{"id":6259,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6257,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6175,"src":"25975:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"34","id":6258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25985:1:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25975:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6260,"nodeType":"ExpressionStatement","src":"25975:11:29"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6263,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6169,"src":"26018:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":6266,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":6264,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26027:2:29","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":6265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26033:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"26027:7:29","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"26018:16:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6279,"nodeType":"IfStatement","src":"26014:100:29","trueBody":{"id":6278,"nodeType":"Block","src":"26036:78:29","statements":[{"expression":{"id":6272,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6268,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6169,"src":"26054:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":6271,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":6269,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26063:2:29","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":6270,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26069:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"26063:7:29","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"26054:16:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6273,"nodeType":"ExpressionStatement","src":"26054:16:29"},{"expression":{"id":6276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6274,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6175,"src":"26088:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"32","id":6275,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26098:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"26088:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6277,"nodeType":"ExpressionStatement","src":"26088:11:29"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6280,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6169,"src":"26131:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"id":6283,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":6281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26140:2:29","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"31","id":6282,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26146:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"26140:7:29","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"}},"src":"26131:16:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6290,"nodeType":"IfStatement","src":"26127:66:29","trueBody":{"id":6289,"nodeType":"Block","src":"26149:44:29","statements":[{"expression":{"id":6287,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6285,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6175,"src":"26167:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":6286,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26177:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"26167:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6288,"nodeType":"ExpressionStatement","src":"26167:11:29"}]}}]},{"expression":{"id":6292,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6175,"src":"26219:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6173,"id":6293,"nodeType":"Return","src":"26212:13:29"}]},"documentation":{"id":6167,"nodeType":"StructuredDocumentation","src":"25191:120:29","text":" @dev Return the log in base 10 of a positive value rounded towards zero.\n Returns 0 if given 0."},"id":6295,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"25325:5:29","nodeType":"FunctionDefinition","parameters":{"id":6170,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6169,"mutability":"mutable","name":"value","nameLocation":"25339:5:29","nodeType":"VariableDeclaration","scope":6295,"src":"25331:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6168,"name":"uint256","nodeType":"ElementaryTypeName","src":"25331:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25330:15:29"},"returnParameters":{"id":6173,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6172,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6295,"src":"25369:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6171,"name":"uint256","nodeType":"ElementaryTypeName","src":"25369:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25368:9:29"},"scope":6523,"src":"25316:916:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6328,"nodeType":"Block","src":"26467:177:29","statements":[{"id":6327,"nodeType":"UncheckedBlock","src":"26477:161:29","statements":[{"assignments":[6307],"declarations":[{"constant":false,"id":6307,"mutability":"mutable","name":"result","nameLocation":"26509:6:29","nodeType":"VariableDeclaration","scope":6327,"src":"26501:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6306,"name":"uint256","nodeType":"ElementaryTypeName","src":"26501:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6311,"initialValue":{"arguments":[{"id":6309,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6298,"src":"26524:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6308,"name":"log10","nodeType":"Identifier","overloadedDeclarations":[6295,6329],"referencedDeclaration":6295,"src":"26518:5:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":6310,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26518:12:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"26501:29:29"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6312,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6307,"src":"26551:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":6323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":6316,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6301,"src":"26593:8:29","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}],"id":6315,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6522,"src":"26576:16:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$4929_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":6317,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26576:26:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":6318,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26606:2:29","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"id":6319,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6307,"src":"26612:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26606:12:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":6321,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6298,"src":"26621:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26606:20:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26576:50:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":6313,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"26560:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":6314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26569:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"26560:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":6324,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26560:67:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26551:76:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6305,"id":6326,"nodeType":"Return","src":"26544:83:29"}]}]},"documentation":{"id":6296,"nodeType":"StructuredDocumentation","src":"26238:143:29","text":" @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":6329,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"26395:5:29","nodeType":"FunctionDefinition","parameters":{"id":6302,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6298,"mutability":"mutable","name":"value","nameLocation":"26409:5:29","nodeType":"VariableDeclaration","scope":6329,"src":"26401:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6297,"name":"uint256","nodeType":"ElementaryTypeName","src":"26401:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6301,"mutability":"mutable","name":"rounding","nameLocation":"26425:8:29","nodeType":"VariableDeclaration","scope":6329,"src":"26416:17:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"},"typeName":{"id":6300,"nodeType":"UserDefinedTypeName","pathNode":{"id":6299,"name":"Rounding","nameLocations":["26416:8:29"],"nodeType":"IdentifierPath","referencedDeclaration":4929,"src":"26416:8:29"},"referencedDeclaration":4929,"src":"26416:8:29","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"26400:34:29"},"returnParameters":{"id":6305,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6304,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6329,"src":"26458:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6303,"name":"uint256","nodeType":"ElementaryTypeName","src":"26458:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26457:9:29"},"scope":6523,"src":"26386:258:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6465,"nodeType":"Block","src":"26964:674:29","statements":[{"assignments":[6338],"declarations":[{"constant":false,"id":6338,"mutability":"mutable","name":"result","nameLocation":"26982:6:29","nodeType":"VariableDeclaration","scope":6465,"src":"26974:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6337,"name":"uint256","nodeType":"ElementaryTypeName","src":"26974:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6340,"initialValue":{"hexValue":"30","id":6339,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26991:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"26974:18:29"},{"assignments":[6342],"declarations":[{"constant":false,"id":6342,"mutability":"mutable","name":"isGt","nameLocation":"27010:4:29","nodeType":"VariableDeclaration","scope":6465,"src":"27002:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6341,"name":"uint256","nodeType":"ElementaryTypeName","src":"27002:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6343,"nodeType":"VariableDeclarationStatement","src":"27002:12:29"},{"id":6462,"nodeType":"UncheckedBlock","src":"27024:585:29","statements":[{"expression":{"id":6356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6344,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6342,"src":"27048:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6347,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6332,"src":"27071:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"},"id":6353,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"},"id":6350,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":6348,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27080:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":6349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27085:3:29","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"27080:8:29","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}}],"id":6351,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27079:10:29","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":6352,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27092:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27079:14:29","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"}},"src":"27071:22:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":6345,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"27055:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":6346,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27064:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"27055:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":6355,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27055:39:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27048:46:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6357,"nodeType":"ExpressionStatement","src":"27048:46:29"},{"expression":{"id":6362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6358,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6332,"src":"27108:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6359,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6342,"src":"27118:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"313238","id":6360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27125:3:29","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"27118:10:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27108:20:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6363,"nodeType":"ExpressionStatement","src":"27108:20:29"},{"expression":{"id":6368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6364,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6338,"src":"27142:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6365,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6342,"src":"27152:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3136","id":6366,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27159:2:29","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"27152:9:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27142:19:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6369,"nodeType":"ExpressionStatement","src":"27142:19:29"},{"expression":{"id":6382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6370,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6342,"src":"27176:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6380,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6373,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6332,"src":"27199:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"},"id":6379,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"},"id":6376,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":6374,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27208:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":6375,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27213:2:29","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"27208:7:29","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}}],"id":6377,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27207:9:29","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":6378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27219:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27207:13:29","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"}},"src":"27199:21:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":6371,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"27183:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":6372,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27192:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"27183:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":6381,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27183:38:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27176:45:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6383,"nodeType":"ExpressionStatement","src":"27176:45:29"},{"expression":{"id":6388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6384,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6332,"src":"27235:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6385,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6342,"src":"27245:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3634","id":6386,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27252:2:29","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"27245:9:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27235:19:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6389,"nodeType":"ExpressionStatement","src":"27235:19:29"},{"expression":{"id":6394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6390,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6338,"src":"27268:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6391,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6342,"src":"27278:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"38","id":6392,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27285:1:29","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"27278:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27268:18:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6395,"nodeType":"ExpressionStatement","src":"27268:18:29"},{"expression":{"id":6408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6396,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6342,"src":"27301:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6399,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6332,"src":"27324:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"id":6405,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"},"id":6402,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":6400,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27333:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":6401,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27338:2:29","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"27333:7:29","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}}],"id":6403,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27332:9:29","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":6404,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27344:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27332:13:29","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"}},"src":"27324:21:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":6397,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"27308:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":6398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27317:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"27308:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":6407,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27308:38:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27301:45:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6409,"nodeType":"ExpressionStatement","src":"27301:45:29"},{"expression":{"id":6414,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6410,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6332,"src":"27360:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6413,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6411,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6342,"src":"27370:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3332","id":6412,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27377:2:29","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"27370:9:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27360:19:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6415,"nodeType":"ExpressionStatement","src":"27360:19:29"},{"expression":{"id":6420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6416,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6338,"src":"27393:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6417,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6342,"src":"27403:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"34","id":6418,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27410:1:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"27403:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27393:18:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6421,"nodeType":"ExpressionStatement","src":"27393:18:29"},{"expression":{"id":6434,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6422,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6342,"src":"27426:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6425,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6332,"src":"27449:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"},"id":6431,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"},"id":6428,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":6426,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27458:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":6427,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27463:2:29","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"27458:7:29","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}}],"id":6429,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27457:9:29","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":6430,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27469:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27457:13:29","typeDescriptions":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"}},"src":"27449:21:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":6423,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"27433:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":6424,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27442:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"27433:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":6433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27433:38:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27426:45:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6435,"nodeType":"ExpressionStatement","src":"27426:45:29"},{"expression":{"id":6440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6436,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6332,"src":"27485:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6437,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6342,"src":"27495:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3136","id":6438,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27502:2:29","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"27495:9:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27485:19:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6441,"nodeType":"ExpressionStatement","src":"27485:19:29"},{"expression":{"id":6446,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6442,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6338,"src":"27518:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6443,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6342,"src":"27528:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":6444,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27535:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"27528:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27518:18:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6447,"nodeType":"ExpressionStatement","src":"27518:18:29"},{"expression":{"id":6460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6448,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6338,"src":"27551:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6451,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6332,"src":"27577:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"id":6457,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":6454,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":6452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27586:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":6453,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27591:1:29","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"27586:6:29","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":6455,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27585:8:29","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":6456,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27596:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27585:12:29","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"}},"src":"27577:20:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":6449,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"27561:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":6450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27570:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"27561:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":6459,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27561:37:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27551:47:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6461,"nodeType":"ExpressionStatement","src":"27551:47:29"}]},{"expression":{"id":6463,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6338,"src":"27625:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6336,"id":6464,"nodeType":"Return","src":"27618:13:29"}]},"documentation":{"id":6330,"nodeType":"StructuredDocumentation","src":"26650:246:29","text":" @dev Return the log in base 256 of a positive value rounded towards zero.\n Returns 0 if given 0.\n Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string."},"id":6466,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"26910:6:29","nodeType":"FunctionDefinition","parameters":{"id":6333,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6332,"mutability":"mutable","name":"value","nameLocation":"26925:5:29","nodeType":"VariableDeclaration","scope":6466,"src":"26917:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6331,"name":"uint256","nodeType":"ElementaryTypeName","src":"26917:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26916:15:29"},"returnParameters":{"id":6336,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6335,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6466,"src":"26955:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6334,"name":"uint256","nodeType":"ElementaryTypeName","src":"26955:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26954:9:29"},"scope":6523,"src":"26901:737:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6502,"nodeType":"Block","src":"27875:184:29","statements":[{"id":6501,"nodeType":"UncheckedBlock","src":"27885:168:29","statements":[{"assignments":[6478],"declarations":[{"constant":false,"id":6478,"mutability":"mutable","name":"result","nameLocation":"27917:6:29","nodeType":"VariableDeclaration","scope":6501,"src":"27909:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6477,"name":"uint256","nodeType":"ElementaryTypeName","src":"27909:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6482,"initialValue":{"arguments":[{"id":6480,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6469,"src":"27933:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6479,"name":"log256","nodeType":"Identifier","overloadedDeclarations":[6466,6503],"referencedDeclaration":6466,"src":"27926:6:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":6481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27926:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"27909:30:29"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6483,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6478,"src":"27960:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":6497,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":6487,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6472,"src":"28002:8:29","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}],"id":6486,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6522,"src":"27985:16:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$4929_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":6488,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27985:26:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6496,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6494,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":6489,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28015:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6490,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6478,"src":"28021:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"33","id":6491,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28031:1:29","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"28021:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":6493,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"28020:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28015:18:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":6495,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6469,"src":"28036:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28015:26:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"27985:56:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":6484,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"27969:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":6485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27978:6:29","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"27969:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":6498,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27969:73:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27960:82:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6476,"id":6500,"nodeType":"Return","src":"27953:89:29"}]}]},"documentation":{"id":6467,"nodeType":"StructuredDocumentation","src":"27644:144:29","text":" @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":6503,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"27802:6:29","nodeType":"FunctionDefinition","parameters":{"id":6473,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6469,"mutability":"mutable","name":"value","nameLocation":"27817:5:29","nodeType":"VariableDeclaration","scope":6503,"src":"27809:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6468,"name":"uint256","nodeType":"ElementaryTypeName","src":"27809:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6472,"mutability":"mutable","name":"rounding","nameLocation":"27833:8:29","nodeType":"VariableDeclaration","scope":6503,"src":"27824:17:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"},"typeName":{"id":6471,"nodeType":"UserDefinedTypeName","pathNode":{"id":6470,"name":"Rounding","nameLocations":["27824:8:29"],"nodeType":"IdentifierPath","referencedDeclaration":4929,"src":"27824:8:29"},"referencedDeclaration":4929,"src":"27824:8:29","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"27808:34:29"},"returnParameters":{"id":6476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6475,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6503,"src":"27866:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6474,"name":"uint256","nodeType":"ElementaryTypeName","src":"27866:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"27865:9:29"},"scope":6523,"src":"27793:266:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6521,"nodeType":"Block","src":"28257:48:29","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":6519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":6517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":6514,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6507,"src":"28280:8:29","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}],"id":6513,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28274:5:29","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":6512,"name":"uint8","nodeType":"ElementaryTypeName","src":"28274:5:29","typeDescriptions":{}}},"id":6515,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28274:15:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"32","id":6516,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28292:1:29","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"28274:19:29","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":6518,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28297:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"28274:24:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":6511,"id":6520,"nodeType":"Return","src":"28267:31:29"}]},"documentation":{"id":6504,"nodeType":"StructuredDocumentation","src":"28065:113:29","text":" @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers."},"id":6522,"implemented":true,"kind":"function","modifiers":[],"name":"unsignedRoundsUp","nameLocation":"28192:16:29","nodeType":"FunctionDefinition","parameters":{"id":6508,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6507,"mutability":"mutable","name":"rounding","nameLocation":"28218:8:29","nodeType":"VariableDeclaration","scope":6522,"src":"28209:17:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"},"typeName":{"id":6506,"nodeType":"UserDefinedTypeName","pathNode":{"id":6505,"name":"Rounding","nameLocations":["28209:8:29"],"nodeType":"IdentifierPath","referencedDeclaration":4929,"src":"28209:8:29"},"referencedDeclaration":4929,"src":"28209:8:29","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4929","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"28208:19:29"},"returnParameters":{"id":6511,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6510,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6522,"src":"28251:4:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6509,"name":"bool","nodeType":"ElementaryTypeName","src":"28251:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"28250:6:29"},"scope":6523,"src":"28183:122:29","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":6524,"src":"281:28026:29","usedErrors":[],"usedEvents":[]}],"src":"103:28205:29"},"id":29},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","exportedSymbols":{"SafeCast":[8288]},"id":8289,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6525,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"192:24:30"},{"abstract":false,"baseContracts":[],"canonicalName":"SafeCast","contractDependencies":[],"contractKind":"library","documentation":{"id":6526,"nodeType":"StructuredDocumentation","src":"218:550:30","text":" @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow\n checks.\n Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\n easily result in undesired exploitation or bugs, since developers usually\n assume that overflows raise errors. `SafeCast` restores this intuition by\n reverting the transaction when such an operation overflows.\n Using this library instead of the unchecked operations eliminates an entire\n class of bugs, so it's recommended to use it always."},"fullyImplemented":true,"id":8288,"linearizedBaseContracts":[8288],"name":"SafeCast","nameLocation":"777:8:30","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6527,"nodeType":"StructuredDocumentation","src":"792:68:30","text":" @dev Value doesn't fit in an uint of `bits` size."},"errorSelector":"6dfcc650","id":6533,"name":"SafeCastOverflowedUintDowncast","nameLocation":"871:30:30","nodeType":"ErrorDefinition","parameters":{"id":6532,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6529,"mutability":"mutable","name":"bits","nameLocation":"908:4:30","nodeType":"VariableDeclaration","scope":6533,"src":"902:10:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":6528,"name":"uint8","nodeType":"ElementaryTypeName","src":"902:5:30","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":6531,"mutability":"mutable","name":"value","nameLocation":"922:5:30","nodeType":"VariableDeclaration","scope":6533,"src":"914:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6530,"name":"uint256","nodeType":"ElementaryTypeName","src":"914:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"901:27:30"},"src":"865:64:30"},{"documentation":{"id":6534,"nodeType":"StructuredDocumentation","src":"935:75:30","text":" @dev An int value doesn't fit in an uint of `bits` size."},"errorSelector":"a8ce4432","id":6538,"name":"SafeCastOverflowedIntToUint","nameLocation":"1021:27:30","nodeType":"ErrorDefinition","parameters":{"id":6537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6536,"mutability":"mutable","name":"value","nameLocation":"1056:5:30","nodeType":"VariableDeclaration","scope":6538,"src":"1049:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6535,"name":"int256","nodeType":"ElementaryTypeName","src":"1049:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1048:14:30"},"src":"1015:48:30"},{"documentation":{"id":6539,"nodeType":"StructuredDocumentation","src":"1069:67:30","text":" @dev Value doesn't fit in an int of `bits` size."},"errorSelector":"327269a7","id":6545,"name":"SafeCastOverflowedIntDowncast","nameLocation":"1147:29:30","nodeType":"ErrorDefinition","parameters":{"id":6544,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6541,"mutability":"mutable","name":"bits","nameLocation":"1183:4:30","nodeType":"VariableDeclaration","scope":6545,"src":"1177:10:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":6540,"name":"uint8","nodeType":"ElementaryTypeName","src":"1177:5:30","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":6543,"mutability":"mutable","name":"value","nameLocation":"1196:5:30","nodeType":"VariableDeclaration","scope":6545,"src":"1189:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6542,"name":"int256","nodeType":"ElementaryTypeName","src":"1189:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1176:26:30"},"src":"1141:62:30"},{"documentation":{"id":6546,"nodeType":"StructuredDocumentation","src":"1209:75:30","text":" @dev An uint value doesn't fit in an int of `bits` size."},"errorSelector":"24775e06","id":6550,"name":"SafeCastOverflowedUintToInt","nameLocation":"1295:27:30","nodeType":"ErrorDefinition","parameters":{"id":6549,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6548,"mutability":"mutable","name":"value","nameLocation":"1331:5:30","nodeType":"VariableDeclaration","scope":6550,"src":"1323:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6547,"name":"uint256","nodeType":"ElementaryTypeName","src":"1323:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1322:15:30"},"src":"1289:49:30"},{"body":{"id":6577,"nodeType":"Block","src":"1695:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6558,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6553,"src":"1709:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6561,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1722:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":6560,"name":"uint248","nodeType":"ElementaryTypeName","src":"1722:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"}],"id":6559,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1717:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6562,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1717:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint248","typeString":"type(uint248)"}},"id":6563,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1731:3:30","memberName":"max","nodeType":"MemberAccess","src":"1717:17:30","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"src":"1709:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6571,"nodeType":"IfStatement","src":"1705:105:30","trueBody":{"id":6570,"nodeType":"Block","src":"1736:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"323438","id":6566,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1788:3:30","typeDescriptions":{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},"value":"248"},{"id":6567,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6553,"src":"1793:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6565,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"1757:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6568,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1757:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6569,"nodeType":"RevertStatement","src":"1750:49:30"}]}},{"expression":{"arguments":[{"id":6574,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6553,"src":"1834:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6573,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1826:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":6572,"name":"uint248","nodeType":"ElementaryTypeName","src":"1826:7:30","typeDescriptions":{}}},"id":6575,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1826:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"functionReturnParameters":6557,"id":6576,"nodeType":"Return","src":"1819:21:30"}]},"documentation":{"id":6551,"nodeType":"StructuredDocumentation","src":"1344:280:30","text":" @dev Returns the downcasted uint248 from uint256, reverting on\n overflow (when the input is greater than largest uint248).\n Counterpart to Solidity's `uint248` operator.\n Requirements:\n - input must fit into 248 bits"},"id":6578,"implemented":true,"kind":"function","modifiers":[],"name":"toUint248","nameLocation":"1638:9:30","nodeType":"FunctionDefinition","parameters":{"id":6554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6553,"mutability":"mutable","name":"value","nameLocation":"1656:5:30","nodeType":"VariableDeclaration","scope":6578,"src":"1648:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6552,"name":"uint256","nodeType":"ElementaryTypeName","src":"1648:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1647:15:30"},"returnParameters":{"id":6557,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6556,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6578,"src":"1686:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"},"typeName":{"id":6555,"name":"uint248","nodeType":"ElementaryTypeName","src":"1686:7:30","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"visibility":"internal"}],"src":"1685:9:30"},"scope":8288,"src":"1629:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6605,"nodeType":"Block","src":"2204:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6586,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6581,"src":"2218:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6589,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2231:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":6588,"name":"uint240","nodeType":"ElementaryTypeName","src":"2231:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"}],"id":6587,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2226:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6590,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2226:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint240","typeString":"type(uint240)"}},"id":6591,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2240:3:30","memberName":"max","nodeType":"MemberAccess","src":"2226:17:30","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"src":"2218:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6599,"nodeType":"IfStatement","src":"2214:105:30","trueBody":{"id":6598,"nodeType":"Block","src":"2245:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"323430","id":6594,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2297:3:30","typeDescriptions":{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},"value":"240"},{"id":6595,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6581,"src":"2302:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6593,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"2266:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2266:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6597,"nodeType":"RevertStatement","src":"2259:49:30"}]}},{"expression":{"arguments":[{"id":6602,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6581,"src":"2343:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6601,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2335:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":6600,"name":"uint240","nodeType":"ElementaryTypeName","src":"2335:7:30","typeDescriptions":{}}},"id":6603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2335:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"functionReturnParameters":6585,"id":6604,"nodeType":"Return","src":"2328:21:30"}]},"documentation":{"id":6579,"nodeType":"StructuredDocumentation","src":"1853:280:30","text":" @dev Returns the downcasted uint240 from uint256, reverting on\n overflow (when the input is greater than largest uint240).\n Counterpart to Solidity's `uint240` operator.\n Requirements:\n - input must fit into 240 bits"},"id":6606,"implemented":true,"kind":"function","modifiers":[],"name":"toUint240","nameLocation":"2147:9:30","nodeType":"FunctionDefinition","parameters":{"id":6582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6581,"mutability":"mutable","name":"value","nameLocation":"2165:5:30","nodeType":"VariableDeclaration","scope":6606,"src":"2157:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6580,"name":"uint256","nodeType":"ElementaryTypeName","src":"2157:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2156:15:30"},"returnParameters":{"id":6585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6584,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6606,"src":"2195:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"},"typeName":{"id":6583,"name":"uint240","nodeType":"ElementaryTypeName","src":"2195:7:30","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"visibility":"internal"}],"src":"2194:9:30"},"scope":8288,"src":"2138:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6633,"nodeType":"Block","src":"2713:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6620,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6614,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6609,"src":"2727:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6617,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2740:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":6616,"name":"uint232","nodeType":"ElementaryTypeName","src":"2740:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"}],"id":6615,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2735:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6618,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2735:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint232","typeString":"type(uint232)"}},"id":6619,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2749:3:30","memberName":"max","nodeType":"MemberAccess","src":"2735:17:30","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"src":"2727:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6627,"nodeType":"IfStatement","src":"2723:105:30","trueBody":{"id":6626,"nodeType":"Block","src":"2754:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"323332","id":6622,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2806:3:30","typeDescriptions":{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},"value":"232"},{"id":6623,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6609,"src":"2811:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6621,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"2775:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6624,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2775:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6625,"nodeType":"RevertStatement","src":"2768:49:30"}]}},{"expression":{"arguments":[{"id":6630,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6609,"src":"2852:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6629,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2844:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":6628,"name":"uint232","nodeType":"ElementaryTypeName","src":"2844:7:30","typeDescriptions":{}}},"id":6631,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2844:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"functionReturnParameters":6613,"id":6632,"nodeType":"Return","src":"2837:21:30"}]},"documentation":{"id":6607,"nodeType":"StructuredDocumentation","src":"2362:280:30","text":" @dev Returns the downcasted uint232 from uint256, reverting on\n overflow (when the input is greater than largest uint232).\n Counterpart to Solidity's `uint232` operator.\n Requirements:\n - input must fit into 232 bits"},"id":6634,"implemented":true,"kind":"function","modifiers":[],"name":"toUint232","nameLocation":"2656:9:30","nodeType":"FunctionDefinition","parameters":{"id":6610,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6609,"mutability":"mutable","name":"value","nameLocation":"2674:5:30","nodeType":"VariableDeclaration","scope":6634,"src":"2666:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6608,"name":"uint256","nodeType":"ElementaryTypeName","src":"2666:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2665:15:30"},"returnParameters":{"id":6613,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6612,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6634,"src":"2704:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"},"typeName":{"id":6611,"name":"uint232","nodeType":"ElementaryTypeName","src":"2704:7:30","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"visibility":"internal"}],"src":"2703:9:30"},"scope":8288,"src":"2647:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6661,"nodeType":"Block","src":"3222:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6648,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6642,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6637,"src":"3236:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6645,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3249:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":6644,"name":"uint224","nodeType":"ElementaryTypeName","src":"3249:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"}],"id":6643,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3244:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6646,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3244:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint224","typeString":"type(uint224)"}},"id":6647,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3258:3:30","memberName":"max","nodeType":"MemberAccess","src":"3244:17:30","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"src":"3236:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6655,"nodeType":"IfStatement","src":"3232:105:30","trueBody":{"id":6654,"nodeType":"Block","src":"3263:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"323234","id":6650,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3315:3:30","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},{"id":6651,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6637,"src":"3320:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6649,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"3284:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6652,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3284:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6653,"nodeType":"RevertStatement","src":"3277:49:30"}]}},{"expression":{"arguments":[{"id":6658,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6637,"src":"3361:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6657,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3353:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":6656,"name":"uint224","nodeType":"ElementaryTypeName","src":"3353:7:30","typeDescriptions":{}}},"id":6659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3353:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":6641,"id":6660,"nodeType":"Return","src":"3346:21:30"}]},"documentation":{"id":6635,"nodeType":"StructuredDocumentation","src":"2871:280:30","text":" @dev Returns the downcasted uint224 from uint256, reverting on\n overflow (when the input is greater than largest uint224).\n Counterpart to Solidity's `uint224` operator.\n Requirements:\n - input must fit into 224 bits"},"id":6662,"implemented":true,"kind":"function","modifiers":[],"name":"toUint224","nameLocation":"3165:9:30","nodeType":"FunctionDefinition","parameters":{"id":6638,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6637,"mutability":"mutable","name":"value","nameLocation":"3183:5:30","nodeType":"VariableDeclaration","scope":6662,"src":"3175:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6636,"name":"uint256","nodeType":"ElementaryTypeName","src":"3175:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3174:15:30"},"returnParameters":{"id":6641,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6640,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6662,"src":"3213:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":6639,"name":"uint224","nodeType":"ElementaryTypeName","src":"3213:7:30","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"3212:9:30"},"scope":8288,"src":"3156:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6689,"nodeType":"Block","src":"3731:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6670,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6665,"src":"3745:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6673,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3758:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":6672,"name":"uint216","nodeType":"ElementaryTypeName","src":"3758:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"}],"id":6671,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3753:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6674,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3753:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint216","typeString":"type(uint216)"}},"id":6675,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3767:3:30","memberName":"max","nodeType":"MemberAccess","src":"3753:17:30","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"src":"3745:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6683,"nodeType":"IfStatement","src":"3741:105:30","trueBody":{"id":6682,"nodeType":"Block","src":"3772:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"323136","id":6678,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3824:3:30","typeDescriptions":{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},"value":"216"},{"id":6679,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6665,"src":"3829:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6677,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"3793:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3793:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6681,"nodeType":"RevertStatement","src":"3786:49:30"}]}},{"expression":{"arguments":[{"id":6686,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6665,"src":"3870:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6685,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3862:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":6684,"name":"uint216","nodeType":"ElementaryTypeName","src":"3862:7:30","typeDescriptions":{}}},"id":6687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3862:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"functionReturnParameters":6669,"id":6688,"nodeType":"Return","src":"3855:21:30"}]},"documentation":{"id":6663,"nodeType":"StructuredDocumentation","src":"3380:280:30","text":" @dev Returns the downcasted uint216 from uint256, reverting on\n overflow (when the input is greater than largest uint216).\n Counterpart to Solidity's `uint216` operator.\n Requirements:\n - input must fit into 216 bits"},"id":6690,"implemented":true,"kind":"function","modifiers":[],"name":"toUint216","nameLocation":"3674:9:30","nodeType":"FunctionDefinition","parameters":{"id":6666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6665,"mutability":"mutable","name":"value","nameLocation":"3692:5:30","nodeType":"VariableDeclaration","scope":6690,"src":"3684:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6664,"name":"uint256","nodeType":"ElementaryTypeName","src":"3684:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3683:15:30"},"returnParameters":{"id":6669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6668,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6690,"src":"3722:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":6667,"name":"uint216","nodeType":"ElementaryTypeName","src":"3722:7:30","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"3721:9:30"},"scope":8288,"src":"3665:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6717,"nodeType":"Block","src":"4240:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6698,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6693,"src":"4254:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6701,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4267:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":6700,"name":"uint208","nodeType":"ElementaryTypeName","src":"4267:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"}],"id":6699,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4262:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6702,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4262:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint208","typeString":"type(uint208)"}},"id":6703,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4276:3:30","memberName":"max","nodeType":"MemberAccess","src":"4262:17:30","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"4254:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6711,"nodeType":"IfStatement","src":"4250:105:30","trueBody":{"id":6710,"nodeType":"Block","src":"4281:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"323038","id":6706,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4333:3:30","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"value":"208"},{"id":6707,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6693,"src":"4338:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6705,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"4302:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6708,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4302:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6709,"nodeType":"RevertStatement","src":"4295:49:30"}]}},{"expression":{"arguments":[{"id":6714,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6693,"src":"4379:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6713,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4371:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":6712,"name":"uint208","nodeType":"ElementaryTypeName","src":"4371:7:30","typeDescriptions":{}}},"id":6715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4371:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":6697,"id":6716,"nodeType":"Return","src":"4364:21:30"}]},"documentation":{"id":6691,"nodeType":"StructuredDocumentation","src":"3889:280:30","text":" @dev Returns the downcasted uint208 from uint256, reverting on\n overflow (when the input is greater than largest uint208).\n Counterpart to Solidity's `uint208` operator.\n Requirements:\n - input must fit into 208 bits"},"id":6718,"implemented":true,"kind":"function","modifiers":[],"name":"toUint208","nameLocation":"4183:9:30","nodeType":"FunctionDefinition","parameters":{"id":6694,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6693,"mutability":"mutable","name":"value","nameLocation":"4201:5:30","nodeType":"VariableDeclaration","scope":6718,"src":"4193:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6692,"name":"uint256","nodeType":"ElementaryTypeName","src":"4193:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4192:15:30"},"returnParameters":{"id":6697,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6696,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6718,"src":"4231:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":6695,"name":"uint208","nodeType":"ElementaryTypeName","src":"4231:7:30","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"4230:9:30"},"scope":8288,"src":"4174:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6745,"nodeType":"Block","src":"4749:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6726,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6721,"src":"4763:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6729,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4776:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":6728,"name":"uint200","nodeType":"ElementaryTypeName","src":"4776:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"}],"id":6727,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4771:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6730,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4771:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint200","typeString":"type(uint200)"}},"id":6731,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4785:3:30","memberName":"max","nodeType":"MemberAccess","src":"4771:17:30","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"src":"4763:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6739,"nodeType":"IfStatement","src":"4759:105:30","trueBody":{"id":6738,"nodeType":"Block","src":"4790:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"323030","id":6734,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4842:3:30","typeDescriptions":{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},"value":"200"},{"id":6735,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6721,"src":"4847:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6733,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"4811:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6736,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4811:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6737,"nodeType":"RevertStatement","src":"4804:49:30"}]}},{"expression":{"arguments":[{"id":6742,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6721,"src":"4888:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6741,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4880:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":6740,"name":"uint200","nodeType":"ElementaryTypeName","src":"4880:7:30","typeDescriptions":{}}},"id":6743,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4880:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"functionReturnParameters":6725,"id":6744,"nodeType":"Return","src":"4873:21:30"}]},"documentation":{"id":6719,"nodeType":"StructuredDocumentation","src":"4398:280:30","text":" @dev Returns the downcasted uint200 from uint256, reverting on\n overflow (when the input is greater than largest uint200).\n Counterpart to Solidity's `uint200` operator.\n Requirements:\n - input must fit into 200 bits"},"id":6746,"implemented":true,"kind":"function","modifiers":[],"name":"toUint200","nameLocation":"4692:9:30","nodeType":"FunctionDefinition","parameters":{"id":6722,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6721,"mutability":"mutable","name":"value","nameLocation":"4710:5:30","nodeType":"VariableDeclaration","scope":6746,"src":"4702:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6720,"name":"uint256","nodeType":"ElementaryTypeName","src":"4702:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4701:15:30"},"returnParameters":{"id":6725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6724,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6746,"src":"4740:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"},"typeName":{"id":6723,"name":"uint200","nodeType":"ElementaryTypeName","src":"4740:7:30","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"visibility":"internal"}],"src":"4739:9:30"},"scope":8288,"src":"4683:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6773,"nodeType":"Block","src":"5258:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6754,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6749,"src":"5272:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6757,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5285:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":6756,"name":"uint192","nodeType":"ElementaryTypeName","src":"5285:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"}],"id":6755,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5280:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6758,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5280:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint192","typeString":"type(uint192)"}},"id":6759,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5294:3:30","memberName":"max","nodeType":"MemberAccess","src":"5280:17:30","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"src":"5272:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6767,"nodeType":"IfStatement","src":"5268:105:30","trueBody":{"id":6766,"nodeType":"Block","src":"5299:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313932","id":6762,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5351:3:30","typeDescriptions":{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},"value":"192"},{"id":6763,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6749,"src":"5356:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6761,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"5320:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6764,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5320:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6765,"nodeType":"RevertStatement","src":"5313:49:30"}]}},{"expression":{"arguments":[{"id":6770,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6749,"src":"5397:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6769,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5389:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":6768,"name":"uint192","nodeType":"ElementaryTypeName","src":"5389:7:30","typeDescriptions":{}}},"id":6771,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5389:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"functionReturnParameters":6753,"id":6772,"nodeType":"Return","src":"5382:21:30"}]},"documentation":{"id":6747,"nodeType":"StructuredDocumentation","src":"4907:280:30","text":" @dev Returns the downcasted uint192 from uint256, reverting on\n overflow (when the input is greater than largest uint192).\n Counterpart to Solidity's `uint192` operator.\n Requirements:\n - input must fit into 192 bits"},"id":6774,"implemented":true,"kind":"function","modifiers":[],"name":"toUint192","nameLocation":"5201:9:30","nodeType":"FunctionDefinition","parameters":{"id":6750,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6749,"mutability":"mutable","name":"value","nameLocation":"5219:5:30","nodeType":"VariableDeclaration","scope":6774,"src":"5211:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6748,"name":"uint256","nodeType":"ElementaryTypeName","src":"5211:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5210:15:30"},"returnParameters":{"id":6753,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6752,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6774,"src":"5249:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":6751,"name":"uint192","nodeType":"ElementaryTypeName","src":"5249:7:30","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"5248:9:30"},"scope":8288,"src":"5192:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6801,"nodeType":"Block","src":"5767:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6782,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6777,"src":"5781:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6785,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5794:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":6784,"name":"uint184","nodeType":"ElementaryTypeName","src":"5794:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"}],"id":6783,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5789:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6786,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5789:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint184","typeString":"type(uint184)"}},"id":6787,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5803:3:30","memberName":"max","nodeType":"MemberAccess","src":"5789:17:30","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"src":"5781:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6795,"nodeType":"IfStatement","src":"5777:105:30","trueBody":{"id":6794,"nodeType":"Block","src":"5808:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313834","id":6790,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5860:3:30","typeDescriptions":{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},"value":"184"},{"id":6791,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6777,"src":"5865:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6789,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"5829:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6792,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5829:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6793,"nodeType":"RevertStatement","src":"5822:49:30"}]}},{"expression":{"arguments":[{"id":6798,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6777,"src":"5906:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6797,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5898:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":6796,"name":"uint184","nodeType":"ElementaryTypeName","src":"5898:7:30","typeDescriptions":{}}},"id":6799,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5898:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"functionReturnParameters":6781,"id":6800,"nodeType":"Return","src":"5891:21:30"}]},"documentation":{"id":6775,"nodeType":"StructuredDocumentation","src":"5416:280:30","text":" @dev Returns the downcasted uint184 from uint256, reverting on\n overflow (when the input is greater than largest uint184).\n Counterpart to Solidity's `uint184` operator.\n Requirements:\n - input must fit into 184 bits"},"id":6802,"implemented":true,"kind":"function","modifiers":[],"name":"toUint184","nameLocation":"5710:9:30","nodeType":"FunctionDefinition","parameters":{"id":6778,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6777,"mutability":"mutable","name":"value","nameLocation":"5728:5:30","nodeType":"VariableDeclaration","scope":6802,"src":"5720:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6776,"name":"uint256","nodeType":"ElementaryTypeName","src":"5720:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5719:15:30"},"returnParameters":{"id":6781,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6780,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6802,"src":"5758:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"},"typeName":{"id":6779,"name":"uint184","nodeType":"ElementaryTypeName","src":"5758:7:30","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"visibility":"internal"}],"src":"5757:9:30"},"scope":8288,"src":"5701:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6829,"nodeType":"Block","src":"6276:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6816,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6810,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6805,"src":"6290:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6813,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6303:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":6812,"name":"uint176","nodeType":"ElementaryTypeName","src":"6303:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"}],"id":6811,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6298:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6814,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6298:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint176","typeString":"type(uint176)"}},"id":6815,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6312:3:30","memberName":"max","nodeType":"MemberAccess","src":"6298:17:30","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"src":"6290:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6823,"nodeType":"IfStatement","src":"6286:105:30","trueBody":{"id":6822,"nodeType":"Block","src":"6317:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313736","id":6818,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6369:3:30","typeDescriptions":{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},"value":"176"},{"id":6819,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6805,"src":"6374:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6817,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"6338:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6820,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6338:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6821,"nodeType":"RevertStatement","src":"6331:49:30"}]}},{"expression":{"arguments":[{"id":6826,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6805,"src":"6415:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6825,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6407:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":6824,"name":"uint176","nodeType":"ElementaryTypeName","src":"6407:7:30","typeDescriptions":{}}},"id":6827,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6407:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"functionReturnParameters":6809,"id":6828,"nodeType":"Return","src":"6400:21:30"}]},"documentation":{"id":6803,"nodeType":"StructuredDocumentation","src":"5925:280:30","text":" @dev Returns the downcasted uint176 from uint256, reverting on\n overflow (when the input is greater than largest uint176).\n Counterpart to Solidity's `uint176` operator.\n Requirements:\n - input must fit into 176 bits"},"id":6830,"implemented":true,"kind":"function","modifiers":[],"name":"toUint176","nameLocation":"6219:9:30","nodeType":"FunctionDefinition","parameters":{"id":6806,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6805,"mutability":"mutable","name":"value","nameLocation":"6237:5:30","nodeType":"VariableDeclaration","scope":6830,"src":"6229:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6804,"name":"uint256","nodeType":"ElementaryTypeName","src":"6229:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6228:15:30"},"returnParameters":{"id":6809,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6808,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6830,"src":"6267:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"},"typeName":{"id":6807,"name":"uint176","nodeType":"ElementaryTypeName","src":"6267:7:30","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"visibility":"internal"}],"src":"6266:9:30"},"scope":8288,"src":"6210:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6857,"nodeType":"Block","src":"6785:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6844,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6838,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6833,"src":"6799:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6841,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6812:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":6840,"name":"uint168","nodeType":"ElementaryTypeName","src":"6812:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"}],"id":6839,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6807:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6842,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6807:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint168","typeString":"type(uint168)"}},"id":6843,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6821:3:30","memberName":"max","nodeType":"MemberAccess","src":"6807:17:30","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"src":"6799:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6851,"nodeType":"IfStatement","src":"6795:105:30","trueBody":{"id":6850,"nodeType":"Block","src":"6826:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313638","id":6846,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6878:3:30","typeDescriptions":{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},"value":"168"},{"id":6847,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6833,"src":"6883:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6845,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"6847:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6848,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6847:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6849,"nodeType":"RevertStatement","src":"6840:49:30"}]}},{"expression":{"arguments":[{"id":6854,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6833,"src":"6924:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6853,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6916:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":6852,"name":"uint168","nodeType":"ElementaryTypeName","src":"6916:7:30","typeDescriptions":{}}},"id":6855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6916:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"functionReturnParameters":6837,"id":6856,"nodeType":"Return","src":"6909:21:30"}]},"documentation":{"id":6831,"nodeType":"StructuredDocumentation","src":"6434:280:30","text":" @dev Returns the downcasted uint168 from uint256, reverting on\n overflow (when the input is greater than largest uint168).\n Counterpart to Solidity's `uint168` operator.\n Requirements:\n - input must fit into 168 bits"},"id":6858,"implemented":true,"kind":"function","modifiers":[],"name":"toUint168","nameLocation":"6728:9:30","nodeType":"FunctionDefinition","parameters":{"id":6834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6833,"mutability":"mutable","name":"value","nameLocation":"6746:5:30","nodeType":"VariableDeclaration","scope":6858,"src":"6738:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6832,"name":"uint256","nodeType":"ElementaryTypeName","src":"6738:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6737:15:30"},"returnParameters":{"id":6837,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6836,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6858,"src":"6776:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"},"typeName":{"id":6835,"name":"uint168","nodeType":"ElementaryTypeName","src":"6776:7:30","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"visibility":"internal"}],"src":"6775:9:30"},"scope":8288,"src":"6719:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6885,"nodeType":"Block","src":"7294:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6866,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6861,"src":"7308:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6869,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7321:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":6868,"name":"uint160","nodeType":"ElementaryTypeName","src":"7321:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"}],"id":6867,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7316:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6870,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7316:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint160","typeString":"type(uint160)"}},"id":6871,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7330:3:30","memberName":"max","nodeType":"MemberAccess","src":"7316:17:30","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"src":"7308:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6879,"nodeType":"IfStatement","src":"7304:105:30","trueBody":{"id":6878,"nodeType":"Block","src":"7335:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313630","id":6874,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7387:3:30","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},{"id":6875,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6861,"src":"7392:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6873,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"7356:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6876,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7356:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6877,"nodeType":"RevertStatement","src":"7349:49:30"}]}},{"expression":{"arguments":[{"id":6882,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6861,"src":"7433:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6881,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7425:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":6880,"name":"uint160","nodeType":"ElementaryTypeName","src":"7425:7:30","typeDescriptions":{}}},"id":6883,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7425:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":6865,"id":6884,"nodeType":"Return","src":"7418:21:30"}]},"documentation":{"id":6859,"nodeType":"StructuredDocumentation","src":"6943:280:30","text":" @dev Returns the downcasted uint160 from uint256, reverting on\n overflow (when the input is greater than largest uint160).\n Counterpart to Solidity's `uint160` operator.\n Requirements:\n - input must fit into 160 bits"},"id":6886,"implemented":true,"kind":"function","modifiers":[],"name":"toUint160","nameLocation":"7237:9:30","nodeType":"FunctionDefinition","parameters":{"id":6862,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6861,"mutability":"mutable","name":"value","nameLocation":"7255:5:30","nodeType":"VariableDeclaration","scope":6886,"src":"7247:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6860,"name":"uint256","nodeType":"ElementaryTypeName","src":"7247:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7246:15:30"},"returnParameters":{"id":6865,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6864,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6886,"src":"7285:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":6863,"name":"uint160","nodeType":"ElementaryTypeName","src":"7285:7:30","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"7284:9:30"},"scope":8288,"src":"7228:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6913,"nodeType":"Block","src":"7803:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6894,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6889,"src":"7817:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6897,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7830:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":6896,"name":"uint152","nodeType":"ElementaryTypeName","src":"7830:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"}],"id":6895,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7825:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6898,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7825:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint152","typeString":"type(uint152)"}},"id":6899,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7839:3:30","memberName":"max","nodeType":"MemberAccess","src":"7825:17:30","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"src":"7817:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6907,"nodeType":"IfStatement","src":"7813:105:30","trueBody":{"id":6906,"nodeType":"Block","src":"7844:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313532","id":6902,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7896:3:30","typeDescriptions":{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},"value":"152"},{"id":6903,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6889,"src":"7901:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6901,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"7865:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6904,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7865:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6905,"nodeType":"RevertStatement","src":"7858:49:30"}]}},{"expression":{"arguments":[{"id":6910,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6889,"src":"7942:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6909,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7934:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":6908,"name":"uint152","nodeType":"ElementaryTypeName","src":"7934:7:30","typeDescriptions":{}}},"id":6911,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7934:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"functionReturnParameters":6893,"id":6912,"nodeType":"Return","src":"7927:21:30"}]},"documentation":{"id":6887,"nodeType":"StructuredDocumentation","src":"7452:280:30","text":" @dev Returns the downcasted uint152 from uint256, reverting on\n overflow (when the input is greater than largest uint152).\n Counterpart to Solidity's `uint152` operator.\n Requirements:\n - input must fit into 152 bits"},"id":6914,"implemented":true,"kind":"function","modifiers":[],"name":"toUint152","nameLocation":"7746:9:30","nodeType":"FunctionDefinition","parameters":{"id":6890,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6889,"mutability":"mutable","name":"value","nameLocation":"7764:5:30","nodeType":"VariableDeclaration","scope":6914,"src":"7756:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6888,"name":"uint256","nodeType":"ElementaryTypeName","src":"7756:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7755:15:30"},"returnParameters":{"id":6893,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6892,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6914,"src":"7794:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"},"typeName":{"id":6891,"name":"uint152","nodeType":"ElementaryTypeName","src":"7794:7:30","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"visibility":"internal"}],"src":"7793:9:30"},"scope":8288,"src":"7737:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6941,"nodeType":"Block","src":"8312:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6922,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6917,"src":"8326:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6925,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8339:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":6924,"name":"uint144","nodeType":"ElementaryTypeName","src":"8339:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"}],"id":6923,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8334:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6926,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8334:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint144","typeString":"type(uint144)"}},"id":6927,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8348:3:30","memberName":"max","nodeType":"MemberAccess","src":"8334:17:30","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"src":"8326:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6935,"nodeType":"IfStatement","src":"8322:105:30","trueBody":{"id":6934,"nodeType":"Block","src":"8353:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313434","id":6930,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8405:3:30","typeDescriptions":{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},"value":"144"},{"id":6931,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6917,"src":"8410:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6929,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"8374:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6932,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8374:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6933,"nodeType":"RevertStatement","src":"8367:49:30"}]}},{"expression":{"arguments":[{"id":6938,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6917,"src":"8451:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6937,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8443:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":6936,"name":"uint144","nodeType":"ElementaryTypeName","src":"8443:7:30","typeDescriptions":{}}},"id":6939,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8443:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"functionReturnParameters":6921,"id":6940,"nodeType":"Return","src":"8436:21:30"}]},"documentation":{"id":6915,"nodeType":"StructuredDocumentation","src":"7961:280:30","text":" @dev Returns the downcasted uint144 from uint256, reverting on\n overflow (when the input is greater than largest uint144).\n Counterpart to Solidity's `uint144` operator.\n Requirements:\n - input must fit into 144 bits"},"id":6942,"implemented":true,"kind":"function","modifiers":[],"name":"toUint144","nameLocation":"8255:9:30","nodeType":"FunctionDefinition","parameters":{"id":6918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6917,"mutability":"mutable","name":"value","nameLocation":"8273:5:30","nodeType":"VariableDeclaration","scope":6942,"src":"8265:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6916,"name":"uint256","nodeType":"ElementaryTypeName","src":"8265:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8264:15:30"},"returnParameters":{"id":6921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6920,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6942,"src":"8303:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"},"typeName":{"id":6919,"name":"uint144","nodeType":"ElementaryTypeName","src":"8303:7:30","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"visibility":"internal"}],"src":"8302:9:30"},"scope":8288,"src":"8246:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6969,"nodeType":"Block","src":"8821:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6956,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6950,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6945,"src":"8835:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6953,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8848:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":6952,"name":"uint136","nodeType":"ElementaryTypeName","src":"8848:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"}],"id":6951,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8843:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6954,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8843:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint136","typeString":"type(uint136)"}},"id":6955,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8857:3:30","memberName":"max","nodeType":"MemberAccess","src":"8843:17:30","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"src":"8835:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6963,"nodeType":"IfStatement","src":"8831:105:30","trueBody":{"id":6962,"nodeType":"Block","src":"8862:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313336","id":6958,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8914:3:30","typeDescriptions":{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},"value":"136"},{"id":6959,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6945,"src":"8919:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6957,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"8883:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6960,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8883:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6961,"nodeType":"RevertStatement","src":"8876:49:30"}]}},{"expression":{"arguments":[{"id":6966,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6945,"src":"8960:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6965,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8952:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":6964,"name":"uint136","nodeType":"ElementaryTypeName","src":"8952:7:30","typeDescriptions":{}}},"id":6967,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8952:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"functionReturnParameters":6949,"id":6968,"nodeType":"Return","src":"8945:21:30"}]},"documentation":{"id":6943,"nodeType":"StructuredDocumentation","src":"8470:280:30","text":" @dev Returns the downcasted uint136 from uint256, reverting on\n overflow (when the input is greater than largest uint136).\n Counterpart to Solidity's `uint136` operator.\n Requirements:\n - input must fit into 136 bits"},"id":6970,"implemented":true,"kind":"function","modifiers":[],"name":"toUint136","nameLocation":"8764:9:30","nodeType":"FunctionDefinition","parameters":{"id":6946,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6945,"mutability":"mutable","name":"value","nameLocation":"8782:5:30","nodeType":"VariableDeclaration","scope":6970,"src":"8774:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6944,"name":"uint256","nodeType":"ElementaryTypeName","src":"8774:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8773:15:30"},"returnParameters":{"id":6949,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6948,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6970,"src":"8812:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"},"typeName":{"id":6947,"name":"uint136","nodeType":"ElementaryTypeName","src":"8812:7:30","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"visibility":"internal"}],"src":"8811:9:30"},"scope":8288,"src":"8755:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6997,"nodeType":"Block","src":"9330:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6978,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6973,"src":"9344:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6981,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9357:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":6980,"name":"uint128","nodeType":"ElementaryTypeName","src":"9357:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"}],"id":6979,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9352:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6982,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9352:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint128","typeString":"type(uint128)"}},"id":6983,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9366:3:30","memberName":"max","nodeType":"MemberAccess","src":"9352:17:30","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"9344:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6991,"nodeType":"IfStatement","src":"9340:105:30","trueBody":{"id":6990,"nodeType":"Block","src":"9371:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313238","id":6986,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9423:3:30","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},{"id":6987,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6973,"src":"9428:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6985,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"9392:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6988,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9392:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6989,"nodeType":"RevertStatement","src":"9385:49:30"}]}},{"expression":{"arguments":[{"id":6994,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6973,"src":"9469:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6993,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9461:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":6992,"name":"uint128","nodeType":"ElementaryTypeName","src":"9461:7:30","typeDescriptions":{}}},"id":6995,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9461:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":6977,"id":6996,"nodeType":"Return","src":"9454:21:30"}]},"documentation":{"id":6971,"nodeType":"StructuredDocumentation","src":"8979:280:30","text":" @dev Returns the downcasted uint128 from uint256, reverting on\n overflow (when the input is greater than largest uint128).\n Counterpart to Solidity's `uint128` operator.\n Requirements:\n - input must fit into 128 bits"},"id":6998,"implemented":true,"kind":"function","modifiers":[],"name":"toUint128","nameLocation":"9273:9:30","nodeType":"FunctionDefinition","parameters":{"id":6974,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6973,"mutability":"mutable","name":"value","nameLocation":"9291:5:30","nodeType":"VariableDeclaration","scope":6998,"src":"9283:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6972,"name":"uint256","nodeType":"ElementaryTypeName","src":"9283:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9282:15:30"},"returnParameters":{"id":6977,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6976,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6998,"src":"9321:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":6975,"name":"uint128","nodeType":"ElementaryTypeName","src":"9321:7:30","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"9320:9:30"},"scope":8288,"src":"9264:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7025,"nodeType":"Block","src":"9839:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7012,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7006,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7001,"src":"9853:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7009,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9866:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":7008,"name":"uint120","nodeType":"ElementaryTypeName","src":"9866:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"}],"id":7007,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9861:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7010,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9861:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint120","typeString":"type(uint120)"}},"id":7011,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9875:3:30","memberName":"max","nodeType":"MemberAccess","src":"9861:17:30","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"src":"9853:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7019,"nodeType":"IfStatement","src":"9849:105:30","trueBody":{"id":7018,"nodeType":"Block","src":"9880:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313230","id":7014,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9932:3:30","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},{"id":7015,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7001,"src":"9937:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7013,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"9901:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":7016,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9901:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7017,"nodeType":"RevertStatement","src":"9894:49:30"}]}},{"expression":{"arguments":[{"id":7022,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7001,"src":"9978:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7021,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9970:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":7020,"name":"uint120","nodeType":"ElementaryTypeName","src":"9970:7:30","typeDescriptions":{}}},"id":7023,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9970:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"functionReturnParameters":7005,"id":7024,"nodeType":"Return","src":"9963:21:30"}]},"documentation":{"id":6999,"nodeType":"StructuredDocumentation","src":"9488:280:30","text":" @dev Returns the downcasted uint120 from uint256, reverting on\n overflow (when the input is greater than largest uint120).\n Counterpart to Solidity's `uint120` operator.\n Requirements:\n - input must fit into 120 bits"},"id":7026,"implemented":true,"kind":"function","modifiers":[],"name":"toUint120","nameLocation":"9782:9:30","nodeType":"FunctionDefinition","parameters":{"id":7002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7001,"mutability":"mutable","name":"value","nameLocation":"9800:5:30","nodeType":"VariableDeclaration","scope":7026,"src":"9792:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7000,"name":"uint256","nodeType":"ElementaryTypeName","src":"9792:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9791:15:30"},"returnParameters":{"id":7005,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7004,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7026,"src":"9830:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"},"typeName":{"id":7003,"name":"uint120","nodeType":"ElementaryTypeName","src":"9830:7:30","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"visibility":"internal"}],"src":"9829:9:30"},"scope":8288,"src":"9773:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7053,"nodeType":"Block","src":"10348:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7040,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7034,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7029,"src":"10362:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7037,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10375:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":7036,"name":"uint112","nodeType":"ElementaryTypeName","src":"10375:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"}],"id":7035,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10370:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7038,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10370:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint112","typeString":"type(uint112)"}},"id":7039,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10384:3:30","memberName":"max","nodeType":"MemberAccess","src":"10370:17:30","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"10362:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7047,"nodeType":"IfStatement","src":"10358:105:30","trueBody":{"id":7046,"nodeType":"Block","src":"10389:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313132","id":7042,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10441:3:30","typeDescriptions":{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},"value":"112"},{"id":7043,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7029,"src":"10446:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7041,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"10410:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":7044,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10410:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7045,"nodeType":"RevertStatement","src":"10403:49:30"}]}},{"expression":{"arguments":[{"id":7050,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7029,"src":"10487:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7049,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10479:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":7048,"name":"uint112","nodeType":"ElementaryTypeName","src":"10479:7:30","typeDescriptions":{}}},"id":7051,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10479:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"functionReturnParameters":7033,"id":7052,"nodeType":"Return","src":"10472:21:30"}]},"documentation":{"id":7027,"nodeType":"StructuredDocumentation","src":"9997:280:30","text":" @dev Returns the downcasted uint112 from uint256, reverting on\n overflow (when the input is greater than largest uint112).\n Counterpart to Solidity's `uint112` operator.\n Requirements:\n - input must fit into 112 bits"},"id":7054,"implemented":true,"kind":"function","modifiers":[],"name":"toUint112","nameLocation":"10291:9:30","nodeType":"FunctionDefinition","parameters":{"id":7030,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7029,"mutability":"mutable","name":"value","nameLocation":"10309:5:30","nodeType":"VariableDeclaration","scope":7054,"src":"10301:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7028,"name":"uint256","nodeType":"ElementaryTypeName","src":"10301:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10300:15:30"},"returnParameters":{"id":7033,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7032,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7054,"src":"10339:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":7031,"name":"uint112","nodeType":"ElementaryTypeName","src":"10339:7:30","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"}],"src":"10338:9:30"},"scope":8288,"src":"10282:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7081,"nodeType":"Block","src":"10857:152:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7062,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7057,"src":"10871:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7065,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10884:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":7064,"name":"uint104","nodeType":"ElementaryTypeName","src":"10884:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"}],"id":7063,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10879:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7066,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10879:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint104","typeString":"type(uint104)"}},"id":7067,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10893:3:30","memberName":"max","nodeType":"MemberAccess","src":"10879:17:30","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"src":"10871:25:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7075,"nodeType":"IfStatement","src":"10867:105:30","trueBody":{"id":7074,"nodeType":"Block","src":"10898:74:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313034","id":7070,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10950:3:30","typeDescriptions":{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},"value":"104"},{"id":7071,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7057,"src":"10955:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7069,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"10919:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":7072,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10919:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7073,"nodeType":"RevertStatement","src":"10912:49:30"}]}},{"expression":{"arguments":[{"id":7078,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7057,"src":"10996:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7077,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10988:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":7076,"name":"uint104","nodeType":"ElementaryTypeName","src":"10988:7:30","typeDescriptions":{}}},"id":7079,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10988:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"functionReturnParameters":7061,"id":7080,"nodeType":"Return","src":"10981:21:30"}]},"documentation":{"id":7055,"nodeType":"StructuredDocumentation","src":"10506:280:30","text":" @dev Returns the downcasted uint104 from uint256, reverting on\n overflow (when the input is greater than largest uint104).\n Counterpart to Solidity's `uint104` operator.\n Requirements:\n - input must fit into 104 bits"},"id":7082,"implemented":true,"kind":"function","modifiers":[],"name":"toUint104","nameLocation":"10800:9:30","nodeType":"FunctionDefinition","parameters":{"id":7058,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7057,"mutability":"mutable","name":"value","nameLocation":"10818:5:30","nodeType":"VariableDeclaration","scope":7082,"src":"10810:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7056,"name":"uint256","nodeType":"ElementaryTypeName","src":"10810:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10809:15:30"},"returnParameters":{"id":7061,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7060,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7082,"src":"10848:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"},"typeName":{"id":7059,"name":"uint104","nodeType":"ElementaryTypeName","src":"10848:7:30","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"visibility":"internal"}],"src":"10847:9:30"},"scope":8288,"src":"10791:218:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7109,"nodeType":"Block","src":"11360:149:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7096,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7090,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7085,"src":"11374:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7093,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11387:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":7092,"name":"uint96","nodeType":"ElementaryTypeName","src":"11387:6:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"}],"id":7091,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11382:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7094,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11382:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint96","typeString":"type(uint96)"}},"id":7095,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11395:3:30","memberName":"max","nodeType":"MemberAccess","src":"11382:16:30","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"11374:24:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7103,"nodeType":"IfStatement","src":"11370:103:30","trueBody":{"id":7102,"nodeType":"Block","src":"11400:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3936","id":7098,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11452:2:30","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},{"id":7099,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7085,"src":"11456:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7097,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"11421:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":7100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11421:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7101,"nodeType":"RevertStatement","src":"11414:48:30"}]}},{"expression":{"arguments":[{"id":7106,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7085,"src":"11496:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7105,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11489:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":7104,"name":"uint96","nodeType":"ElementaryTypeName","src":"11489:6:30","typeDescriptions":{}}},"id":7107,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11489:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"functionReturnParameters":7089,"id":7108,"nodeType":"Return","src":"11482:20:30"}]},"documentation":{"id":7083,"nodeType":"StructuredDocumentation","src":"11015:276:30","text":" @dev Returns the downcasted uint96 from uint256, reverting on\n overflow (when the input is greater than largest uint96).\n Counterpart to Solidity's `uint96` operator.\n Requirements:\n - input must fit into 96 bits"},"id":7110,"implemented":true,"kind":"function","modifiers":[],"name":"toUint96","nameLocation":"11305:8:30","nodeType":"FunctionDefinition","parameters":{"id":7086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7085,"mutability":"mutable","name":"value","nameLocation":"11322:5:30","nodeType":"VariableDeclaration","scope":7110,"src":"11314:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7084,"name":"uint256","nodeType":"ElementaryTypeName","src":"11314:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11313:15:30"},"returnParameters":{"id":7089,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7088,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7110,"src":"11352:6:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":7087,"name":"uint96","nodeType":"ElementaryTypeName","src":"11352:6:30","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"11351:8:30"},"scope":8288,"src":"11296:213:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7137,"nodeType":"Block","src":"11860:149:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7118,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7113,"src":"11874:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7121,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11887:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":7120,"name":"uint88","nodeType":"ElementaryTypeName","src":"11887:6:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"}],"id":7119,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11882:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7122,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11882:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint88","typeString":"type(uint88)"}},"id":7123,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11895:3:30","memberName":"max","nodeType":"MemberAccess","src":"11882:16:30","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"src":"11874:24:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7131,"nodeType":"IfStatement","src":"11870:103:30","trueBody":{"id":7130,"nodeType":"Block","src":"11900:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3838","id":7126,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11952:2:30","typeDescriptions":{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},"value":"88"},{"id":7127,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7113,"src":"11956:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7125,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"11921:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":7128,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11921:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7129,"nodeType":"RevertStatement","src":"11914:48:30"}]}},{"expression":{"arguments":[{"id":7134,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7113,"src":"11996:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7133,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11989:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":7132,"name":"uint88","nodeType":"ElementaryTypeName","src":"11989:6:30","typeDescriptions":{}}},"id":7135,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11989:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"functionReturnParameters":7117,"id":7136,"nodeType":"Return","src":"11982:20:30"}]},"documentation":{"id":7111,"nodeType":"StructuredDocumentation","src":"11515:276:30","text":" @dev Returns the downcasted uint88 from uint256, reverting on\n overflow (when the input is greater than largest uint88).\n Counterpart to Solidity's `uint88` operator.\n Requirements:\n - input must fit into 88 bits"},"id":7138,"implemented":true,"kind":"function","modifiers":[],"name":"toUint88","nameLocation":"11805:8:30","nodeType":"FunctionDefinition","parameters":{"id":7114,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7113,"mutability":"mutable","name":"value","nameLocation":"11822:5:30","nodeType":"VariableDeclaration","scope":7138,"src":"11814:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7112,"name":"uint256","nodeType":"ElementaryTypeName","src":"11814:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11813:15:30"},"returnParameters":{"id":7117,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7116,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7138,"src":"11852:6:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"},"typeName":{"id":7115,"name":"uint88","nodeType":"ElementaryTypeName","src":"11852:6:30","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"visibility":"internal"}],"src":"11851:8:30"},"scope":8288,"src":"11796:213:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7165,"nodeType":"Block","src":"12360:149:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7146,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7141,"src":"12374:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7149,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12387:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":7148,"name":"uint80","nodeType":"ElementaryTypeName","src":"12387:6:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"}],"id":7147,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"12382:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7150,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12382:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint80","typeString":"type(uint80)"}},"id":7151,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12395:3:30","memberName":"max","nodeType":"MemberAccess","src":"12382:16:30","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"src":"12374:24:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7159,"nodeType":"IfStatement","src":"12370:103:30","trueBody":{"id":7158,"nodeType":"Block","src":"12400:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3830","id":7154,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12452:2:30","typeDescriptions":{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},"value":"80"},{"id":7155,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7141,"src":"12456:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7153,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"12421:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":7156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12421:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7157,"nodeType":"RevertStatement","src":"12414:48:30"}]}},{"expression":{"arguments":[{"id":7162,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7141,"src":"12496:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7161,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12489:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":7160,"name":"uint80","nodeType":"ElementaryTypeName","src":"12489:6:30","typeDescriptions":{}}},"id":7163,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12489:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"functionReturnParameters":7145,"id":7164,"nodeType":"Return","src":"12482:20:30"}]},"documentation":{"id":7139,"nodeType":"StructuredDocumentation","src":"12015:276:30","text":" @dev Returns the downcasted uint80 from uint256, reverting on\n overflow (when the input is greater than largest uint80).\n Counterpart to Solidity's `uint80` operator.\n Requirements:\n - input must fit into 80 bits"},"id":7166,"implemented":true,"kind":"function","modifiers":[],"name":"toUint80","nameLocation":"12305:8:30","nodeType":"FunctionDefinition","parameters":{"id":7142,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7141,"mutability":"mutable","name":"value","nameLocation":"12322:5:30","nodeType":"VariableDeclaration","scope":7166,"src":"12314:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7140,"name":"uint256","nodeType":"ElementaryTypeName","src":"12314:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12313:15:30"},"returnParameters":{"id":7145,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7144,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7166,"src":"12352:6:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"},"typeName":{"id":7143,"name":"uint80","nodeType":"ElementaryTypeName","src":"12352:6:30","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"visibility":"internal"}],"src":"12351:8:30"},"scope":8288,"src":"12296:213:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7193,"nodeType":"Block","src":"12860:149:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7174,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7169,"src":"12874:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7177,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12887:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":7176,"name":"uint72","nodeType":"ElementaryTypeName","src":"12887:6:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"}],"id":7175,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"12882:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7178,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12882:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint72","typeString":"type(uint72)"}},"id":7179,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12895:3:30","memberName":"max","nodeType":"MemberAccess","src":"12882:16:30","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"src":"12874:24:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7187,"nodeType":"IfStatement","src":"12870:103:30","trueBody":{"id":7186,"nodeType":"Block","src":"12900:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3732","id":7182,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12952:2:30","typeDescriptions":{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},"value":"72"},{"id":7183,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7169,"src":"12956:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7181,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"12921:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":7184,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12921:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7185,"nodeType":"RevertStatement","src":"12914:48:30"}]}},{"expression":{"arguments":[{"id":7190,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7169,"src":"12996:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7189,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12989:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":7188,"name":"uint72","nodeType":"ElementaryTypeName","src":"12989:6:30","typeDescriptions":{}}},"id":7191,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12989:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"functionReturnParameters":7173,"id":7192,"nodeType":"Return","src":"12982:20:30"}]},"documentation":{"id":7167,"nodeType":"StructuredDocumentation","src":"12515:276:30","text":" @dev Returns the downcasted uint72 from uint256, reverting on\n overflow (when the input is greater than largest uint72).\n Counterpart to Solidity's `uint72` operator.\n Requirements:\n - input must fit into 72 bits"},"id":7194,"implemented":true,"kind":"function","modifiers":[],"name":"toUint72","nameLocation":"12805:8:30","nodeType":"FunctionDefinition","parameters":{"id":7170,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7169,"mutability":"mutable","name":"value","nameLocation":"12822:5:30","nodeType":"VariableDeclaration","scope":7194,"src":"12814:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7168,"name":"uint256","nodeType":"ElementaryTypeName","src":"12814:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12813:15:30"},"returnParameters":{"id":7173,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7172,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7194,"src":"12852:6:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"},"typeName":{"id":7171,"name":"uint72","nodeType":"ElementaryTypeName","src":"12852:6:30","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"visibility":"internal"}],"src":"12851:8:30"},"scope":8288,"src":"12796:213:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7221,"nodeType":"Block","src":"13360:149:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7202,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7197,"src":"13374:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7205,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13387:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":7204,"name":"uint64","nodeType":"ElementaryTypeName","src":"13387:6:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":7203,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"13382:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7206,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13382:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":7207,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13395:3:30","memberName":"max","nodeType":"MemberAccess","src":"13382:16:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13374:24:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7215,"nodeType":"IfStatement","src":"13370:103:30","trueBody":{"id":7214,"nodeType":"Block","src":"13400:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3634","id":7210,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13452:2:30","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},{"id":7211,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7197,"src":"13456:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7209,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"13421:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":7212,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13421:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7213,"nodeType":"RevertStatement","src":"13414:48:30"}]}},{"expression":{"arguments":[{"id":7218,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7197,"src":"13496:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7217,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13489:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":7216,"name":"uint64","nodeType":"ElementaryTypeName","src":"13489:6:30","typeDescriptions":{}}},"id":7219,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13489:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":7201,"id":7220,"nodeType":"Return","src":"13482:20:30"}]},"documentation":{"id":7195,"nodeType":"StructuredDocumentation","src":"13015:276:30","text":" @dev Returns the downcasted uint64 from uint256, reverting on\n overflow (when the input is greater than largest uint64).\n Counterpart to Solidity's `uint64` operator.\n Requirements:\n - input must fit into 64 bits"},"id":7222,"implemented":true,"kind":"function","modifiers":[],"name":"toUint64","nameLocation":"13305:8:30","nodeType":"FunctionDefinition","parameters":{"id":7198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7197,"mutability":"mutable","name":"value","nameLocation":"13322:5:30","nodeType":"VariableDeclaration","scope":7222,"src":"13314:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7196,"name":"uint256","nodeType":"ElementaryTypeName","src":"13314:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13313:15:30"},"returnParameters":{"id":7201,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7200,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7222,"src":"13352:6:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7199,"name":"uint64","nodeType":"ElementaryTypeName","src":"13352:6:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"13351:8:30"},"scope":8288,"src":"13296:213:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7249,"nodeType":"Block","src":"13860:149:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7230,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7225,"src":"13874:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7233,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13887:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":7232,"name":"uint56","nodeType":"ElementaryTypeName","src":"13887:6:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"}],"id":7231,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"13882:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7234,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13882:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint56","typeString":"type(uint56)"}},"id":7235,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13895:3:30","memberName":"max","nodeType":"MemberAccess","src":"13882:16:30","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"src":"13874:24:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7243,"nodeType":"IfStatement","src":"13870:103:30","trueBody":{"id":7242,"nodeType":"Block","src":"13900:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3536","id":7238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13952:2:30","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},{"id":7239,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7225,"src":"13956:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7237,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"13921:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":7240,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13921:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7241,"nodeType":"RevertStatement","src":"13914:48:30"}]}},{"expression":{"arguments":[{"id":7246,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7225,"src":"13996:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7245,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13989:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":7244,"name":"uint56","nodeType":"ElementaryTypeName","src":"13989:6:30","typeDescriptions":{}}},"id":7247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13989:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"functionReturnParameters":7229,"id":7248,"nodeType":"Return","src":"13982:20:30"}]},"documentation":{"id":7223,"nodeType":"StructuredDocumentation","src":"13515:276:30","text":" @dev Returns the downcasted uint56 from uint256, reverting on\n overflow (when the input is greater than largest uint56).\n Counterpart to Solidity's `uint56` operator.\n Requirements:\n - input must fit into 56 bits"},"id":7250,"implemented":true,"kind":"function","modifiers":[],"name":"toUint56","nameLocation":"13805:8:30","nodeType":"FunctionDefinition","parameters":{"id":7226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7225,"mutability":"mutable","name":"value","nameLocation":"13822:5:30","nodeType":"VariableDeclaration","scope":7250,"src":"13814:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7224,"name":"uint256","nodeType":"ElementaryTypeName","src":"13814:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13813:15:30"},"returnParameters":{"id":7229,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7228,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7250,"src":"13852:6:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"},"typeName":{"id":7227,"name":"uint56","nodeType":"ElementaryTypeName","src":"13852:6:30","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"visibility":"internal"}],"src":"13851:8:30"},"scope":8288,"src":"13796:213:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7277,"nodeType":"Block","src":"14360:149:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7258,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7253,"src":"14374:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7261,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14387:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":7260,"name":"uint48","nodeType":"ElementaryTypeName","src":"14387:6:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"}],"id":7259,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14382:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7262,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14382:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint48","typeString":"type(uint48)"}},"id":7263,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14395:3:30","memberName":"max","nodeType":"MemberAccess","src":"14382:16:30","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"14374:24:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7271,"nodeType":"IfStatement","src":"14370:103:30","trueBody":{"id":7270,"nodeType":"Block","src":"14400:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3438","id":7266,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14452:2:30","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},{"id":7267,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7253,"src":"14456:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7265,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"14421:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":7268,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14421:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7269,"nodeType":"RevertStatement","src":"14414:48:30"}]}},{"expression":{"arguments":[{"id":7274,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7253,"src":"14496:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7273,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14489:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":7272,"name":"uint48","nodeType":"ElementaryTypeName","src":"14489:6:30","typeDescriptions":{}}},"id":7275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14489:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":7257,"id":7276,"nodeType":"Return","src":"14482:20:30"}]},"documentation":{"id":7251,"nodeType":"StructuredDocumentation","src":"14015:276:30","text":" @dev Returns the downcasted uint48 from uint256, reverting on\n overflow (when the input is greater than largest uint48).\n Counterpart to Solidity's `uint48` operator.\n Requirements:\n - input must fit into 48 bits"},"id":7278,"implemented":true,"kind":"function","modifiers":[],"name":"toUint48","nameLocation":"14305:8:30","nodeType":"FunctionDefinition","parameters":{"id":7254,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7253,"mutability":"mutable","name":"value","nameLocation":"14322:5:30","nodeType":"VariableDeclaration","scope":7278,"src":"14314:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7252,"name":"uint256","nodeType":"ElementaryTypeName","src":"14314:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14313:15:30"},"returnParameters":{"id":7257,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7256,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7278,"src":"14352:6:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":7255,"name":"uint48","nodeType":"ElementaryTypeName","src":"14352:6:30","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"14351:8:30"},"scope":8288,"src":"14296:213:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7305,"nodeType":"Block","src":"14860:149:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7286,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7281,"src":"14874:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7289,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14887:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":7288,"name":"uint40","nodeType":"ElementaryTypeName","src":"14887:6:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"}],"id":7287,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14882:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7290,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14882:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint40","typeString":"type(uint40)"}},"id":7291,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14895:3:30","memberName":"max","nodeType":"MemberAccess","src":"14882:16:30","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"14874:24:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7299,"nodeType":"IfStatement","src":"14870:103:30","trueBody":{"id":7298,"nodeType":"Block","src":"14900:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3430","id":7294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14952:2:30","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},{"id":7295,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7281,"src":"14956:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7293,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"14921:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":7296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14921:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7297,"nodeType":"RevertStatement","src":"14914:48:30"}]}},{"expression":{"arguments":[{"id":7302,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7281,"src":"14996:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7301,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14989:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":7300,"name":"uint40","nodeType":"ElementaryTypeName","src":"14989:6:30","typeDescriptions":{}}},"id":7303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14989:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"functionReturnParameters":7285,"id":7304,"nodeType":"Return","src":"14982:20:30"}]},"documentation":{"id":7279,"nodeType":"StructuredDocumentation","src":"14515:276:30","text":" @dev Returns the downcasted uint40 from uint256, reverting on\n overflow (when the input is greater than largest uint40).\n Counterpart to Solidity's `uint40` operator.\n Requirements:\n - input must fit into 40 bits"},"id":7306,"implemented":true,"kind":"function","modifiers":[],"name":"toUint40","nameLocation":"14805:8:30","nodeType":"FunctionDefinition","parameters":{"id":7282,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7281,"mutability":"mutable","name":"value","nameLocation":"14822:5:30","nodeType":"VariableDeclaration","scope":7306,"src":"14814:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7280,"name":"uint256","nodeType":"ElementaryTypeName","src":"14814:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14813:15:30"},"returnParameters":{"id":7285,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7284,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7306,"src":"14852:6:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":7283,"name":"uint40","nodeType":"ElementaryTypeName","src":"14852:6:30","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"14851:8:30"},"scope":8288,"src":"14796:213:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7333,"nodeType":"Block","src":"15360:149:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7314,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7309,"src":"15374:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7317,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15387:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":7316,"name":"uint32","nodeType":"ElementaryTypeName","src":"15387:6:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"}],"id":7315,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"15382:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7318,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15382:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint32","typeString":"type(uint32)"}},"id":7319,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15395:3:30","memberName":"max","nodeType":"MemberAccess","src":"15382:16:30","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"15374:24:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7327,"nodeType":"IfStatement","src":"15370:103:30","trueBody":{"id":7326,"nodeType":"Block","src":"15400:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3332","id":7322,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15452:2:30","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},{"id":7323,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7309,"src":"15456:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7321,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"15421:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":7324,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15421:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7325,"nodeType":"RevertStatement","src":"15414:48:30"}]}},{"expression":{"arguments":[{"id":7330,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7309,"src":"15496:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7329,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15489:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":7328,"name":"uint32","nodeType":"ElementaryTypeName","src":"15489:6:30","typeDescriptions":{}}},"id":7331,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15489:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":7313,"id":7332,"nodeType":"Return","src":"15482:20:30"}]},"documentation":{"id":7307,"nodeType":"StructuredDocumentation","src":"15015:276:30","text":" @dev Returns the downcasted uint32 from uint256, reverting on\n overflow (when the input is greater than largest uint32).\n Counterpart to Solidity's `uint32` operator.\n Requirements:\n - input must fit into 32 bits"},"id":7334,"implemented":true,"kind":"function","modifiers":[],"name":"toUint32","nameLocation":"15305:8:30","nodeType":"FunctionDefinition","parameters":{"id":7310,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7309,"mutability":"mutable","name":"value","nameLocation":"15322:5:30","nodeType":"VariableDeclaration","scope":7334,"src":"15314:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7308,"name":"uint256","nodeType":"ElementaryTypeName","src":"15314:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15313:15:30"},"returnParameters":{"id":7313,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7312,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7334,"src":"15352:6:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":7311,"name":"uint32","nodeType":"ElementaryTypeName","src":"15352:6:30","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"15351:8:30"},"scope":8288,"src":"15296:213:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7361,"nodeType":"Block","src":"15860:149:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7342,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7337,"src":"15874:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7345,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15887:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":7344,"name":"uint24","nodeType":"ElementaryTypeName","src":"15887:6:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"}],"id":7343,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"15882:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7346,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15882:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint24","typeString":"type(uint24)"}},"id":7347,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15895:3:30","memberName":"max","nodeType":"MemberAccess","src":"15882:16:30","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"src":"15874:24:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7355,"nodeType":"IfStatement","src":"15870:103:30","trueBody":{"id":7354,"nodeType":"Block","src":"15900:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3234","id":7350,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15952:2:30","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},{"id":7351,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7337,"src":"15956:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7349,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"15921:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":7352,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15921:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7353,"nodeType":"RevertStatement","src":"15914:48:30"}]}},{"expression":{"arguments":[{"id":7358,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7337,"src":"15996:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7357,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15989:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":7356,"name":"uint24","nodeType":"ElementaryTypeName","src":"15989:6:30","typeDescriptions":{}}},"id":7359,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15989:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"functionReturnParameters":7341,"id":7360,"nodeType":"Return","src":"15982:20:30"}]},"documentation":{"id":7335,"nodeType":"StructuredDocumentation","src":"15515:276:30","text":" @dev Returns the downcasted uint24 from uint256, reverting on\n overflow (when the input is greater than largest uint24).\n Counterpart to Solidity's `uint24` operator.\n Requirements:\n - input must fit into 24 bits"},"id":7362,"implemented":true,"kind":"function","modifiers":[],"name":"toUint24","nameLocation":"15805:8:30","nodeType":"FunctionDefinition","parameters":{"id":7338,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7337,"mutability":"mutable","name":"value","nameLocation":"15822:5:30","nodeType":"VariableDeclaration","scope":7362,"src":"15814:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7336,"name":"uint256","nodeType":"ElementaryTypeName","src":"15814:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15813:15:30"},"returnParameters":{"id":7341,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7340,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7362,"src":"15852:6:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":7339,"name":"uint24","nodeType":"ElementaryTypeName","src":"15852:6:30","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"src":"15851:8:30"},"scope":8288,"src":"15796:213:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7389,"nodeType":"Block","src":"16360:149:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7370,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7365,"src":"16374:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7373,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16387:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":7372,"name":"uint16","nodeType":"ElementaryTypeName","src":"16387:6:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"}],"id":7371,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16382:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7374,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16382:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint16","typeString":"type(uint16)"}},"id":7375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16395:3:30","memberName":"max","nodeType":"MemberAccess","src":"16382:16:30","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"16374:24:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7383,"nodeType":"IfStatement","src":"16370:103:30","trueBody":{"id":7382,"nodeType":"Block","src":"16400:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3136","id":7378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16452:2:30","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},{"id":7379,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7365,"src":"16456:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7377,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"16421:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":7380,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16421:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7381,"nodeType":"RevertStatement","src":"16414:48:30"}]}},{"expression":{"arguments":[{"id":7386,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7365,"src":"16496:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7385,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16489:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":7384,"name":"uint16","nodeType":"ElementaryTypeName","src":"16489:6:30","typeDescriptions":{}}},"id":7387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16489:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"functionReturnParameters":7369,"id":7388,"nodeType":"Return","src":"16482:20:30"}]},"documentation":{"id":7363,"nodeType":"StructuredDocumentation","src":"16015:276:30","text":" @dev Returns the downcasted uint16 from uint256, reverting on\n overflow (when the input is greater than largest uint16).\n Counterpart to Solidity's `uint16` operator.\n Requirements:\n - input must fit into 16 bits"},"id":7390,"implemented":true,"kind":"function","modifiers":[],"name":"toUint16","nameLocation":"16305:8:30","nodeType":"FunctionDefinition","parameters":{"id":7366,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7365,"mutability":"mutable","name":"value","nameLocation":"16322:5:30","nodeType":"VariableDeclaration","scope":7390,"src":"16314:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7364,"name":"uint256","nodeType":"ElementaryTypeName","src":"16314:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16313:15:30"},"returnParameters":{"id":7369,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7368,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7390,"src":"16352:6:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":7367,"name":"uint16","nodeType":"ElementaryTypeName","src":"16352:6:30","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"16351:8:30"},"scope":8288,"src":"16296:213:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7417,"nodeType":"Block","src":"16854:146:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7398,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7393,"src":"16868:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7401,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16881:5:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":7400,"name":"uint8","nodeType":"ElementaryTypeName","src":"16881:5:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":7399,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16876:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7402,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16876:11:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":7403,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16888:3:30","memberName":"max","nodeType":"MemberAccess","src":"16876:15:30","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"16868:23:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7411,"nodeType":"IfStatement","src":"16864:101:30","trueBody":{"id":7410,"nodeType":"Block","src":"16893:72:30","statements":[{"errorCall":{"arguments":[{"hexValue":"38","id":7406,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16945:1:30","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"id":7407,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7393,"src":"16948:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7405,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6533,"src":"16914:30:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":7408,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16914:40:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7409,"nodeType":"RevertStatement","src":"16907:47:30"}]}},{"expression":{"arguments":[{"id":7414,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7393,"src":"16987:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7413,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16981:5:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":7412,"name":"uint8","nodeType":"ElementaryTypeName","src":"16981:5:30","typeDescriptions":{}}},"id":7415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16981:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":7397,"id":7416,"nodeType":"Return","src":"16974:19:30"}]},"documentation":{"id":7391,"nodeType":"StructuredDocumentation","src":"16515:272:30","text":" @dev Returns the downcasted uint8 from uint256, reverting on\n overflow (when the input is greater than largest uint8).\n Counterpart to Solidity's `uint8` operator.\n Requirements:\n - input must fit into 8 bits"},"id":7418,"implemented":true,"kind":"function","modifiers":[],"name":"toUint8","nameLocation":"16801:7:30","nodeType":"FunctionDefinition","parameters":{"id":7394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7393,"mutability":"mutable","name":"value","nameLocation":"16817:5:30","nodeType":"VariableDeclaration","scope":7418,"src":"16809:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7392,"name":"uint256","nodeType":"ElementaryTypeName","src":"16809:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16808:15:30"},"returnParameters":{"id":7397,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7396,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7418,"src":"16847:5:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":7395,"name":"uint8","nodeType":"ElementaryTypeName","src":"16847:5:30","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"16846:7:30"},"scope":8288,"src":"16792:208:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7440,"nodeType":"Block","src":"17236:128:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7428,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7426,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7421,"src":"17250:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":7427,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17258:1:30","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17250:9:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7434,"nodeType":"IfStatement","src":"17246:81:30","trueBody":{"id":7433,"nodeType":"Block","src":"17261:66:30","statements":[{"errorCall":{"arguments":[{"id":7430,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7421,"src":"17310:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7429,"name":"SafeCastOverflowedIntToUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6538,"src":"17282:27:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_int256_$returns$_t_error_$","typeString":"function (int256) pure returns (error)"}},"id":7431,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17282:34:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7432,"nodeType":"RevertStatement","src":"17275:41:30"}]}},{"expression":{"arguments":[{"id":7437,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7421,"src":"17351:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7436,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17343:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":7435,"name":"uint256","nodeType":"ElementaryTypeName","src":"17343:7:30","typeDescriptions":{}}},"id":7438,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17343:14:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7425,"id":7439,"nodeType":"Return","src":"17336:21:30"}]},"documentation":{"id":7419,"nodeType":"StructuredDocumentation","src":"17006:160:30","text":" @dev Converts a signed int256 into an unsigned uint256.\n Requirements:\n - input must be greater than or equal to 0."},"id":7441,"implemented":true,"kind":"function","modifiers":[],"name":"toUint256","nameLocation":"17180:9:30","nodeType":"FunctionDefinition","parameters":{"id":7422,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7421,"mutability":"mutable","name":"value","nameLocation":"17197:5:30","nodeType":"VariableDeclaration","scope":7441,"src":"17190:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7420,"name":"int256","nodeType":"ElementaryTypeName","src":"17190:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"17189:14:30"},"returnParameters":{"id":7425,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7424,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7441,"src":"17227:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7423,"name":"uint256","nodeType":"ElementaryTypeName","src":"17227:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17226:9:30"},"scope":8288,"src":"17171:193:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7466,"nodeType":"Block","src":"17761:150:30","statements":[{"expression":{"id":7454,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7449,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7447,"src":"17771:10:30","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7452,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7444,"src":"17791:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7451,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17784:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int248_$","typeString":"type(int248)"},"typeName":{"id":7450,"name":"int248","nodeType":"ElementaryTypeName","src":"17784:6:30","typeDescriptions":{}}},"id":7453,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17784:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"src":"17771:26:30","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"id":7455,"nodeType":"ExpressionStatement","src":"17771:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7456,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7447,"src":"17811:10:30","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7457,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7444,"src":"17825:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"17811:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7465,"nodeType":"IfStatement","src":"17807:98:30","trueBody":{"id":7464,"nodeType":"Block","src":"17832:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"323438","id":7460,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17883:3:30","typeDescriptions":{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},"value":"248"},{"id":7461,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7444,"src":"17888:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7459,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"17853:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7462,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17853:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7463,"nodeType":"RevertStatement","src":"17846:48:30"}]}}]},"documentation":{"id":7442,"nodeType":"StructuredDocumentation","src":"17370:312:30","text":" @dev Returns the downcasted int248 from int256, reverting on\n overflow (when the input is less than smallest int248 or\n greater than largest int248).\n Counterpart to Solidity's `int248` operator.\n Requirements:\n - input must fit into 248 bits"},"id":7467,"implemented":true,"kind":"function","modifiers":[],"name":"toInt248","nameLocation":"17696:8:30","nodeType":"FunctionDefinition","parameters":{"id":7445,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7444,"mutability":"mutable","name":"value","nameLocation":"17712:5:30","nodeType":"VariableDeclaration","scope":7467,"src":"17705:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7443,"name":"int256","nodeType":"ElementaryTypeName","src":"17705:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"17704:14:30"},"returnParameters":{"id":7448,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7447,"mutability":"mutable","name":"downcasted","nameLocation":"17749:10:30","nodeType":"VariableDeclaration","scope":7467,"src":"17742:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"},"typeName":{"id":7446,"name":"int248","nodeType":"ElementaryTypeName","src":"17742:6:30","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"visibility":"internal"}],"src":"17741:19:30"},"scope":8288,"src":"17687:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7492,"nodeType":"Block","src":"18308:150:30","statements":[{"expression":{"id":7480,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7475,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7473,"src":"18318:10:30","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7478,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7470,"src":"18338:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7477,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18331:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int240_$","typeString":"type(int240)"},"typeName":{"id":7476,"name":"int240","nodeType":"ElementaryTypeName","src":"18331:6:30","typeDescriptions":{}}},"id":7479,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18331:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"src":"18318:26:30","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"id":7481,"nodeType":"ExpressionStatement","src":"18318:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7482,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7473,"src":"18358:10:30","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7483,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7470,"src":"18372:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"18358:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7491,"nodeType":"IfStatement","src":"18354:98:30","trueBody":{"id":7490,"nodeType":"Block","src":"18379:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"323430","id":7486,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18430:3:30","typeDescriptions":{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},"value":"240"},{"id":7487,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7470,"src":"18435:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7485,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"18400:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7488,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18400:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7489,"nodeType":"RevertStatement","src":"18393:48:30"}]}}]},"documentation":{"id":7468,"nodeType":"StructuredDocumentation","src":"17917:312:30","text":" @dev Returns the downcasted int240 from int256, reverting on\n overflow (when the input is less than smallest int240 or\n greater than largest int240).\n Counterpart to Solidity's `int240` operator.\n Requirements:\n - input must fit into 240 bits"},"id":7493,"implemented":true,"kind":"function","modifiers":[],"name":"toInt240","nameLocation":"18243:8:30","nodeType":"FunctionDefinition","parameters":{"id":7471,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7470,"mutability":"mutable","name":"value","nameLocation":"18259:5:30","nodeType":"VariableDeclaration","scope":7493,"src":"18252:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7469,"name":"int256","nodeType":"ElementaryTypeName","src":"18252:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18251:14:30"},"returnParameters":{"id":7474,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7473,"mutability":"mutable","name":"downcasted","nameLocation":"18296:10:30","nodeType":"VariableDeclaration","scope":7493,"src":"18289:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"},"typeName":{"id":7472,"name":"int240","nodeType":"ElementaryTypeName","src":"18289:6:30","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"visibility":"internal"}],"src":"18288:19:30"},"scope":8288,"src":"18234:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7518,"nodeType":"Block","src":"18855:150:30","statements":[{"expression":{"id":7506,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7501,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7499,"src":"18865:10:30","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7504,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7496,"src":"18885:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7503,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18878:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int232_$","typeString":"type(int232)"},"typeName":{"id":7502,"name":"int232","nodeType":"ElementaryTypeName","src":"18878:6:30","typeDescriptions":{}}},"id":7505,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18878:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"src":"18865:26:30","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"id":7507,"nodeType":"ExpressionStatement","src":"18865:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7510,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7508,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7499,"src":"18905:10:30","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7509,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7496,"src":"18919:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"18905:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7517,"nodeType":"IfStatement","src":"18901:98:30","trueBody":{"id":7516,"nodeType":"Block","src":"18926:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"323332","id":7512,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18977:3:30","typeDescriptions":{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},"value":"232"},{"id":7513,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7496,"src":"18982:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7511,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"18947:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18947:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7515,"nodeType":"RevertStatement","src":"18940:48:30"}]}}]},"documentation":{"id":7494,"nodeType":"StructuredDocumentation","src":"18464:312:30","text":" @dev Returns the downcasted int232 from int256, reverting on\n overflow (when the input is less than smallest int232 or\n greater than largest int232).\n Counterpart to Solidity's `int232` operator.\n Requirements:\n - input must fit into 232 bits"},"id":7519,"implemented":true,"kind":"function","modifiers":[],"name":"toInt232","nameLocation":"18790:8:30","nodeType":"FunctionDefinition","parameters":{"id":7497,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7496,"mutability":"mutable","name":"value","nameLocation":"18806:5:30","nodeType":"VariableDeclaration","scope":7519,"src":"18799:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7495,"name":"int256","nodeType":"ElementaryTypeName","src":"18799:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18798:14:30"},"returnParameters":{"id":7500,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7499,"mutability":"mutable","name":"downcasted","nameLocation":"18843:10:30","nodeType":"VariableDeclaration","scope":7519,"src":"18836:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"},"typeName":{"id":7498,"name":"int232","nodeType":"ElementaryTypeName","src":"18836:6:30","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"visibility":"internal"}],"src":"18835:19:30"},"scope":8288,"src":"18781:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7544,"nodeType":"Block","src":"19402:150:30","statements":[{"expression":{"id":7532,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7527,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7525,"src":"19412:10:30","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7530,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7522,"src":"19432:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7529,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19425:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int224_$","typeString":"type(int224)"},"typeName":{"id":7528,"name":"int224","nodeType":"ElementaryTypeName","src":"19425:6:30","typeDescriptions":{}}},"id":7531,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19425:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"src":"19412:26:30","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"id":7533,"nodeType":"ExpressionStatement","src":"19412:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7534,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7525,"src":"19452:10:30","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7535,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7522,"src":"19466:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19452:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7543,"nodeType":"IfStatement","src":"19448:98:30","trueBody":{"id":7542,"nodeType":"Block","src":"19473:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"323234","id":7538,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19524:3:30","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},{"id":7539,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7522,"src":"19529:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7537,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"19494:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19494:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7541,"nodeType":"RevertStatement","src":"19487:48:30"}]}}]},"documentation":{"id":7520,"nodeType":"StructuredDocumentation","src":"19011:312:30","text":" @dev Returns the downcasted int224 from int256, reverting on\n overflow (when the input is less than smallest int224 or\n greater than largest int224).\n Counterpart to Solidity's `int224` operator.\n Requirements:\n - input must fit into 224 bits"},"id":7545,"implemented":true,"kind":"function","modifiers":[],"name":"toInt224","nameLocation":"19337:8:30","nodeType":"FunctionDefinition","parameters":{"id":7523,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7522,"mutability":"mutable","name":"value","nameLocation":"19353:5:30","nodeType":"VariableDeclaration","scope":7545,"src":"19346:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7521,"name":"int256","nodeType":"ElementaryTypeName","src":"19346:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19345:14:30"},"returnParameters":{"id":7526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7525,"mutability":"mutable","name":"downcasted","nameLocation":"19390:10:30","nodeType":"VariableDeclaration","scope":7545,"src":"19383:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"},"typeName":{"id":7524,"name":"int224","nodeType":"ElementaryTypeName","src":"19383:6:30","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"visibility":"internal"}],"src":"19382:19:30"},"scope":8288,"src":"19328:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7570,"nodeType":"Block","src":"19949:150:30","statements":[{"expression":{"id":7558,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7553,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7551,"src":"19959:10:30","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7556,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7548,"src":"19979:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7555,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19972:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int216_$","typeString":"type(int216)"},"typeName":{"id":7554,"name":"int216","nodeType":"ElementaryTypeName","src":"19972:6:30","typeDescriptions":{}}},"id":7557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19972:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"src":"19959:26:30","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"id":7559,"nodeType":"ExpressionStatement","src":"19959:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7562,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7560,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7551,"src":"19999:10:30","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7561,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7548,"src":"20013:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19999:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7569,"nodeType":"IfStatement","src":"19995:98:30","trueBody":{"id":7568,"nodeType":"Block","src":"20020:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"323136","id":7564,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20071:3:30","typeDescriptions":{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},"value":"216"},{"id":7565,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7548,"src":"20076:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7563,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"20041:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7566,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20041:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7567,"nodeType":"RevertStatement","src":"20034:48:30"}]}}]},"documentation":{"id":7546,"nodeType":"StructuredDocumentation","src":"19558:312:30","text":" @dev Returns the downcasted int216 from int256, reverting on\n overflow (when the input is less than smallest int216 or\n greater than largest int216).\n Counterpart to Solidity's `int216` operator.\n Requirements:\n - input must fit into 216 bits"},"id":7571,"implemented":true,"kind":"function","modifiers":[],"name":"toInt216","nameLocation":"19884:8:30","nodeType":"FunctionDefinition","parameters":{"id":7549,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7548,"mutability":"mutable","name":"value","nameLocation":"19900:5:30","nodeType":"VariableDeclaration","scope":7571,"src":"19893:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7547,"name":"int256","nodeType":"ElementaryTypeName","src":"19893:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19892:14:30"},"returnParameters":{"id":7552,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7551,"mutability":"mutable","name":"downcasted","nameLocation":"19937:10:30","nodeType":"VariableDeclaration","scope":7571,"src":"19930:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"},"typeName":{"id":7550,"name":"int216","nodeType":"ElementaryTypeName","src":"19930:6:30","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"visibility":"internal"}],"src":"19929:19:30"},"scope":8288,"src":"19875:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7596,"nodeType":"Block","src":"20496:150:30","statements":[{"expression":{"id":7584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7579,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7577,"src":"20506:10:30","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7582,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7574,"src":"20526:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7581,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"20519:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int208_$","typeString":"type(int208)"},"typeName":{"id":7580,"name":"int208","nodeType":"ElementaryTypeName","src":"20519:6:30","typeDescriptions":{}}},"id":7583,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20519:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"src":"20506:26:30","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"id":7585,"nodeType":"ExpressionStatement","src":"20506:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7588,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7586,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7577,"src":"20546:10:30","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7587,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7574,"src":"20560:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"20546:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7595,"nodeType":"IfStatement","src":"20542:98:30","trueBody":{"id":7594,"nodeType":"Block","src":"20567:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"323038","id":7590,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20618:3:30","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"value":"208"},{"id":7591,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7574,"src":"20623:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7589,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"20588:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7592,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20588:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7593,"nodeType":"RevertStatement","src":"20581:48:30"}]}}]},"documentation":{"id":7572,"nodeType":"StructuredDocumentation","src":"20105:312:30","text":" @dev Returns the downcasted int208 from int256, reverting on\n overflow (when the input is less than smallest int208 or\n greater than largest int208).\n Counterpart to Solidity's `int208` operator.\n Requirements:\n - input must fit into 208 bits"},"id":7597,"implemented":true,"kind":"function","modifiers":[],"name":"toInt208","nameLocation":"20431:8:30","nodeType":"FunctionDefinition","parameters":{"id":7575,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7574,"mutability":"mutable","name":"value","nameLocation":"20447:5:30","nodeType":"VariableDeclaration","scope":7597,"src":"20440:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7573,"name":"int256","nodeType":"ElementaryTypeName","src":"20440:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"20439:14:30"},"returnParameters":{"id":7578,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7577,"mutability":"mutable","name":"downcasted","nameLocation":"20484:10:30","nodeType":"VariableDeclaration","scope":7597,"src":"20477:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"},"typeName":{"id":7576,"name":"int208","nodeType":"ElementaryTypeName","src":"20477:6:30","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"visibility":"internal"}],"src":"20476:19:30"},"scope":8288,"src":"20422:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7622,"nodeType":"Block","src":"21043:150:30","statements":[{"expression":{"id":7610,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7605,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7603,"src":"21053:10:30","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7608,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7600,"src":"21073:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7607,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21066:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int200_$","typeString":"type(int200)"},"typeName":{"id":7606,"name":"int200","nodeType":"ElementaryTypeName","src":"21066:6:30","typeDescriptions":{}}},"id":7609,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21066:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"src":"21053:26:30","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"id":7611,"nodeType":"ExpressionStatement","src":"21053:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7614,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7612,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7603,"src":"21093:10:30","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7613,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7600,"src":"21107:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21093:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7621,"nodeType":"IfStatement","src":"21089:98:30","trueBody":{"id":7620,"nodeType":"Block","src":"21114:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"323030","id":7616,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21165:3:30","typeDescriptions":{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},"value":"200"},{"id":7617,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7600,"src":"21170:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7615,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"21135:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21135:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7619,"nodeType":"RevertStatement","src":"21128:48:30"}]}}]},"documentation":{"id":7598,"nodeType":"StructuredDocumentation","src":"20652:312:30","text":" @dev Returns the downcasted int200 from int256, reverting on\n overflow (when the input is less than smallest int200 or\n greater than largest int200).\n Counterpart to Solidity's `int200` operator.\n Requirements:\n - input must fit into 200 bits"},"id":7623,"implemented":true,"kind":"function","modifiers":[],"name":"toInt200","nameLocation":"20978:8:30","nodeType":"FunctionDefinition","parameters":{"id":7601,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7600,"mutability":"mutable","name":"value","nameLocation":"20994:5:30","nodeType":"VariableDeclaration","scope":7623,"src":"20987:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7599,"name":"int256","nodeType":"ElementaryTypeName","src":"20987:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"20986:14:30"},"returnParameters":{"id":7604,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7603,"mutability":"mutable","name":"downcasted","nameLocation":"21031:10:30","nodeType":"VariableDeclaration","scope":7623,"src":"21024:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"},"typeName":{"id":7602,"name":"int200","nodeType":"ElementaryTypeName","src":"21024:6:30","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"visibility":"internal"}],"src":"21023:19:30"},"scope":8288,"src":"20969:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7648,"nodeType":"Block","src":"21590:150:30","statements":[{"expression":{"id":7636,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7631,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7629,"src":"21600:10:30","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7634,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7626,"src":"21620:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7633,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21613:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int192_$","typeString":"type(int192)"},"typeName":{"id":7632,"name":"int192","nodeType":"ElementaryTypeName","src":"21613:6:30","typeDescriptions":{}}},"id":7635,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21613:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"src":"21600:26:30","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"id":7637,"nodeType":"ExpressionStatement","src":"21600:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7640,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7638,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7629,"src":"21640:10:30","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7639,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7626,"src":"21654:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21640:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7647,"nodeType":"IfStatement","src":"21636:98:30","trueBody":{"id":7646,"nodeType":"Block","src":"21661:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313932","id":7642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21712:3:30","typeDescriptions":{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},"value":"192"},{"id":7643,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7626,"src":"21717:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7641,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"21682:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7644,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21682:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7645,"nodeType":"RevertStatement","src":"21675:48:30"}]}}]},"documentation":{"id":7624,"nodeType":"StructuredDocumentation","src":"21199:312:30","text":" @dev Returns the downcasted int192 from int256, reverting on\n overflow (when the input is less than smallest int192 or\n greater than largest int192).\n Counterpart to Solidity's `int192` operator.\n Requirements:\n - input must fit into 192 bits"},"id":7649,"implemented":true,"kind":"function","modifiers":[],"name":"toInt192","nameLocation":"21525:8:30","nodeType":"FunctionDefinition","parameters":{"id":7627,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7626,"mutability":"mutable","name":"value","nameLocation":"21541:5:30","nodeType":"VariableDeclaration","scope":7649,"src":"21534:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7625,"name":"int256","nodeType":"ElementaryTypeName","src":"21534:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"21533:14:30"},"returnParameters":{"id":7630,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7629,"mutability":"mutable","name":"downcasted","nameLocation":"21578:10:30","nodeType":"VariableDeclaration","scope":7649,"src":"21571:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"},"typeName":{"id":7628,"name":"int192","nodeType":"ElementaryTypeName","src":"21571:6:30","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"visibility":"internal"}],"src":"21570:19:30"},"scope":8288,"src":"21516:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7674,"nodeType":"Block","src":"22137:150:30","statements":[{"expression":{"id":7662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7657,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7655,"src":"22147:10:30","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7660,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7652,"src":"22167:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7659,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22160:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int184_$","typeString":"type(int184)"},"typeName":{"id":7658,"name":"int184","nodeType":"ElementaryTypeName","src":"22160:6:30","typeDescriptions":{}}},"id":7661,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22160:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"src":"22147:26:30","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"id":7663,"nodeType":"ExpressionStatement","src":"22147:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7664,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7655,"src":"22187:10:30","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7665,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7652,"src":"22201:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22187:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7673,"nodeType":"IfStatement","src":"22183:98:30","trueBody":{"id":7672,"nodeType":"Block","src":"22208:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313834","id":7668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22259:3:30","typeDescriptions":{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},"value":"184"},{"id":7669,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7652,"src":"22264:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7667,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"22229:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7670,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22229:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7671,"nodeType":"RevertStatement","src":"22222:48:30"}]}}]},"documentation":{"id":7650,"nodeType":"StructuredDocumentation","src":"21746:312:30","text":" @dev Returns the downcasted int184 from int256, reverting on\n overflow (when the input is less than smallest int184 or\n greater than largest int184).\n Counterpart to Solidity's `int184` operator.\n Requirements:\n - input must fit into 184 bits"},"id":7675,"implemented":true,"kind":"function","modifiers":[],"name":"toInt184","nameLocation":"22072:8:30","nodeType":"FunctionDefinition","parameters":{"id":7653,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7652,"mutability":"mutable","name":"value","nameLocation":"22088:5:30","nodeType":"VariableDeclaration","scope":7675,"src":"22081:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7651,"name":"int256","nodeType":"ElementaryTypeName","src":"22081:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"22080:14:30"},"returnParameters":{"id":7656,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7655,"mutability":"mutable","name":"downcasted","nameLocation":"22125:10:30","nodeType":"VariableDeclaration","scope":7675,"src":"22118:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"},"typeName":{"id":7654,"name":"int184","nodeType":"ElementaryTypeName","src":"22118:6:30","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"visibility":"internal"}],"src":"22117:19:30"},"scope":8288,"src":"22063:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7700,"nodeType":"Block","src":"22684:150:30","statements":[{"expression":{"id":7688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7683,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7681,"src":"22694:10:30","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7686,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7678,"src":"22714:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7685,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22707:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int176_$","typeString":"type(int176)"},"typeName":{"id":7684,"name":"int176","nodeType":"ElementaryTypeName","src":"22707:6:30","typeDescriptions":{}}},"id":7687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22707:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"src":"22694:26:30","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"id":7689,"nodeType":"ExpressionStatement","src":"22694:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7692,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7690,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7681,"src":"22734:10:30","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7691,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7678,"src":"22748:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22734:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7699,"nodeType":"IfStatement","src":"22730:98:30","trueBody":{"id":7698,"nodeType":"Block","src":"22755:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313736","id":7694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22806:3:30","typeDescriptions":{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},"value":"176"},{"id":7695,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7678,"src":"22811:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7693,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"22776:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7696,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22776:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7697,"nodeType":"RevertStatement","src":"22769:48:30"}]}}]},"documentation":{"id":7676,"nodeType":"StructuredDocumentation","src":"22293:312:30","text":" @dev Returns the downcasted int176 from int256, reverting on\n overflow (when the input is less than smallest int176 or\n greater than largest int176).\n Counterpart to Solidity's `int176` operator.\n Requirements:\n - input must fit into 176 bits"},"id":7701,"implemented":true,"kind":"function","modifiers":[],"name":"toInt176","nameLocation":"22619:8:30","nodeType":"FunctionDefinition","parameters":{"id":7679,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7678,"mutability":"mutable","name":"value","nameLocation":"22635:5:30","nodeType":"VariableDeclaration","scope":7701,"src":"22628:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7677,"name":"int256","nodeType":"ElementaryTypeName","src":"22628:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"22627:14:30"},"returnParameters":{"id":7682,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7681,"mutability":"mutable","name":"downcasted","nameLocation":"22672:10:30","nodeType":"VariableDeclaration","scope":7701,"src":"22665:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"},"typeName":{"id":7680,"name":"int176","nodeType":"ElementaryTypeName","src":"22665:6:30","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"visibility":"internal"}],"src":"22664:19:30"},"scope":8288,"src":"22610:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7726,"nodeType":"Block","src":"23231:150:30","statements":[{"expression":{"id":7714,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7709,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7707,"src":"23241:10:30","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7712,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7704,"src":"23261:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7711,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23254:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int168_$","typeString":"type(int168)"},"typeName":{"id":7710,"name":"int168","nodeType":"ElementaryTypeName","src":"23254:6:30","typeDescriptions":{}}},"id":7713,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23254:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"src":"23241:26:30","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"id":7715,"nodeType":"ExpressionStatement","src":"23241:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7716,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7707,"src":"23281:10:30","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7717,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7704,"src":"23295:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23281:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7725,"nodeType":"IfStatement","src":"23277:98:30","trueBody":{"id":7724,"nodeType":"Block","src":"23302:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313638","id":7720,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23353:3:30","typeDescriptions":{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},"value":"168"},{"id":7721,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7704,"src":"23358:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7719,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"23323:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7722,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23323:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7723,"nodeType":"RevertStatement","src":"23316:48:30"}]}}]},"documentation":{"id":7702,"nodeType":"StructuredDocumentation","src":"22840:312:30","text":" @dev Returns the downcasted int168 from int256, reverting on\n overflow (when the input is less than smallest int168 or\n greater than largest int168).\n Counterpart to Solidity's `int168` operator.\n Requirements:\n - input must fit into 168 bits"},"id":7727,"implemented":true,"kind":"function","modifiers":[],"name":"toInt168","nameLocation":"23166:8:30","nodeType":"FunctionDefinition","parameters":{"id":7705,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7704,"mutability":"mutable","name":"value","nameLocation":"23182:5:30","nodeType":"VariableDeclaration","scope":7727,"src":"23175:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7703,"name":"int256","nodeType":"ElementaryTypeName","src":"23175:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23174:14:30"},"returnParameters":{"id":7708,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7707,"mutability":"mutable","name":"downcasted","nameLocation":"23219:10:30","nodeType":"VariableDeclaration","scope":7727,"src":"23212:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"},"typeName":{"id":7706,"name":"int168","nodeType":"ElementaryTypeName","src":"23212:6:30","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"visibility":"internal"}],"src":"23211:19:30"},"scope":8288,"src":"23157:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7752,"nodeType":"Block","src":"23778:150:30","statements":[{"expression":{"id":7740,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7735,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7733,"src":"23788:10:30","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7738,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7730,"src":"23808:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7737,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23801:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int160_$","typeString":"type(int160)"},"typeName":{"id":7736,"name":"int160","nodeType":"ElementaryTypeName","src":"23801:6:30","typeDescriptions":{}}},"id":7739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23801:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"src":"23788:26:30","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"id":7741,"nodeType":"ExpressionStatement","src":"23788:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7744,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7742,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7733,"src":"23828:10:30","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7743,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7730,"src":"23842:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23828:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7751,"nodeType":"IfStatement","src":"23824:98:30","trueBody":{"id":7750,"nodeType":"Block","src":"23849:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313630","id":7746,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23900:3:30","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},{"id":7747,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7730,"src":"23905:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7745,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"23870:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7748,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23870:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7749,"nodeType":"RevertStatement","src":"23863:48:30"}]}}]},"documentation":{"id":7728,"nodeType":"StructuredDocumentation","src":"23387:312:30","text":" @dev Returns the downcasted int160 from int256, reverting on\n overflow (when the input is less than smallest int160 or\n greater than largest int160).\n Counterpart to Solidity's `int160` operator.\n Requirements:\n - input must fit into 160 bits"},"id":7753,"implemented":true,"kind":"function","modifiers":[],"name":"toInt160","nameLocation":"23713:8:30","nodeType":"FunctionDefinition","parameters":{"id":7731,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7730,"mutability":"mutable","name":"value","nameLocation":"23729:5:30","nodeType":"VariableDeclaration","scope":7753,"src":"23722:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7729,"name":"int256","nodeType":"ElementaryTypeName","src":"23722:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23721:14:30"},"returnParameters":{"id":7734,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7733,"mutability":"mutable","name":"downcasted","nameLocation":"23766:10:30","nodeType":"VariableDeclaration","scope":7753,"src":"23759:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"},"typeName":{"id":7732,"name":"int160","nodeType":"ElementaryTypeName","src":"23759:6:30","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"visibility":"internal"}],"src":"23758:19:30"},"scope":8288,"src":"23704:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7778,"nodeType":"Block","src":"24325:150:30","statements":[{"expression":{"id":7766,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7761,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7759,"src":"24335:10:30","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7764,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7756,"src":"24355:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7763,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24348:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int152_$","typeString":"type(int152)"},"typeName":{"id":7762,"name":"int152","nodeType":"ElementaryTypeName","src":"24348:6:30","typeDescriptions":{}}},"id":7765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24348:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"src":"24335:26:30","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"id":7767,"nodeType":"ExpressionStatement","src":"24335:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7768,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7759,"src":"24375:10:30","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7769,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7756,"src":"24389:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24375:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7777,"nodeType":"IfStatement","src":"24371:98:30","trueBody":{"id":7776,"nodeType":"Block","src":"24396:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313532","id":7772,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24447:3:30","typeDescriptions":{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},"value":"152"},{"id":7773,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7756,"src":"24452:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7771,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"24417:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7774,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24417:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7775,"nodeType":"RevertStatement","src":"24410:48:30"}]}}]},"documentation":{"id":7754,"nodeType":"StructuredDocumentation","src":"23934:312:30","text":" @dev Returns the downcasted int152 from int256, reverting on\n overflow (when the input is less than smallest int152 or\n greater than largest int152).\n Counterpart to Solidity's `int152` operator.\n Requirements:\n - input must fit into 152 bits"},"id":7779,"implemented":true,"kind":"function","modifiers":[],"name":"toInt152","nameLocation":"24260:8:30","nodeType":"FunctionDefinition","parameters":{"id":7757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7756,"mutability":"mutable","name":"value","nameLocation":"24276:5:30","nodeType":"VariableDeclaration","scope":7779,"src":"24269:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7755,"name":"int256","nodeType":"ElementaryTypeName","src":"24269:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"24268:14:30"},"returnParameters":{"id":7760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7759,"mutability":"mutable","name":"downcasted","nameLocation":"24313:10:30","nodeType":"VariableDeclaration","scope":7779,"src":"24306:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"},"typeName":{"id":7758,"name":"int152","nodeType":"ElementaryTypeName","src":"24306:6:30","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"visibility":"internal"}],"src":"24305:19:30"},"scope":8288,"src":"24251:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7804,"nodeType":"Block","src":"24872:150:30","statements":[{"expression":{"id":7792,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7787,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7785,"src":"24882:10:30","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7790,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7782,"src":"24902:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7789,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24895:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int144_$","typeString":"type(int144)"},"typeName":{"id":7788,"name":"int144","nodeType":"ElementaryTypeName","src":"24895:6:30","typeDescriptions":{}}},"id":7791,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24895:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"src":"24882:26:30","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"id":7793,"nodeType":"ExpressionStatement","src":"24882:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7794,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7785,"src":"24922:10:30","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7795,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7782,"src":"24936:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24922:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7803,"nodeType":"IfStatement","src":"24918:98:30","trueBody":{"id":7802,"nodeType":"Block","src":"24943:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313434","id":7798,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24994:3:30","typeDescriptions":{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},"value":"144"},{"id":7799,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7782,"src":"24999:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7797,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"24964:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7800,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24964:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7801,"nodeType":"RevertStatement","src":"24957:48:30"}]}}]},"documentation":{"id":7780,"nodeType":"StructuredDocumentation","src":"24481:312:30","text":" @dev Returns the downcasted int144 from int256, reverting on\n overflow (when the input is less than smallest int144 or\n greater than largest int144).\n Counterpart to Solidity's `int144` operator.\n Requirements:\n - input must fit into 144 bits"},"id":7805,"implemented":true,"kind":"function","modifiers":[],"name":"toInt144","nameLocation":"24807:8:30","nodeType":"FunctionDefinition","parameters":{"id":7783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7782,"mutability":"mutable","name":"value","nameLocation":"24823:5:30","nodeType":"VariableDeclaration","scope":7805,"src":"24816:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7781,"name":"int256","nodeType":"ElementaryTypeName","src":"24816:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"24815:14:30"},"returnParameters":{"id":7786,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7785,"mutability":"mutable","name":"downcasted","nameLocation":"24860:10:30","nodeType":"VariableDeclaration","scope":7805,"src":"24853:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"},"typeName":{"id":7784,"name":"int144","nodeType":"ElementaryTypeName","src":"24853:6:30","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"visibility":"internal"}],"src":"24852:19:30"},"scope":8288,"src":"24798:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7830,"nodeType":"Block","src":"25419:150:30","statements":[{"expression":{"id":7818,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7813,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7811,"src":"25429:10:30","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7816,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7808,"src":"25449:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7815,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25442:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int136_$","typeString":"type(int136)"},"typeName":{"id":7814,"name":"int136","nodeType":"ElementaryTypeName","src":"25442:6:30","typeDescriptions":{}}},"id":7817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25442:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"src":"25429:26:30","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"id":7819,"nodeType":"ExpressionStatement","src":"25429:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7822,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7820,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7811,"src":"25469:10:30","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7821,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7808,"src":"25483:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"25469:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7829,"nodeType":"IfStatement","src":"25465:98:30","trueBody":{"id":7828,"nodeType":"Block","src":"25490:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313336","id":7824,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25541:3:30","typeDescriptions":{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},"value":"136"},{"id":7825,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7808,"src":"25546:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7823,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"25511:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7826,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25511:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7827,"nodeType":"RevertStatement","src":"25504:48:30"}]}}]},"documentation":{"id":7806,"nodeType":"StructuredDocumentation","src":"25028:312:30","text":" @dev Returns the downcasted int136 from int256, reverting on\n overflow (when the input is less than smallest int136 or\n greater than largest int136).\n Counterpart to Solidity's `int136` operator.\n Requirements:\n - input must fit into 136 bits"},"id":7831,"implemented":true,"kind":"function","modifiers":[],"name":"toInt136","nameLocation":"25354:8:30","nodeType":"FunctionDefinition","parameters":{"id":7809,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7808,"mutability":"mutable","name":"value","nameLocation":"25370:5:30","nodeType":"VariableDeclaration","scope":7831,"src":"25363:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7807,"name":"int256","nodeType":"ElementaryTypeName","src":"25363:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"25362:14:30"},"returnParameters":{"id":7812,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7811,"mutability":"mutable","name":"downcasted","nameLocation":"25407:10:30","nodeType":"VariableDeclaration","scope":7831,"src":"25400:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"},"typeName":{"id":7810,"name":"int136","nodeType":"ElementaryTypeName","src":"25400:6:30","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"visibility":"internal"}],"src":"25399:19:30"},"scope":8288,"src":"25345:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7856,"nodeType":"Block","src":"25966:150:30","statements":[{"expression":{"id":7844,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7839,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7837,"src":"25976:10:30","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7842,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7834,"src":"25996:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7841,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25989:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int128_$","typeString":"type(int128)"},"typeName":{"id":7840,"name":"int128","nodeType":"ElementaryTypeName","src":"25989:6:30","typeDescriptions":{}}},"id":7843,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25989:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"src":"25976:26:30","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"id":7845,"nodeType":"ExpressionStatement","src":"25976:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7848,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7846,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7837,"src":"26016:10:30","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7847,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7834,"src":"26030:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26016:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7855,"nodeType":"IfStatement","src":"26012:98:30","trueBody":{"id":7854,"nodeType":"Block","src":"26037:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313238","id":7850,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26088:3:30","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},{"id":7851,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7834,"src":"26093:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7849,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"26058:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7852,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26058:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7853,"nodeType":"RevertStatement","src":"26051:48:30"}]}}]},"documentation":{"id":7832,"nodeType":"StructuredDocumentation","src":"25575:312:30","text":" @dev Returns the downcasted int128 from int256, reverting on\n overflow (when the input is less than smallest int128 or\n greater than largest int128).\n Counterpart to Solidity's `int128` operator.\n Requirements:\n - input must fit into 128 bits"},"id":7857,"implemented":true,"kind":"function","modifiers":[],"name":"toInt128","nameLocation":"25901:8:30","nodeType":"FunctionDefinition","parameters":{"id":7835,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7834,"mutability":"mutable","name":"value","nameLocation":"25917:5:30","nodeType":"VariableDeclaration","scope":7857,"src":"25910:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7833,"name":"int256","nodeType":"ElementaryTypeName","src":"25910:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"25909:14:30"},"returnParameters":{"id":7838,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7837,"mutability":"mutable","name":"downcasted","nameLocation":"25954:10:30","nodeType":"VariableDeclaration","scope":7857,"src":"25947:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"},"typeName":{"id":7836,"name":"int128","nodeType":"ElementaryTypeName","src":"25947:6:30","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"visibility":"internal"}],"src":"25946:19:30"},"scope":8288,"src":"25892:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7882,"nodeType":"Block","src":"26513:150:30","statements":[{"expression":{"id":7870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7865,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7863,"src":"26523:10:30","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7868,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7860,"src":"26543:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7867,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26536:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int120_$","typeString":"type(int120)"},"typeName":{"id":7866,"name":"int120","nodeType":"ElementaryTypeName","src":"26536:6:30","typeDescriptions":{}}},"id":7869,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26536:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"src":"26523:26:30","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"id":7871,"nodeType":"ExpressionStatement","src":"26523:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7872,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7863,"src":"26563:10:30","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7873,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7860,"src":"26577:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26563:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7881,"nodeType":"IfStatement","src":"26559:98:30","trueBody":{"id":7880,"nodeType":"Block","src":"26584:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313230","id":7876,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26635:3:30","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},{"id":7877,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7860,"src":"26640:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7875,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"26605:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7878,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26605:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7879,"nodeType":"RevertStatement","src":"26598:48:30"}]}}]},"documentation":{"id":7858,"nodeType":"StructuredDocumentation","src":"26122:312:30","text":" @dev Returns the downcasted int120 from int256, reverting on\n overflow (when the input is less than smallest int120 or\n greater than largest int120).\n Counterpart to Solidity's `int120` operator.\n Requirements:\n - input must fit into 120 bits"},"id":7883,"implemented":true,"kind":"function","modifiers":[],"name":"toInt120","nameLocation":"26448:8:30","nodeType":"FunctionDefinition","parameters":{"id":7861,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7860,"mutability":"mutable","name":"value","nameLocation":"26464:5:30","nodeType":"VariableDeclaration","scope":7883,"src":"26457:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7859,"name":"int256","nodeType":"ElementaryTypeName","src":"26457:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"26456:14:30"},"returnParameters":{"id":7864,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7863,"mutability":"mutable","name":"downcasted","nameLocation":"26501:10:30","nodeType":"VariableDeclaration","scope":7883,"src":"26494:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"},"typeName":{"id":7862,"name":"int120","nodeType":"ElementaryTypeName","src":"26494:6:30","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"visibility":"internal"}],"src":"26493:19:30"},"scope":8288,"src":"26439:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7908,"nodeType":"Block","src":"27060:150:30","statements":[{"expression":{"id":7896,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7891,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7889,"src":"27070:10:30","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7894,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7886,"src":"27090:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7893,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27083:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int112_$","typeString":"type(int112)"},"typeName":{"id":7892,"name":"int112","nodeType":"ElementaryTypeName","src":"27083:6:30","typeDescriptions":{}}},"id":7895,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27083:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"src":"27070:26:30","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"id":7897,"nodeType":"ExpressionStatement","src":"27070:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7898,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7889,"src":"27110:10:30","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7899,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7886,"src":"27124:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27110:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7907,"nodeType":"IfStatement","src":"27106:98:30","trueBody":{"id":7906,"nodeType":"Block","src":"27131:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313132","id":7902,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27182:3:30","typeDescriptions":{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},"value":"112"},{"id":7903,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7886,"src":"27187:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7901,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"27152:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7904,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27152:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7905,"nodeType":"RevertStatement","src":"27145:48:30"}]}}]},"documentation":{"id":7884,"nodeType":"StructuredDocumentation","src":"26669:312:30","text":" @dev Returns the downcasted int112 from int256, reverting on\n overflow (when the input is less than smallest int112 or\n greater than largest int112).\n Counterpart to Solidity's `int112` operator.\n Requirements:\n - input must fit into 112 bits"},"id":7909,"implemented":true,"kind":"function","modifiers":[],"name":"toInt112","nameLocation":"26995:8:30","nodeType":"FunctionDefinition","parameters":{"id":7887,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7886,"mutability":"mutable","name":"value","nameLocation":"27011:5:30","nodeType":"VariableDeclaration","scope":7909,"src":"27004:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7885,"name":"int256","nodeType":"ElementaryTypeName","src":"27004:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"27003:14:30"},"returnParameters":{"id":7890,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7889,"mutability":"mutable","name":"downcasted","nameLocation":"27048:10:30","nodeType":"VariableDeclaration","scope":7909,"src":"27041:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"},"typeName":{"id":7888,"name":"int112","nodeType":"ElementaryTypeName","src":"27041:6:30","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"visibility":"internal"}],"src":"27040:19:30"},"scope":8288,"src":"26986:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7934,"nodeType":"Block","src":"27607:150:30","statements":[{"expression":{"id":7922,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7917,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7915,"src":"27617:10:30","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7920,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7912,"src":"27637:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7919,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27630:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int104_$","typeString":"type(int104)"},"typeName":{"id":7918,"name":"int104","nodeType":"ElementaryTypeName","src":"27630:6:30","typeDescriptions":{}}},"id":7921,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27630:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"src":"27617:26:30","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"id":7923,"nodeType":"ExpressionStatement","src":"27617:26:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7926,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7924,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7915,"src":"27657:10:30","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7925,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7912,"src":"27671:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27657:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7933,"nodeType":"IfStatement","src":"27653:98:30","trueBody":{"id":7932,"nodeType":"Block","src":"27678:73:30","statements":[{"errorCall":{"arguments":[{"hexValue":"313034","id":7928,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27729:3:30","typeDescriptions":{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},"value":"104"},{"id":7929,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7912,"src":"27734:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7927,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"27699:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7930,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27699:41:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7931,"nodeType":"RevertStatement","src":"27692:48:30"}]}}]},"documentation":{"id":7910,"nodeType":"StructuredDocumentation","src":"27216:312:30","text":" @dev Returns the downcasted int104 from int256, reverting on\n overflow (when the input is less than smallest int104 or\n greater than largest int104).\n Counterpart to Solidity's `int104` operator.\n Requirements:\n - input must fit into 104 bits"},"id":7935,"implemented":true,"kind":"function","modifiers":[],"name":"toInt104","nameLocation":"27542:8:30","nodeType":"FunctionDefinition","parameters":{"id":7913,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7912,"mutability":"mutable","name":"value","nameLocation":"27558:5:30","nodeType":"VariableDeclaration","scope":7935,"src":"27551:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7911,"name":"int256","nodeType":"ElementaryTypeName","src":"27551:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"27550:14:30"},"returnParameters":{"id":7916,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7915,"mutability":"mutable","name":"downcasted","nameLocation":"27595:10:30","nodeType":"VariableDeclaration","scope":7935,"src":"27588:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"},"typeName":{"id":7914,"name":"int104","nodeType":"ElementaryTypeName","src":"27588:6:30","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"visibility":"internal"}],"src":"27587:19:30"},"scope":8288,"src":"27533:224:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7960,"nodeType":"Block","src":"28147:148:30","statements":[{"expression":{"id":7948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7943,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7941,"src":"28157:10:30","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7946,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7938,"src":"28176:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7945,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28170:5:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int96_$","typeString":"type(int96)"},"typeName":{"id":7944,"name":"int96","nodeType":"ElementaryTypeName","src":"28170:5:30","typeDescriptions":{}}},"id":7947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28170:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"src":"28157:25:30","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"id":7949,"nodeType":"ExpressionStatement","src":"28157:25:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7952,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7950,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7941,"src":"28196:10:30","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7951,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7938,"src":"28210:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28196:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7959,"nodeType":"IfStatement","src":"28192:97:30","trueBody":{"id":7958,"nodeType":"Block","src":"28217:72:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3936","id":7954,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28268:2:30","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},{"id":7955,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7938,"src":"28272:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7953,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"28238:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7956,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28238:40:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7957,"nodeType":"RevertStatement","src":"28231:47:30"}]}}]},"documentation":{"id":7936,"nodeType":"StructuredDocumentation","src":"27763:307:30","text":" @dev Returns the downcasted int96 from int256, reverting on\n overflow (when the input is less than smallest int96 or\n greater than largest int96).\n Counterpart to Solidity's `int96` operator.\n Requirements:\n - input must fit into 96 bits"},"id":7961,"implemented":true,"kind":"function","modifiers":[],"name":"toInt96","nameLocation":"28084:7:30","nodeType":"FunctionDefinition","parameters":{"id":7939,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7938,"mutability":"mutable","name":"value","nameLocation":"28099:5:30","nodeType":"VariableDeclaration","scope":7961,"src":"28092:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7937,"name":"int256","nodeType":"ElementaryTypeName","src":"28092:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"28091:14:30"},"returnParameters":{"id":7942,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7941,"mutability":"mutable","name":"downcasted","nameLocation":"28135:10:30","nodeType":"VariableDeclaration","scope":7961,"src":"28129:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"},"typeName":{"id":7940,"name":"int96","nodeType":"ElementaryTypeName","src":"28129:5:30","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"visibility":"internal"}],"src":"28128:18:30"},"scope":8288,"src":"28075:220:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7986,"nodeType":"Block","src":"28685:148:30","statements":[{"expression":{"id":7974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7969,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7967,"src":"28695:10:30","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7972,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7964,"src":"28714:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7971,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28708:5:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int88_$","typeString":"type(int88)"},"typeName":{"id":7970,"name":"int88","nodeType":"ElementaryTypeName","src":"28708:5:30","typeDescriptions":{}}},"id":7973,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28708:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"src":"28695:25:30","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"id":7975,"nodeType":"ExpressionStatement","src":"28695:25:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7976,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7967,"src":"28734:10:30","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7977,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7964,"src":"28748:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28734:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7985,"nodeType":"IfStatement","src":"28730:97:30","trueBody":{"id":7984,"nodeType":"Block","src":"28755:72:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3838","id":7980,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28806:2:30","typeDescriptions":{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},"value":"88"},{"id":7981,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7964,"src":"28810:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7979,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"28776:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7982,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28776:40:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7983,"nodeType":"RevertStatement","src":"28769:47:30"}]}}]},"documentation":{"id":7962,"nodeType":"StructuredDocumentation","src":"28301:307:30","text":" @dev Returns the downcasted int88 from int256, reverting on\n overflow (when the input is less than smallest int88 or\n greater than largest int88).\n Counterpart to Solidity's `int88` operator.\n Requirements:\n - input must fit into 88 bits"},"id":7987,"implemented":true,"kind":"function","modifiers":[],"name":"toInt88","nameLocation":"28622:7:30","nodeType":"FunctionDefinition","parameters":{"id":7965,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7964,"mutability":"mutable","name":"value","nameLocation":"28637:5:30","nodeType":"VariableDeclaration","scope":7987,"src":"28630:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7963,"name":"int256","nodeType":"ElementaryTypeName","src":"28630:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"28629:14:30"},"returnParameters":{"id":7968,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7967,"mutability":"mutable","name":"downcasted","nameLocation":"28673:10:30","nodeType":"VariableDeclaration","scope":7987,"src":"28667:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"},"typeName":{"id":7966,"name":"int88","nodeType":"ElementaryTypeName","src":"28667:5:30","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"visibility":"internal"}],"src":"28666:18:30"},"scope":8288,"src":"28613:220:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8012,"nodeType":"Block","src":"29223:148:30","statements":[{"expression":{"id":8000,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7995,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7993,"src":"29233:10:30","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7998,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7990,"src":"29252:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7997,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29246:5:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int80_$","typeString":"type(int80)"},"typeName":{"id":7996,"name":"int80","nodeType":"ElementaryTypeName","src":"29246:5:30","typeDescriptions":{}}},"id":7999,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29246:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"src":"29233:25:30","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"id":8001,"nodeType":"ExpressionStatement","src":"29233:25:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8004,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8002,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7993,"src":"29272:10:30","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":8003,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7990,"src":"29286:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"29272:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8011,"nodeType":"IfStatement","src":"29268:97:30","trueBody":{"id":8010,"nodeType":"Block","src":"29293:72:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3830","id":8006,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29344:2:30","typeDescriptions":{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},"value":"80"},{"id":8007,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7990,"src":"29348:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8005,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"29314:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":8008,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29314:40:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8009,"nodeType":"RevertStatement","src":"29307:47:30"}]}}]},"documentation":{"id":7988,"nodeType":"StructuredDocumentation","src":"28839:307:30","text":" @dev Returns the downcasted int80 from int256, reverting on\n overflow (when the input is less than smallest int80 or\n greater than largest int80).\n Counterpart to Solidity's `int80` operator.\n Requirements:\n - input must fit into 80 bits"},"id":8013,"implemented":true,"kind":"function","modifiers":[],"name":"toInt80","nameLocation":"29160:7:30","nodeType":"FunctionDefinition","parameters":{"id":7991,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7990,"mutability":"mutable","name":"value","nameLocation":"29175:5:30","nodeType":"VariableDeclaration","scope":8013,"src":"29168:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7989,"name":"int256","nodeType":"ElementaryTypeName","src":"29168:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"29167:14:30"},"returnParameters":{"id":7994,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7993,"mutability":"mutable","name":"downcasted","nameLocation":"29211:10:30","nodeType":"VariableDeclaration","scope":8013,"src":"29205:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"},"typeName":{"id":7992,"name":"int80","nodeType":"ElementaryTypeName","src":"29205:5:30","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"visibility":"internal"}],"src":"29204:18:30"},"scope":8288,"src":"29151:220:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8038,"nodeType":"Block","src":"29761:148:30","statements":[{"expression":{"id":8026,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8021,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8019,"src":"29771:10:30","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8024,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8016,"src":"29790:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8023,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29784:5:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int72_$","typeString":"type(int72)"},"typeName":{"id":8022,"name":"int72","nodeType":"ElementaryTypeName","src":"29784:5:30","typeDescriptions":{}}},"id":8025,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29784:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"src":"29771:25:30","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"id":8027,"nodeType":"ExpressionStatement","src":"29771:25:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8030,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8028,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8019,"src":"29810:10:30","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":8029,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8016,"src":"29824:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"29810:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8037,"nodeType":"IfStatement","src":"29806:97:30","trueBody":{"id":8036,"nodeType":"Block","src":"29831:72:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3732","id":8032,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29882:2:30","typeDescriptions":{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},"value":"72"},{"id":8033,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8016,"src":"29886:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8031,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"29852:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":8034,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29852:40:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8035,"nodeType":"RevertStatement","src":"29845:47:30"}]}}]},"documentation":{"id":8014,"nodeType":"StructuredDocumentation","src":"29377:307:30","text":" @dev Returns the downcasted int72 from int256, reverting on\n overflow (when the input is less than smallest int72 or\n greater than largest int72).\n Counterpart to Solidity's `int72` operator.\n Requirements:\n - input must fit into 72 bits"},"id":8039,"implemented":true,"kind":"function","modifiers":[],"name":"toInt72","nameLocation":"29698:7:30","nodeType":"FunctionDefinition","parameters":{"id":8017,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8016,"mutability":"mutable","name":"value","nameLocation":"29713:5:30","nodeType":"VariableDeclaration","scope":8039,"src":"29706:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8015,"name":"int256","nodeType":"ElementaryTypeName","src":"29706:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"29705:14:30"},"returnParameters":{"id":8020,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8019,"mutability":"mutable","name":"downcasted","nameLocation":"29749:10:30","nodeType":"VariableDeclaration","scope":8039,"src":"29743:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"},"typeName":{"id":8018,"name":"int72","nodeType":"ElementaryTypeName","src":"29743:5:30","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"visibility":"internal"}],"src":"29742:18:30"},"scope":8288,"src":"29689:220:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8064,"nodeType":"Block","src":"30299:148:30","statements":[{"expression":{"id":8052,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8047,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8045,"src":"30309:10:30","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8050,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8042,"src":"30328:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8049,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30322:5:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int64_$","typeString":"type(int64)"},"typeName":{"id":8048,"name":"int64","nodeType":"ElementaryTypeName","src":"30322:5:30","typeDescriptions":{}}},"id":8051,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30322:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"src":"30309:25:30","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"id":8053,"nodeType":"ExpressionStatement","src":"30309:25:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8056,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8054,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8045,"src":"30348:10:30","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":8055,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8042,"src":"30362:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"30348:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8063,"nodeType":"IfStatement","src":"30344:97:30","trueBody":{"id":8062,"nodeType":"Block","src":"30369:72:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3634","id":8058,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30420:2:30","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},{"id":8059,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8042,"src":"30424:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8057,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"30390:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":8060,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30390:40:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8061,"nodeType":"RevertStatement","src":"30383:47:30"}]}}]},"documentation":{"id":8040,"nodeType":"StructuredDocumentation","src":"29915:307:30","text":" @dev Returns the downcasted int64 from int256, reverting on\n overflow (when the input is less than smallest int64 or\n greater than largest int64).\n Counterpart to Solidity's `int64` operator.\n Requirements:\n - input must fit into 64 bits"},"id":8065,"implemented":true,"kind":"function","modifiers":[],"name":"toInt64","nameLocation":"30236:7:30","nodeType":"FunctionDefinition","parameters":{"id":8043,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8042,"mutability":"mutable","name":"value","nameLocation":"30251:5:30","nodeType":"VariableDeclaration","scope":8065,"src":"30244:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8041,"name":"int256","nodeType":"ElementaryTypeName","src":"30244:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30243:14:30"},"returnParameters":{"id":8046,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8045,"mutability":"mutable","name":"downcasted","nameLocation":"30287:10:30","nodeType":"VariableDeclaration","scope":8065,"src":"30281:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"},"typeName":{"id":8044,"name":"int64","nodeType":"ElementaryTypeName","src":"30281:5:30","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"visibility":"internal"}],"src":"30280:18:30"},"scope":8288,"src":"30227:220:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8090,"nodeType":"Block","src":"30837:148:30","statements":[{"expression":{"id":8078,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8073,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8071,"src":"30847:10:30","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8076,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8068,"src":"30866:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8075,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30860:5:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int56_$","typeString":"type(int56)"},"typeName":{"id":8074,"name":"int56","nodeType":"ElementaryTypeName","src":"30860:5:30","typeDescriptions":{}}},"id":8077,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30860:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"src":"30847:25:30","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"id":8079,"nodeType":"ExpressionStatement","src":"30847:25:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8080,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8071,"src":"30886:10:30","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":8081,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8068,"src":"30900:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"30886:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8089,"nodeType":"IfStatement","src":"30882:97:30","trueBody":{"id":8088,"nodeType":"Block","src":"30907:72:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3536","id":8084,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30958:2:30","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},{"id":8085,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8068,"src":"30962:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8083,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"30928:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":8086,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30928:40:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8087,"nodeType":"RevertStatement","src":"30921:47:30"}]}}]},"documentation":{"id":8066,"nodeType":"StructuredDocumentation","src":"30453:307:30","text":" @dev Returns the downcasted int56 from int256, reverting on\n overflow (when the input is less than smallest int56 or\n greater than largest int56).\n Counterpart to Solidity's `int56` operator.\n Requirements:\n - input must fit into 56 bits"},"id":8091,"implemented":true,"kind":"function","modifiers":[],"name":"toInt56","nameLocation":"30774:7:30","nodeType":"FunctionDefinition","parameters":{"id":8069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8068,"mutability":"mutable","name":"value","nameLocation":"30789:5:30","nodeType":"VariableDeclaration","scope":8091,"src":"30782:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8067,"name":"int256","nodeType":"ElementaryTypeName","src":"30782:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30781:14:30"},"returnParameters":{"id":8072,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8071,"mutability":"mutable","name":"downcasted","nameLocation":"30825:10:30","nodeType":"VariableDeclaration","scope":8091,"src":"30819:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"},"typeName":{"id":8070,"name":"int56","nodeType":"ElementaryTypeName","src":"30819:5:30","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"visibility":"internal"}],"src":"30818:18:30"},"scope":8288,"src":"30765:220:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8116,"nodeType":"Block","src":"31375:148:30","statements":[{"expression":{"id":8104,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8099,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8097,"src":"31385:10:30","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8102,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8094,"src":"31404:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8101,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31398:5:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int48_$","typeString":"type(int48)"},"typeName":{"id":8100,"name":"int48","nodeType":"ElementaryTypeName","src":"31398:5:30","typeDescriptions":{}}},"id":8103,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31398:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"src":"31385:25:30","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"id":8105,"nodeType":"ExpressionStatement","src":"31385:25:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8106,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8097,"src":"31424:10:30","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":8107,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8094,"src":"31438:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"31424:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8115,"nodeType":"IfStatement","src":"31420:97:30","trueBody":{"id":8114,"nodeType":"Block","src":"31445:72:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3438","id":8110,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31496:2:30","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},{"id":8111,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8094,"src":"31500:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8109,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"31466:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":8112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31466:40:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8113,"nodeType":"RevertStatement","src":"31459:47:30"}]}}]},"documentation":{"id":8092,"nodeType":"StructuredDocumentation","src":"30991:307:30","text":" @dev Returns the downcasted int48 from int256, reverting on\n overflow (when the input is less than smallest int48 or\n greater than largest int48).\n Counterpart to Solidity's `int48` operator.\n Requirements:\n - input must fit into 48 bits"},"id":8117,"implemented":true,"kind":"function","modifiers":[],"name":"toInt48","nameLocation":"31312:7:30","nodeType":"FunctionDefinition","parameters":{"id":8095,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8094,"mutability":"mutable","name":"value","nameLocation":"31327:5:30","nodeType":"VariableDeclaration","scope":8117,"src":"31320:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8093,"name":"int256","nodeType":"ElementaryTypeName","src":"31320:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"31319:14:30"},"returnParameters":{"id":8098,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8097,"mutability":"mutable","name":"downcasted","nameLocation":"31363:10:30","nodeType":"VariableDeclaration","scope":8117,"src":"31357:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"},"typeName":{"id":8096,"name":"int48","nodeType":"ElementaryTypeName","src":"31357:5:30","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"visibility":"internal"}],"src":"31356:18:30"},"scope":8288,"src":"31303:220:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8142,"nodeType":"Block","src":"31913:148:30","statements":[{"expression":{"id":8130,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8125,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8123,"src":"31923:10:30","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8128,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8120,"src":"31942:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8127,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31936:5:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int40_$","typeString":"type(int40)"},"typeName":{"id":8126,"name":"int40","nodeType":"ElementaryTypeName","src":"31936:5:30","typeDescriptions":{}}},"id":8129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31936:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"src":"31923:25:30","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"id":8131,"nodeType":"ExpressionStatement","src":"31923:25:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8134,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8132,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8123,"src":"31962:10:30","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":8133,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8120,"src":"31976:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"31962:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8141,"nodeType":"IfStatement","src":"31958:97:30","trueBody":{"id":8140,"nodeType":"Block","src":"31983:72:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3430","id":8136,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32034:2:30","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},{"id":8137,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8120,"src":"32038:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8135,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"32004:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":8138,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32004:40:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8139,"nodeType":"RevertStatement","src":"31997:47:30"}]}}]},"documentation":{"id":8118,"nodeType":"StructuredDocumentation","src":"31529:307:30","text":" @dev Returns the downcasted int40 from int256, reverting on\n overflow (when the input is less than smallest int40 or\n greater than largest int40).\n Counterpart to Solidity's `int40` operator.\n Requirements:\n - input must fit into 40 bits"},"id":8143,"implemented":true,"kind":"function","modifiers":[],"name":"toInt40","nameLocation":"31850:7:30","nodeType":"FunctionDefinition","parameters":{"id":8121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8120,"mutability":"mutable","name":"value","nameLocation":"31865:5:30","nodeType":"VariableDeclaration","scope":8143,"src":"31858:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8119,"name":"int256","nodeType":"ElementaryTypeName","src":"31858:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"31857:14:30"},"returnParameters":{"id":8124,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8123,"mutability":"mutable","name":"downcasted","nameLocation":"31901:10:30","nodeType":"VariableDeclaration","scope":8143,"src":"31895:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"},"typeName":{"id":8122,"name":"int40","nodeType":"ElementaryTypeName","src":"31895:5:30","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"visibility":"internal"}],"src":"31894:18:30"},"scope":8288,"src":"31841:220:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8168,"nodeType":"Block","src":"32451:148:30","statements":[{"expression":{"id":8156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8151,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8149,"src":"32461:10:30","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8154,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8146,"src":"32480:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8153,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32474:5:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int32_$","typeString":"type(int32)"},"typeName":{"id":8152,"name":"int32","nodeType":"ElementaryTypeName","src":"32474:5:30","typeDescriptions":{}}},"id":8155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32474:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"src":"32461:25:30","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":8157,"nodeType":"ExpressionStatement","src":"32461:25:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8158,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8149,"src":"32500:10:30","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":8159,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8146,"src":"32514:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"32500:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8167,"nodeType":"IfStatement","src":"32496:97:30","trueBody":{"id":8166,"nodeType":"Block","src":"32521:72:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3332","id":8162,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32572:2:30","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},{"id":8163,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8146,"src":"32576:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8161,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"32542:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":8164,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32542:40:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8165,"nodeType":"RevertStatement","src":"32535:47:30"}]}}]},"documentation":{"id":8144,"nodeType":"StructuredDocumentation","src":"32067:307:30","text":" @dev Returns the downcasted int32 from int256, reverting on\n overflow (when the input is less than smallest int32 or\n greater than largest int32).\n Counterpart to Solidity's `int32` operator.\n Requirements:\n - input must fit into 32 bits"},"id":8169,"implemented":true,"kind":"function","modifiers":[],"name":"toInt32","nameLocation":"32388:7:30","nodeType":"FunctionDefinition","parameters":{"id":8147,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8146,"mutability":"mutable","name":"value","nameLocation":"32403:5:30","nodeType":"VariableDeclaration","scope":8169,"src":"32396:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8145,"name":"int256","nodeType":"ElementaryTypeName","src":"32396:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"32395:14:30"},"returnParameters":{"id":8150,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8149,"mutability":"mutable","name":"downcasted","nameLocation":"32439:10:30","nodeType":"VariableDeclaration","scope":8169,"src":"32433:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":8148,"name":"int32","nodeType":"ElementaryTypeName","src":"32433:5:30","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"src":"32432:18:30"},"scope":8288,"src":"32379:220:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8194,"nodeType":"Block","src":"32989:148:30","statements":[{"expression":{"id":8182,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8177,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8175,"src":"32999:10:30","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8180,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8172,"src":"33018:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8179,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33012:5:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int24_$","typeString":"type(int24)"},"typeName":{"id":8178,"name":"int24","nodeType":"ElementaryTypeName","src":"33012:5:30","typeDescriptions":{}}},"id":8181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33012:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"src":"32999:25:30","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"id":8183,"nodeType":"ExpressionStatement","src":"32999:25:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8184,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8175,"src":"33038:10:30","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":8185,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8172,"src":"33052:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"33038:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8193,"nodeType":"IfStatement","src":"33034:97:30","trueBody":{"id":8192,"nodeType":"Block","src":"33059:72:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3234","id":8188,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33110:2:30","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},{"id":8189,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8172,"src":"33114:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8187,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"33080:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":8190,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33080:40:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8191,"nodeType":"RevertStatement","src":"33073:47:30"}]}}]},"documentation":{"id":8170,"nodeType":"StructuredDocumentation","src":"32605:307:30","text":" @dev Returns the downcasted int24 from int256, reverting on\n overflow (when the input is less than smallest int24 or\n greater than largest int24).\n Counterpart to Solidity's `int24` operator.\n Requirements:\n - input must fit into 24 bits"},"id":8195,"implemented":true,"kind":"function","modifiers":[],"name":"toInt24","nameLocation":"32926:7:30","nodeType":"FunctionDefinition","parameters":{"id":8173,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8172,"mutability":"mutable","name":"value","nameLocation":"32941:5:30","nodeType":"VariableDeclaration","scope":8195,"src":"32934:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8171,"name":"int256","nodeType":"ElementaryTypeName","src":"32934:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"32933:14:30"},"returnParameters":{"id":8176,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8175,"mutability":"mutable","name":"downcasted","nameLocation":"32977:10:30","nodeType":"VariableDeclaration","scope":8195,"src":"32971:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":8174,"name":"int24","nodeType":"ElementaryTypeName","src":"32971:5:30","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"}],"src":"32970:18:30"},"scope":8288,"src":"32917:220:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8220,"nodeType":"Block","src":"33527:148:30","statements":[{"expression":{"id":8208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8203,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8201,"src":"33537:10:30","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8206,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8198,"src":"33556:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8205,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33550:5:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int16_$","typeString":"type(int16)"},"typeName":{"id":8204,"name":"int16","nodeType":"ElementaryTypeName","src":"33550:5:30","typeDescriptions":{}}},"id":8207,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33550:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"src":"33537:25:30","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"id":8209,"nodeType":"ExpressionStatement","src":"33537:25:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8210,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8201,"src":"33576:10:30","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":8211,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8198,"src":"33590:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"33576:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8219,"nodeType":"IfStatement","src":"33572:97:30","trueBody":{"id":8218,"nodeType":"Block","src":"33597:72:30","statements":[{"errorCall":{"arguments":[{"hexValue":"3136","id":8214,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33648:2:30","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},{"id":8215,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8198,"src":"33652:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8213,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"33618:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":8216,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33618:40:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8217,"nodeType":"RevertStatement","src":"33611:47:30"}]}}]},"documentation":{"id":8196,"nodeType":"StructuredDocumentation","src":"33143:307:30","text":" @dev Returns the downcasted int16 from int256, reverting on\n overflow (when the input is less than smallest int16 or\n greater than largest int16).\n Counterpart to Solidity's `int16` operator.\n Requirements:\n - input must fit into 16 bits"},"id":8221,"implemented":true,"kind":"function","modifiers":[],"name":"toInt16","nameLocation":"33464:7:30","nodeType":"FunctionDefinition","parameters":{"id":8199,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8198,"mutability":"mutable","name":"value","nameLocation":"33479:5:30","nodeType":"VariableDeclaration","scope":8221,"src":"33472:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8197,"name":"int256","nodeType":"ElementaryTypeName","src":"33472:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"33471:14:30"},"returnParameters":{"id":8202,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8201,"mutability":"mutable","name":"downcasted","nameLocation":"33515:10:30","nodeType":"VariableDeclaration","scope":8221,"src":"33509:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"},"typeName":{"id":8200,"name":"int16","nodeType":"ElementaryTypeName","src":"33509:5:30","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"visibility":"internal"}],"src":"33508:18:30"},"scope":8288,"src":"33455:220:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8246,"nodeType":"Block","src":"34058:146:30","statements":[{"expression":{"id":8234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8229,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8227,"src":"34068:10:30","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8232,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8224,"src":"34086:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8231,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34081:4:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int8_$","typeString":"type(int8)"},"typeName":{"id":8230,"name":"int8","nodeType":"ElementaryTypeName","src":"34081:4:30","typeDescriptions":{}}},"id":8233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34081:11:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"src":"34068:24:30","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"id":8235,"nodeType":"ExpressionStatement","src":"34068:24:30"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8238,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8236,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8227,"src":"34106:10:30","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":8237,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8224,"src":"34120:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"34106:19:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8245,"nodeType":"IfStatement","src":"34102:96:30","trueBody":{"id":8244,"nodeType":"Block","src":"34127:71:30","statements":[{"errorCall":{"arguments":[{"hexValue":"38","id":8240,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"34178:1:30","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"id":8241,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8224,"src":"34181:5:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8239,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"34148:29:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":8242,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34148:39:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8243,"nodeType":"RevertStatement","src":"34141:46:30"}]}}]},"documentation":{"id":8222,"nodeType":"StructuredDocumentation","src":"33681:302:30","text":" @dev Returns the downcasted int8 from int256, reverting on\n overflow (when the input is less than smallest int8 or\n greater than largest int8).\n Counterpart to Solidity's `int8` operator.\n Requirements:\n - input must fit into 8 bits"},"id":8247,"implemented":true,"kind":"function","modifiers":[],"name":"toInt8","nameLocation":"33997:6:30","nodeType":"FunctionDefinition","parameters":{"id":8225,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8224,"mutability":"mutable","name":"value","nameLocation":"34011:5:30","nodeType":"VariableDeclaration","scope":8247,"src":"34004:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8223,"name":"int256","nodeType":"ElementaryTypeName","src":"34004:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"34003:14:30"},"returnParameters":{"id":8228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8227,"mutability":"mutable","name":"downcasted","nameLocation":"34046:10:30","nodeType":"VariableDeclaration","scope":8247,"src":"34041:15:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"},"typeName":{"id":8226,"name":"int8","nodeType":"ElementaryTypeName","src":"34041:4:30","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"visibility":"internal"}],"src":"34040:17:30"},"scope":8288,"src":"33988:216:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8276,"nodeType":"Block","src":"34444:250:30","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8255,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8250,"src":"34557:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"expression":{"arguments":[{"id":8260,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34578:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":8259,"name":"int256","nodeType":"ElementaryTypeName","src":"34578:6:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":8258,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"34573:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":8261,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34573:12:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_int256","typeString":"type(int256)"}},"id":8262,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"34586:3:30","memberName":"max","nodeType":"MemberAccess","src":"34573:16:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8257,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34565:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":8256,"name":"uint256","nodeType":"ElementaryTypeName","src":"34565:7:30","typeDescriptions":{}}},"id":8263,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34565:25:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"34557:33:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8270,"nodeType":"IfStatement","src":"34553:105:30","trueBody":{"id":8269,"nodeType":"Block","src":"34592:66:30","statements":[{"errorCall":{"arguments":[{"id":8266,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8250,"src":"34641:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8265,"name":"SafeCastOverflowedUintToInt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6550,"src":"34613:27:30","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":8267,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34613:34:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8268,"nodeType":"RevertStatement","src":"34606:41:30"}]}},{"expression":{"arguments":[{"id":8273,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8250,"src":"34681:5:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8272,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34674:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":8271,"name":"int256","nodeType":"ElementaryTypeName","src":"34674:6:30","typeDescriptions":{}}},"id":8274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34674:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":8254,"id":8275,"nodeType":"Return","src":"34667:20:30"}]},"documentation":{"id":8248,"nodeType":"StructuredDocumentation","src":"34210:165:30","text":" @dev Converts an unsigned uint256 into a signed int256.\n Requirements:\n - input must be less than or equal to maxInt256."},"id":8277,"implemented":true,"kind":"function","modifiers":[],"name":"toInt256","nameLocation":"34389:8:30","nodeType":"FunctionDefinition","parameters":{"id":8251,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8250,"mutability":"mutable","name":"value","nameLocation":"34406:5:30","nodeType":"VariableDeclaration","scope":8277,"src":"34398:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8249,"name":"uint256","nodeType":"ElementaryTypeName","src":"34398:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34397:15:30"},"returnParameters":{"id":8254,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8253,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8277,"src":"34436:6:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8252,"name":"int256","nodeType":"ElementaryTypeName","src":"34436:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"34435:8:30"},"scope":8288,"src":"34380:314:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8286,"nodeType":"Block","src":"34853:87:30","statements":[{"AST":{"nativeSrc":"34888:46:30","nodeType":"YulBlock","src":"34888:46:30","statements":[{"nativeSrc":"34902:22:30","nodeType":"YulAssignment","src":"34902:22:30","value":{"arguments":[{"arguments":[{"name":"b","nativeSrc":"34921:1:30","nodeType":"YulIdentifier","src":"34921:1:30"}],"functionName":{"name":"iszero","nativeSrc":"34914:6:30","nodeType":"YulIdentifier","src":"34914:6:30"},"nativeSrc":"34914:9:30","nodeType":"YulFunctionCall","src":"34914:9:30"}],"functionName":{"name":"iszero","nativeSrc":"34907:6:30","nodeType":"YulIdentifier","src":"34907:6:30"},"nativeSrc":"34907:17:30","nodeType":"YulFunctionCall","src":"34907:17:30"},"variableNames":[{"name":"u","nativeSrc":"34902:1:30","nodeType":"YulIdentifier","src":"34902:1:30"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":8280,"isOffset":false,"isSlot":false,"src":"34921:1:30","valueSize":1},{"declaration":8283,"isOffset":false,"isSlot":false,"src":"34902:1:30","valueSize":1}],"flags":["memory-safe"],"id":8285,"nodeType":"InlineAssembly","src":"34863:71:30"}]},"documentation":{"id":8278,"nodeType":"StructuredDocumentation","src":"34700:90:30","text":" @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump."},"id":8287,"implemented":true,"kind":"function","modifiers":[],"name":"toUint","nameLocation":"34804:6:30","nodeType":"FunctionDefinition","parameters":{"id":8281,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8280,"mutability":"mutable","name":"b","nameLocation":"34816:1:30","nodeType":"VariableDeclaration","scope":8287,"src":"34811:6:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8279,"name":"bool","nodeType":"ElementaryTypeName","src":"34811:4:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"34810:8:30"},"returnParameters":{"id":8284,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8283,"mutability":"mutable","name":"u","nameLocation":"34850:1:30","nodeType":"VariableDeclaration","scope":8287,"src":"34842:9:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8282,"name":"uint256","nodeType":"ElementaryTypeName","src":"34842:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34841:11:30"},"scope":8288,"src":"34795:145:30","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":8289,"src":"769:34173:30","usedErrors":[6533,6538,6545,6550],"usedEvents":[]}],"src":"192:34751:30"},"id":30},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","exportedSymbols":{"SafeCast":[8288],"SignedMath":[8432]},"id":8433,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":8290,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:31"},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./SafeCast.sol","id":8292,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8433,"sourceUnit":8289,"src":"135:40:31","symbolAliases":[{"foreign":{"id":8291,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"143:8:31","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"SignedMath","contractDependencies":[],"contractKind":"library","documentation":{"id":8293,"nodeType":"StructuredDocumentation","src":"177:80:31","text":" @dev Standard signed math utilities missing in the Solidity language."},"fullyImplemented":true,"id":8432,"linearizedBaseContracts":[8432],"name":"SignedMath","nameLocation":"266:10:31","nodeType":"ContractDefinition","nodes":[{"body":{"id":8322,"nodeType":"Block","src":"746:215:31","statements":[{"id":8321,"nodeType":"UncheckedBlock","src":"756:199:31","statements":[{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8305,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8300,"src":"894:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8308,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8306,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8298,"src":"900:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":8307,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8300,"src":"904:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"900:5:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":8309,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"899:7:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"arguments":[{"id":8314,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8296,"src":"932:9:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":8312,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"916:8:31","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":8313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"925:6:31","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":8287,"src":"916:15:31","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":8315,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"916:26:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8311,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"909:6:31","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":8310,"name":"int256","nodeType":"ElementaryTypeName","src":"909:6:31","typeDescriptions":{}}},"id":8316,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"909:34:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"899:44:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":8318,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"898:46:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"894:50:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":8304,"id":8320,"nodeType":"Return","src":"887:57:31"}]}]},"documentation":{"id":8294,"nodeType":"StructuredDocumentation","src":"283:374:31","text":" @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n one branch when needed, making this function more expensive."},"id":8323,"implemented":true,"kind":"function","modifiers":[],"name":"ternary","nameLocation":"671:7:31","nodeType":"FunctionDefinition","parameters":{"id":8301,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8296,"mutability":"mutable","name":"condition","nameLocation":"684:9:31","nodeType":"VariableDeclaration","scope":8323,"src":"679:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8295,"name":"bool","nodeType":"ElementaryTypeName","src":"679:4:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8298,"mutability":"mutable","name":"a","nameLocation":"702:1:31","nodeType":"VariableDeclaration","scope":8323,"src":"695:8:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8297,"name":"int256","nodeType":"ElementaryTypeName","src":"695:6:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":8300,"mutability":"mutable","name":"b","nameLocation":"712:1:31","nodeType":"VariableDeclaration","scope":8323,"src":"705:8:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8299,"name":"int256","nodeType":"ElementaryTypeName","src":"705:6:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"678:36:31"},"returnParameters":{"id":8304,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8303,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8323,"src":"738:6:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8302,"name":"int256","nodeType":"ElementaryTypeName","src":"738:6:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"737:8:31"},"scope":8432,"src":"662:299:31","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8341,"nodeType":"Block","src":"1102:44:31","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8334,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8326,"src":"1127:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":8335,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8328,"src":"1131:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1127:5:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":8337,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8326,"src":"1134:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":8338,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8328,"src":"1137:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8333,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8323,"src":"1119:7:31","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (bool,int256,int256) pure returns (int256)"}},"id":8339,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1119:20:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":8332,"id":8340,"nodeType":"Return","src":"1112:27:31"}]},"documentation":{"id":8324,"nodeType":"StructuredDocumentation","src":"967:66:31","text":" @dev Returns the largest of two signed numbers."},"id":8342,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"1047:3:31","nodeType":"FunctionDefinition","parameters":{"id":8329,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8326,"mutability":"mutable","name":"a","nameLocation":"1058:1:31","nodeType":"VariableDeclaration","scope":8342,"src":"1051:8:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8325,"name":"int256","nodeType":"ElementaryTypeName","src":"1051:6:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":8328,"mutability":"mutable","name":"b","nameLocation":"1068:1:31","nodeType":"VariableDeclaration","scope":8342,"src":"1061:8:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8327,"name":"int256","nodeType":"ElementaryTypeName","src":"1061:6:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1050:20:31"},"returnParameters":{"id":8332,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8331,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8342,"src":"1094:6:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8330,"name":"int256","nodeType":"ElementaryTypeName","src":"1094:6:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1093:8:31"},"scope":8432,"src":"1038:108:31","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8360,"nodeType":"Block","src":"1288:44:31","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8353,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8345,"src":"1313:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":8354,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8347,"src":"1317:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1313:5:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":8356,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8345,"src":"1320:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":8357,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8347,"src":"1323:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8352,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8323,"src":"1305:7:31","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (bool,int256,int256) pure returns (int256)"}},"id":8358,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1305:20:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":8351,"id":8359,"nodeType":"Return","src":"1298:27:31"}]},"documentation":{"id":8343,"nodeType":"StructuredDocumentation","src":"1152:67:31","text":" @dev Returns the smallest of two signed numbers."},"id":8361,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"1233:3:31","nodeType":"FunctionDefinition","parameters":{"id":8348,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8345,"mutability":"mutable","name":"a","nameLocation":"1244:1:31","nodeType":"VariableDeclaration","scope":8361,"src":"1237:8:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8344,"name":"int256","nodeType":"ElementaryTypeName","src":"1237:6:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":8347,"mutability":"mutable","name":"b","nameLocation":"1254:1:31","nodeType":"VariableDeclaration","scope":8361,"src":"1247:8:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8346,"name":"int256","nodeType":"ElementaryTypeName","src":"1247:6:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1236:20:31"},"returnParameters":{"id":8351,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8350,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8361,"src":"1280:6:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8349,"name":"int256","nodeType":"ElementaryTypeName","src":"1280:6:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1279:8:31"},"scope":8432,"src":"1224:108:31","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8404,"nodeType":"Block","src":"1537:162:31","statements":[{"assignments":[8372],"declarations":[{"constant":false,"id":8372,"mutability":"mutable","name":"x","nameLocation":"1606:1:31","nodeType":"VariableDeclaration","scope":8404,"src":"1599:8:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8371,"name":"int256","nodeType":"ElementaryTypeName","src":"1599:6:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":8385,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8373,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8364,"src":"1611:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":8374,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8366,"src":"1615:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1611:5:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":8376,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1610:7:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8377,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8364,"src":"1622:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":8378,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8366,"src":"1626:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1622:5:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":8380,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1621:7:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":8381,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1632:1:31","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1621:12:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":8383,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1620:14:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1610:24:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"1599:35:31"},{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8386,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8372,"src":"1651:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8400,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8391,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8372,"src":"1671:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8390,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1663:7:31","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":8389,"name":"uint256","nodeType":"ElementaryTypeName","src":"1663:7:31","typeDescriptions":{}}},"id":8392,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1663:10:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":8393,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1677:3:31","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"1663:17:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8388,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1656:6:31","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":8387,"name":"int256","nodeType":"ElementaryTypeName","src":"1656:6:31","typeDescriptions":{}}},"id":8395,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1656:25:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8396,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8364,"src":"1685:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":8397,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8366,"src":"1689:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1685:5:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":8399,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1684:7:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1656:35:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":8401,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1655:37:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1651:41:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":8370,"id":8403,"nodeType":"Return","src":"1644:48:31"}]},"documentation":{"id":8362,"nodeType":"StructuredDocumentation","src":"1338:126:31","text":" @dev Returns the average of two signed numbers without overflow.\n The result is rounded towards zero."},"id":8405,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"1478:7:31","nodeType":"FunctionDefinition","parameters":{"id":8367,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8364,"mutability":"mutable","name":"a","nameLocation":"1493:1:31","nodeType":"VariableDeclaration","scope":8405,"src":"1486:8:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8363,"name":"int256","nodeType":"ElementaryTypeName","src":"1486:6:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":8366,"mutability":"mutable","name":"b","nameLocation":"1503:1:31","nodeType":"VariableDeclaration","scope":8405,"src":"1496:8:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8365,"name":"int256","nodeType":"ElementaryTypeName","src":"1496:6:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1485:20:31"},"returnParameters":{"id":8370,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8369,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8405,"src":"1529:6:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8368,"name":"int256","nodeType":"ElementaryTypeName","src":"1529:6:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1528:8:31"},"scope":8432,"src":"1469:230:31","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8430,"nodeType":"Block","src":"1843:767:31","statements":[{"id":8429,"nodeType":"UncheckedBlock","src":"1853:751:31","statements":[{"assignments":[8414],"declarations":[{"constant":false,"id":8414,"mutability":"mutable","name":"mask","nameLocation":"2424:4:31","nodeType":"VariableDeclaration","scope":8429,"src":"2417:11:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8413,"name":"int256","nodeType":"ElementaryTypeName","src":"2417:6:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":8418,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8415,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8408,"src":"2431:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":8416,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2436:3:31","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"2431:8:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"2417:22:31"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":8423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8421,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8408,"src":"2576:1:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":8422,"name":"mask","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8414,"src":"2580:4:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"2576:8:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":8424,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2575:10:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":8425,"name":"mask","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8414,"src":"2588:4:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"2575:17:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":8420,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2567:7:31","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":8419,"name":"uint256","nodeType":"ElementaryTypeName","src":"2567:7:31","typeDescriptions":{}}},"id":8427,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2567:26:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8412,"id":8428,"nodeType":"Return","src":"2560:33:31"}]}]},"documentation":{"id":8406,"nodeType":"StructuredDocumentation","src":"1705:78:31","text":" @dev Returns the absolute unsigned value of a signed value."},"id":8431,"implemented":true,"kind":"function","modifiers":[],"name":"abs","nameLocation":"1797:3:31","nodeType":"FunctionDefinition","parameters":{"id":8409,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8408,"mutability":"mutable","name":"n","nameLocation":"1808:1:31","nodeType":"VariableDeclaration","scope":8431,"src":"1801:8:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8407,"name":"int256","nodeType":"ElementaryTypeName","src":"1801:6:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1800:10:31"},"returnParameters":{"id":8412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8411,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8431,"src":"1834:7:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8410,"name":"uint256","nodeType":"ElementaryTypeName","src":"1834:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1833:9:31"},"scope":8432,"src":"1788:822:31","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":8433,"src":"258:2354:31","usedErrors":[],"usedEvents":[]}],"src":"109:2504:31"},"id":31},"@openzeppelin/contracts/utils/types/Time.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","exportedSymbols":{"Math":[6523],"SafeCast":[8288],"Time":[8706]},"id":8707,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":8434,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"104:24:32"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"../math/Math.sol","id":8436,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8707,"sourceUnit":6524,"src":"130:38:32","symbolAliases":[{"foreign":{"id":8435,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6523,"src":"138:4:32","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../math/SafeCast.sol","id":8438,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8707,"sourceUnit":8289,"src":"169:46:32","symbolAliases":[{"foreign":{"id":8437,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"177:8:32","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Time","contractDependencies":[],"contractKind":"library","documentation":{"id":8439,"nodeType":"StructuredDocumentation","src":"217:422:32","text":" @dev This library provides helpers for manipulating time-related objects.\n It uses the following types:\n - `uint48` for timepoints\n - `uint32` for durations\n While the library doesn't provide specific types for timepoints and duration, it does provide:\n - a `Delay` type to represent duration that can be programmed to change value automatically at a given point\n - additional helper functions"},"fullyImplemented":true,"id":8706,"linearizedBaseContracts":[8706],"name":"Time","nameLocation":"648:4:32","nodeType":"ContractDefinition","nodes":[{"global":false,"id":8441,"libraryName":{"id":8440,"name":"Time","nameLocations":["665:4:32"],"nodeType":"IdentifierPath","referencedDeclaration":8706,"src":"665:4:32"},"nodeType":"UsingForDirective","src":"659:17:32"},{"body":{"id":8453,"nodeType":"Block","src":"802:58:32","statements":[{"expression":{"arguments":[{"expression":{"id":8449,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"837:5:32","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"843:9:32","memberName":"timestamp","nodeType":"MemberAccess","src":"837:15:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":8447,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"819:8:32","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":8448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"828:8:32","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":7278,"src":"819:17:32","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":8451,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"819:34:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":8446,"id":8452,"nodeType":"Return","src":"812:41:32"}]},"documentation":{"id":8442,"nodeType":"StructuredDocumentation","src":"682:63:32","text":" @dev Get the block timestamp as a Timepoint."},"id":8454,"implemented":true,"kind":"function","modifiers":[],"name":"timestamp","nameLocation":"759:9:32","nodeType":"FunctionDefinition","parameters":{"id":8443,"nodeType":"ParameterList","parameters":[],"src":"768:2:32"},"returnParameters":{"id":8446,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8445,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8454,"src":"794:6:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":8444,"name":"uint48","nodeType":"ElementaryTypeName","src":"794:6:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"793:8:32"},"scope":8706,"src":"750:110:32","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":8466,"nodeType":"Block","src":"985:55:32","statements":[{"expression":{"arguments":[{"expression":{"id":8462,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"1020:5:32","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1026:6:32","memberName":"number","nodeType":"MemberAccess","src":"1020:12:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":8460,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"1002:8:32","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":8461,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1011:8:32","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":7278,"src":"1002:17:32","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":8464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1002:31:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":8459,"id":8465,"nodeType":"Return","src":"995:38:32"}]},"documentation":{"id":8455,"nodeType":"StructuredDocumentation","src":"866:60:32","text":" @dev Get the block number as a Timepoint."},"id":8467,"implemented":true,"kind":"function","modifiers":[],"name":"blockNumber","nameLocation":"940:11:32","nodeType":"FunctionDefinition","parameters":{"id":8456,"nodeType":"ParameterList","parameters":[],"src":"951:2:32"},"returnParameters":{"id":8459,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8458,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8467,"src":"977:6:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":8457,"name":"uint48","nodeType":"ElementaryTypeName","src":"977:6:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"976:8:32"},"scope":8706,"src":"931:109:32","stateMutability":"view","virtual":false,"visibility":"internal"},{"canonicalName":"Time.Delay","id":8469,"name":"Delay","nameLocation":"2377:5:32","nodeType":"UserDefinedValueTypeDefinition","src":"2372:22:32","underlyingType":{"id":8468,"name":"uint112","nodeType":"ElementaryTypeName","src":"2386:7:32","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}},{"body":{"id":8483,"nodeType":"Block","src":"2572:44:32","statements":[{"expression":{"arguments":[{"id":8480,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8472,"src":"2600:8:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":8478,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8469,"src":"2589:5:32","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$8469_$","typeString":"type(Time.Delay)"}},"id":8479,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2595:4:32","memberName":"wrap","nodeType":"MemberAccess","src":"2589:10:32","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint112_$returns$_t_userDefinedValueType$_Delay_$8469_$","typeString":"function (uint112) pure returns (Time.Delay)"}},"id":8481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2589:20:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"functionReturnParameters":8477,"id":8482,"nodeType":"Return","src":"2582:27:32"}]},"documentation":{"id":8470,"nodeType":"StructuredDocumentation","src":"2400:103:32","text":" @dev Wrap a duration into a Delay to add the one-step \"update in the future\" feature"},"id":8484,"implemented":true,"kind":"function","modifiers":[],"name":"toDelay","nameLocation":"2517:7:32","nodeType":"FunctionDefinition","parameters":{"id":8473,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8472,"mutability":"mutable","name":"duration","nameLocation":"2532:8:32","nodeType":"VariableDeclaration","scope":8484,"src":"2525:15:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8471,"name":"uint32","nodeType":"ElementaryTypeName","src":"2525:6:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2524:17:32"},"returnParameters":{"id":8477,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8476,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8484,"src":"2565:5:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"},"typeName":{"id":8475,"nodeType":"UserDefinedTypeName","pathNode":{"id":8474,"name":"Delay","nameLocations":["2565:5:32"],"nodeType":"IdentifierPath","referencedDeclaration":8469,"src":"2565:5:32"},"referencedDeclaration":8469,"src":"2565:5:32","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"2564:7:32"},"scope":8706,"src":"2508:108:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8521,"nodeType":"Block","src":"3016:159:32","statements":[{"expression":{"id":8506,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":8499,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8493,"src":"3027:11:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":8500,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8495,"src":"3040:10:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":8501,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8497,"src":"3052:6:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":8502,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"3026:33:32","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8503,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8488,"src":"3062:4:32","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"id":8504,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3067:6:32","memberName":"unpack","nodeType":"MemberAccess","referencedDeclaration":8667,"src":"3062:11:32","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$8469_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$8469_$","typeString":"function (Time.Delay) pure returns (uint32,uint32,uint48)"}},"id":8505,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3062:13:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"src":"3026:49:32","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8507,"nodeType":"ExpressionStatement","src":"3026:49:32"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":8510,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8508,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8497,"src":"3092:6:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":8509,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8490,"src":"3102:9:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"3092:19:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"id":8515,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8493,"src":"3136:11:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":8516,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8495,"src":"3149:10:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":8517,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8497,"src":"3161:6:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":8518,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3135:33:32","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"id":8519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3092:76:32","trueExpression":{"components":[{"id":8511,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8495,"src":"3115:10:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":8512,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3127:1:32","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":8513,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3130:1:32","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8514,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3114:18:32","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_rational_0_by_1_$_t_rational_0_by_1_$","typeString":"tuple(uint32,int_const 0,int_const 0)"}},"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":8498,"id":8520,"nodeType":"Return","src":"3085:83:32"}]},"documentation":{"id":8485,"nodeType":"StructuredDocumentation","src":"2622:241:32","text":" @dev Get the value at a given timepoint plus the pending value and effect timepoint if there is a scheduled\n change after this timepoint. If the effect timepoint is 0, then the pending value should not be considered."},"id":8522,"implemented":true,"kind":"function","modifiers":[],"name":"_getFullAt","nameLocation":"2877:10:32","nodeType":"FunctionDefinition","parameters":{"id":8491,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8488,"mutability":"mutable","name":"self","nameLocation":"2903:4:32","nodeType":"VariableDeclaration","scope":8522,"src":"2897:10:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"},"typeName":{"id":8487,"nodeType":"UserDefinedTypeName","pathNode":{"id":8486,"name":"Delay","nameLocations":["2897:5:32"],"nodeType":"IdentifierPath","referencedDeclaration":8469,"src":"2897:5:32"},"referencedDeclaration":8469,"src":"2897:5:32","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":8490,"mutability":"mutable","name":"timepoint","nameLocation":"2924:9:32","nodeType":"VariableDeclaration","scope":8522,"src":"2917:16:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":8489,"name":"uint48","nodeType":"ElementaryTypeName","src":"2917:6:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2887:52:32"},"returnParameters":{"id":8498,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8493,"mutability":"mutable","name":"valueBefore","nameLocation":"2969:11:32","nodeType":"VariableDeclaration","scope":8522,"src":"2962:18:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8492,"name":"uint32","nodeType":"ElementaryTypeName","src":"2962:6:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":8495,"mutability":"mutable","name":"valueAfter","nameLocation":"2989:10:32","nodeType":"VariableDeclaration","scope":8522,"src":"2982:17:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8494,"name":"uint32","nodeType":"ElementaryTypeName","src":"2982:6:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":8497,"mutability":"mutable","name":"effect","nameLocation":"3008:6:32","nodeType":"VariableDeclaration","scope":8522,"src":"3001:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":8496,"name":"uint48","nodeType":"ElementaryTypeName","src":"3001:6:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2961:54:32"},"scope":8706,"src":"2868:307:32","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":8541,"nodeType":"Block","src":"3499:53:32","statements":[{"expression":{"arguments":[{"id":8536,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8526,"src":"3527:4:32","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},{"arguments":[],"expression":{"argumentTypes":[],"id":8537,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8454,"src":"3533:9:32","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":8538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3533:11:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":8535,"name":"_getFullAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8522,"src":"3516:10:32","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$8469_$_t_uint48_$returns$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"function (Time.Delay,uint48) pure returns (uint32,uint32,uint48)"}},"id":8539,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3516:29:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":8534,"id":8540,"nodeType":"Return","src":"3509:36:32"}]},"documentation":{"id":8523,"nodeType":"StructuredDocumentation","src":"3181:207:32","text":" @dev Get the current value plus the pending value and effect timepoint if there is a scheduled change. If the\n effect timepoint is 0, then the pending value should not be considered."},"id":8542,"implemented":true,"kind":"function","modifiers":[],"name":"getFull","nameLocation":"3402:7:32","nodeType":"FunctionDefinition","parameters":{"id":8527,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8526,"mutability":"mutable","name":"self","nameLocation":"3416:4:32","nodeType":"VariableDeclaration","scope":8542,"src":"3410:10:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"},"typeName":{"id":8525,"nodeType":"UserDefinedTypeName","pathNode":{"id":8524,"name":"Delay","nameLocations":["3410:5:32"],"nodeType":"IdentifierPath","referencedDeclaration":8469,"src":"3410:5:32"},"referencedDeclaration":8469,"src":"3410:5:32","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"3409:12:32"},"returnParameters":{"id":8534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8529,"mutability":"mutable","name":"valueBefore","nameLocation":"3452:11:32","nodeType":"VariableDeclaration","scope":8542,"src":"3445:18:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8528,"name":"uint32","nodeType":"ElementaryTypeName","src":"3445:6:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":8531,"mutability":"mutable","name":"valueAfter","nameLocation":"3472:10:32","nodeType":"VariableDeclaration","scope":8542,"src":"3465:17:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8530,"name":"uint32","nodeType":"ElementaryTypeName","src":"3465:6:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":8533,"mutability":"mutable","name":"effect","nameLocation":"3491:6:32","nodeType":"VariableDeclaration","scope":8542,"src":"3484:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":8532,"name":"uint48","nodeType":"ElementaryTypeName","src":"3484:6:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"3444:54:32"},"scope":8706,"src":"3393:159:32","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":8559,"nodeType":"Block","src":"3665:74:32","statements":[{"assignments":[8552,null,null],"declarations":[{"constant":false,"id":8552,"mutability":"mutable","name":"delay","nameLocation":"3683:5:32","nodeType":"VariableDeclaration","scope":8559,"src":"3676:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8551,"name":"uint32","nodeType":"ElementaryTypeName","src":"3676:6:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},null,null],"id":8556,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8553,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8546,"src":"3696:4:32","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"id":8554,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3701:7:32","memberName":"getFull","nodeType":"MemberAccess","referencedDeclaration":8542,"src":"3696:12:32","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$8469_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$8469_$","typeString":"function (Time.Delay) view returns (uint32,uint32,uint48)"}},"id":8555,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3696:14:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"VariableDeclarationStatement","src":"3675:35:32"},{"expression":{"id":8557,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8552,"src":"3727:5:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":8550,"id":8558,"nodeType":"Return","src":"3720:12:32"}]},"documentation":{"id":8543,"nodeType":"StructuredDocumentation","src":"3558:46:32","text":" @dev Get the current value."},"id":8560,"implemented":true,"kind":"function","modifiers":[],"name":"get","nameLocation":"3618:3:32","nodeType":"FunctionDefinition","parameters":{"id":8547,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8546,"mutability":"mutable","name":"self","nameLocation":"3628:4:32","nodeType":"VariableDeclaration","scope":8560,"src":"3622:10:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"},"typeName":{"id":8545,"nodeType":"UserDefinedTypeName","pathNode":{"id":8544,"name":"Delay","nameLocations":["3622:5:32"],"nodeType":"IdentifierPath","referencedDeclaration":8469,"src":"3622:5:32"},"referencedDeclaration":8469,"src":"3622:5:32","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"3621:12:32"},"returnParameters":{"id":8550,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8549,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8560,"src":"3657:6:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8548,"name":"uint32","nodeType":"ElementaryTypeName","src":"3657:6:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"3656:8:32"},"scope":8706,"src":"3609:130:32","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":8615,"nodeType":"Block","src":"4189:234:32","statements":[{"assignments":[8577],"declarations":[{"constant":false,"id":8577,"mutability":"mutable","name":"value","nameLocation":"4206:5:32","nodeType":"VariableDeclaration","scope":8615,"src":"4199:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8576,"name":"uint32","nodeType":"ElementaryTypeName","src":"4199:6:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":8581,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8578,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8564,"src":"4214:4:32","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"id":8579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4219:3:32","memberName":"get","nodeType":"MemberAccess","referencedDeclaration":8560,"src":"4214:8:32","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$8469_$returns$_t_uint32_$attached_to$_t_userDefinedValueType$_Delay_$8469_$","typeString":"function (Time.Delay) view returns (uint32)"}},"id":8580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4214:10:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"4199:25:32"},{"assignments":[8583],"declarations":[{"constant":false,"id":8583,"mutability":"mutable","name":"setback","nameLocation":"4241:7:32","nodeType":"VariableDeclaration","scope":8615,"src":"4234:14:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8582,"name":"uint32","nodeType":"ElementaryTypeName","src":"4234:6:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":8599,"initialValue":{"arguments":[{"arguments":[{"id":8588,"name":"minSetback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8568,"src":"4267:10:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":8591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8589,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8577,"src":"4279:5:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":8590,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8566,"src":"4287:8:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4279:16:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":8595,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4317:1:32","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":8596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4279:39:32","trueExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":8594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8592,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8577,"src":"4298:5:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":8593,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8566,"src":"4306:8:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4298:16:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":8586,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6523,"src":"4258:4:32","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$6523_$","typeString":"type(library Math)"}},"id":8587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4263:3:32","memberName":"max","nodeType":"MemberAccess","referencedDeclaration":5133,"src":"4258:8:32","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":8597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4258:61:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8585,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4251:6:32","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":8584,"name":"uint32","nodeType":"ElementaryTypeName","src":"4251:6:32","typeDescriptions":{}}},"id":8598,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4251:69:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"4234:86:32"},{"expression":{"id":8605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8600,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8574,"src":"4330:6:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":8604,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":8601,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8454,"src":"4339:9:32","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":8602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4339:11:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":8603,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8583,"src":"4353:7:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4339:21:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"4330:30:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":8606,"nodeType":"ExpressionStatement","src":"4330:30:32"},{"expression":{"components":[{"arguments":[{"id":8608,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8577,"src":"4383:5:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":8609,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8566,"src":"4390:8:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":8610,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8574,"src":"4400:6:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":8607,"name":"pack","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8705,"src":"4378:4:32","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint48_$returns$_t_userDefinedValueType$_Delay_$8469_$","typeString":"function (uint32,uint32,uint48) pure returns (Time.Delay)"}},"id":8611,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4378:29:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},{"id":8612,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8574,"src":"4409:6:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":8613,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4377:39:32","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$8469_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"functionReturnParameters":8575,"id":8614,"nodeType":"Return","src":"4370:46:32"}]},"documentation":{"id":8561,"nodeType":"StructuredDocumentation","src":"3745:283:32","text":" @dev Update a Delay object so that it takes a new duration after a timepoint that is automatically computed to\n enforce the old delay at the moment of the update. Returns the updated Delay object and the timestamp when the\n new delay becomes effective."},"id":8616,"implemented":true,"kind":"function","modifiers":[],"name":"withUpdate","nameLocation":"4042:10:32","nodeType":"FunctionDefinition","parameters":{"id":8569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8564,"mutability":"mutable","name":"self","nameLocation":"4068:4:32","nodeType":"VariableDeclaration","scope":8616,"src":"4062:10:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"},"typeName":{"id":8563,"nodeType":"UserDefinedTypeName","pathNode":{"id":8562,"name":"Delay","nameLocations":["4062:5:32"],"nodeType":"IdentifierPath","referencedDeclaration":8469,"src":"4062:5:32"},"referencedDeclaration":8469,"src":"4062:5:32","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":8566,"mutability":"mutable","name":"newValue","nameLocation":"4089:8:32","nodeType":"VariableDeclaration","scope":8616,"src":"4082:15:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8565,"name":"uint32","nodeType":"ElementaryTypeName","src":"4082:6:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":8568,"mutability":"mutable","name":"minSetback","nameLocation":"4114:10:32","nodeType":"VariableDeclaration","scope":8616,"src":"4107:17:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8567,"name":"uint32","nodeType":"ElementaryTypeName","src":"4107:6:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"4052:78:32"},"returnParameters":{"id":8575,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8572,"mutability":"mutable","name":"updatedDelay","nameLocation":"4160:12:32","nodeType":"VariableDeclaration","scope":8616,"src":"4154:18:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"},"typeName":{"id":8571,"nodeType":"UserDefinedTypeName","pathNode":{"id":8570,"name":"Delay","nameLocations":["4154:5:32"],"nodeType":"IdentifierPath","referencedDeclaration":8469,"src":"4154:5:32"},"referencedDeclaration":8469,"src":"4154:5:32","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":8574,"mutability":"mutable","name":"effect","nameLocation":"4181:6:32","nodeType":"VariableDeclaration","scope":8616,"src":"4174:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":8573,"name":"uint48","nodeType":"ElementaryTypeName","src":"4174:6:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4153:35:32"},"scope":8706,"src":"4033:390:32","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":8666,"nodeType":"Block","src":"4656:212:32","statements":[{"assignments":[8630],"declarations":[{"constant":false,"id":8630,"mutability":"mutable","name":"raw","nameLocation":"4674:3:32","nodeType":"VariableDeclaration","scope":8666,"src":"4666:11:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":8629,"name":"uint112","nodeType":"ElementaryTypeName","src":"4666:7:32","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"}],"id":8635,"initialValue":{"arguments":[{"id":8633,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8620,"src":"4693:4:32","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}],"expression":{"id":8631,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8469,"src":"4680:5:32","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$8469_$","typeString":"type(Time.Delay)"}},"id":8632,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4686:6:32","memberName":"unwrap","nodeType":"MemberAccess","src":"4680:12:32","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Delay_$8469_$returns$_t_uint112_$","typeString":"function (Time.Delay) pure returns (uint112)"}},"id":8634,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4680:18:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"VariableDeclarationStatement","src":"4666:32:32"},{"expression":{"id":8641,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8636,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8625,"src":"4709:10:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8639,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8630,"src":"4729:3:32","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":8638,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4722:6:32","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":8637,"name":"uint32","nodeType":"ElementaryTypeName","src":"4722:6:32","typeDescriptions":{}}},"id":8640,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4722:11:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4709:24:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":8642,"nodeType":"ExpressionStatement","src":"4709:24:32"},{"expression":{"id":8650,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8643,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8623,"src":"4743:11:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":8648,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8646,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8630,"src":"4764:3:32","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":8647,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4771:2:32","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"4764:9:32","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":8645,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4757:6:32","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":8644,"name":"uint32","nodeType":"ElementaryTypeName","src":"4757:6:32","typeDescriptions":{}}},"id":8649,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4757:17:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4743:31:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":8651,"nodeType":"ExpressionStatement","src":"4743:31:32"},{"expression":{"id":8659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8652,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8627,"src":"4784:6:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":8657,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8655,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8630,"src":"4800:3:32","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":8656,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4807:2:32","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"4800:9:32","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":8654,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4793:6:32","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":8653,"name":"uint48","nodeType":"ElementaryTypeName","src":"4793:6:32","typeDescriptions":{}}},"id":8658,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4793:17:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"4784:26:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":8660,"nodeType":"ExpressionStatement","src":"4784:26:32"},{"expression":{"components":[{"id":8661,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8623,"src":"4829:11:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":8662,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8625,"src":"4842:10:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":8663,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8627,"src":"4854:6:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":8664,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4828:33:32","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":8628,"id":8665,"nodeType":"Return","src":"4821:40:32"}]},"documentation":{"id":8617,"nodeType":"StructuredDocumentation","src":"4429:117:32","text":" @dev Split a delay into its components: valueBefore, valueAfter and effect (transition timepoint)."},"id":8667,"implemented":true,"kind":"function","modifiers":[],"name":"unpack","nameLocation":"4560:6:32","nodeType":"FunctionDefinition","parameters":{"id":8621,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8620,"mutability":"mutable","name":"self","nameLocation":"4573:4:32","nodeType":"VariableDeclaration","scope":8667,"src":"4567:10:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"},"typeName":{"id":8619,"nodeType":"UserDefinedTypeName","pathNode":{"id":8618,"name":"Delay","nameLocations":["4567:5:32"],"nodeType":"IdentifierPath","referencedDeclaration":8469,"src":"4567:5:32"},"referencedDeclaration":8469,"src":"4567:5:32","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"4566:12:32"},"returnParameters":{"id":8628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8623,"mutability":"mutable","name":"valueBefore","nameLocation":"4609:11:32","nodeType":"VariableDeclaration","scope":8667,"src":"4602:18:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8622,"name":"uint32","nodeType":"ElementaryTypeName","src":"4602:6:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":8625,"mutability":"mutable","name":"valueAfter","nameLocation":"4629:10:32","nodeType":"VariableDeclaration","scope":8667,"src":"4622:17:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8624,"name":"uint32","nodeType":"ElementaryTypeName","src":"4622:6:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":8627,"mutability":"mutable","name":"effect","nameLocation":"4648:6:32","nodeType":"VariableDeclaration","scope":8667,"src":"4641:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":8626,"name":"uint48","nodeType":"ElementaryTypeName","src":"4641:6:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4601:54:32"},"scope":8706,"src":"4551:317:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8704,"nodeType":"Block","src":"5041:112:32","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":8701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":8696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":8687,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8684,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8674,"src":"5078:6:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":8683,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5070:7:32","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":8682,"name":"uint112","nodeType":"ElementaryTypeName","src":"5070:7:32","typeDescriptions":{}}},"id":8685,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5070:15:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":8686,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5089:2:32","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"5070:21:32","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"id":8688,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5069:23:32","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":8694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8691,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8670,"src":"5104:11:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":8690,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5096:7:32","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":8689,"name":"uint112","nodeType":"ElementaryTypeName","src":"5096:7:32","typeDescriptions":{}}},"id":8692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5096:20:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":8693,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5120:2:32","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"5096:26:32","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"id":8695,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5095:28:32","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"5069:54:32","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"id":8699,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8672,"src":"5134:10:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":8698,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5126:7:32","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":8697,"name":"uint112","nodeType":"ElementaryTypeName","src":"5126:7:32","typeDescriptions":{}}},"id":8700,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5126:19:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"5069:76:32","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"expression":{"id":8680,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8469,"src":"5058:5:32","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$8469_$","typeString":"type(Time.Delay)"}},"id":8681,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5064:4:32","memberName":"wrap","nodeType":"MemberAccess","src":"5058:10:32","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint112_$returns$_t_userDefinedValueType$_Delay_$8469_$","typeString":"function (uint112) pure returns (Time.Delay)"}},"id":8702,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5058:88:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"functionReturnParameters":8679,"id":8703,"nodeType":"Return","src":"5051:95:32"}]},"documentation":{"id":8668,"nodeType":"StructuredDocumentation","src":"4874:64:32","text":" @dev pack the components into a Delay object."},"id":8705,"implemented":true,"kind":"function","modifiers":[],"name":"pack","nameLocation":"4952:4:32","nodeType":"FunctionDefinition","parameters":{"id":8675,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8670,"mutability":"mutable","name":"valueBefore","nameLocation":"4964:11:32","nodeType":"VariableDeclaration","scope":8705,"src":"4957:18:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8669,"name":"uint32","nodeType":"ElementaryTypeName","src":"4957:6:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":8672,"mutability":"mutable","name":"valueAfter","nameLocation":"4984:10:32","nodeType":"VariableDeclaration","scope":8705,"src":"4977:17:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8671,"name":"uint32","nodeType":"ElementaryTypeName","src":"4977:6:32","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":8674,"mutability":"mutable","name":"effect","nameLocation":"5003:6:32","nodeType":"VariableDeclaration","scope":8705,"src":"4996:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":8673,"name":"uint48","nodeType":"ElementaryTypeName","src":"4996:6:32","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4956:54:32"},"returnParameters":{"id":8679,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8678,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8705,"src":"5034:5:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"},"typeName":{"id":8677,"nodeType":"UserDefinedTypeName","pathNode":{"id":8676,"name":"Delay","nameLocations":["5034:5:32"],"nodeType":"IdentifierPath","referencedDeclaration":8469,"src":"5034:5:32"},"referencedDeclaration":8469,"src":"5034:5:32","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"5033:7:32"},"scope":8706,"src":"4943:210:32","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":8707,"src":"640:4515:32","usedErrors":[],"usedEvents":[]}],"src":"104:5052:32"},"id":32},"contracts/AccessControlAccount.sol":{"ast":{"absolutePath":"contracts/AccessControlAccount.sol","exportedSymbols":{"AccessControl":[1350],"AccessControlAccount":[9039],"Address":[3068],"BaseAccount":[138],"ECDSA":[4807],"IEntryPoint":[909],"MessageHashUtils":[4881],"PackedUserOperation":[1054],"SIG_VALIDATION_FAILED":[143],"SIG_VALIDATION_SUCCESS":[146]},"id":9040,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":8708,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"39:24:33"},{"absolutePath":"@openzeppelin/contracts/access/AccessControl.sol","file":"@openzeppelin/contracts/access/AccessControl.sol","id":8710,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9040,"sourceUnit":1351,"src":"65:79:33","symbolAliases":[{"foreign":{"id":8709,"name":"AccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1350,"src":"73:13:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"@openzeppelin/contracts/utils/Address.sol","id":8712,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9040,"sourceUnit":3069,"src":"145:66:33","symbolAliases":[{"foreign":{"id":8711,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3068,"src":"153:7:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","file":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","id":8714,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9040,"sourceUnit":4882,"src":"212:97:33","symbolAliases":[{"foreign":{"id":8713,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4881,"src":"220:16:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/BaseAccount.sol","file":"@account-abstraction/contracts/core/BaseAccount.sol","id":8716,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9040,"sourceUnit":139,"src":"310:80:33","symbolAliases":[{"foreign":{"id":8715,"name":"BaseAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":138,"src":"318:11:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/Helpers.sol","file":"@account-abstraction/contracts/core/Helpers.sol","id":8719,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9040,"sourceUnit":318,"src":"391:110:33","symbolAliases":[{"foreign":{"id":8717,"name":"SIG_VALIDATION_SUCCESS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":146,"src":"399:22:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":8718,"name":"SIG_VALIDATION_FAILED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":143,"src":"423:21:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IEntryPoint.sol","file":"@account-abstraction/contracts/interfaces/IEntryPoint.sol","id":8721,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9040,"sourceUnit":910,"src":"502:86:33","symbolAliases":[{"foreign":{"id":8720,"name":"IEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":909,"src":"510:11:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","id":8723,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9040,"sourceUnit":1055,"src":"589:102:33","symbolAliases":[{"foreign":{"id":8722,"name":"PackedUserOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1054,"src":"597:19:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","id":8725,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9040,"sourceUnit":4808,"src":"692:75:33","symbolAliases":[{"foreign":{"id":8724,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4807,"src":"700:5:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":8726,"name":"AccessControl","nameLocations":["802:13:33"],"nodeType":"IdentifierPath","referencedDeclaration":1350,"src":"802:13:33"},"id":8727,"nodeType":"InheritanceSpecifier","src":"802:13:33"},{"baseName":{"id":8728,"name":"BaseAccount","nameLocations":["817:11:33"],"nodeType":"IdentifierPath","referencedDeclaration":138,"src":"817:11:33"},"id":8729,"nodeType":"InheritanceSpecifier","src":"817:11:33"}],"canonicalName":"AccessControlAccount","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":9039,"linearizedBaseContracts":[9039,138,691,1350,4905,4917,1433,3098],"name":"AccessControlAccount","nameLocation":"778:20:33","nodeType":"ContractDefinition","nodes":[{"constant":true,"functionSelector":"e02023a1","id":8734,"mutability":"constant","name":"WITHDRAW_ROLE","nameLocation":"857:13:33","nodeType":"VariableDeclaration","scope":9039,"src":"833:66:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8730,"name":"bytes32","nodeType":"ElementaryTypeName","src":"833:7:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"57495448445241575f524f4c45","id":8732,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"883:15:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec","typeString":"literal_string \"WITHDRAW_ROLE\""},"value":"WITHDRAW_ROLE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec","typeString":"literal_string \"WITHDRAW_ROLE\""}],"id":8731,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"873:9:33","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8733,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"873:26:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"functionSelector":"07bd0265","id":8739,"mutability":"constant","name":"EXECUTOR_ROLE","nameLocation":"927:13:33","nodeType":"VariableDeclaration","scope":9039,"src":"903:66:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8735,"name":"bytes32","nodeType":"ElementaryTypeName","src":"903:7:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"4558454355544f525f524f4c45","id":8737,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"953:15:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_d8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63","typeString":"literal_string \"EXECUTOR_ROLE\""},"value":"EXECUTOR_ROLE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63","typeString":"literal_string \"EXECUTOR_ROLE\""}],"id":8736,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"943:9:33","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8738,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"943:26:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":false,"id":8742,"mutability":"immutable","name":"_entryPoint","nameLocation":"1004:11:33","nodeType":"VariableDeclaration","scope":9039,"src":"974:41:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"},"typeName":{"id":8741,"nodeType":"UserDefinedTypeName","pathNode":{"id":8740,"name":"IEntryPoint","nameLocations":["974:11:33"],"nodeType":"IdentifierPath","referencedDeclaration":909,"src":"974:11:33"},"referencedDeclaration":909,"src":"974:11:33","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"visibility":"private"},{"errorSelector":"f1a1fdac","id":8746,"name":"RequiredEntryPointOrExecutor","nameLocation":"1026:28:33","nodeType":"ErrorDefinition","parameters":{"id":8745,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8744,"mutability":"mutable","name":"sender","nameLocation":"1063:6:33","nodeType":"VariableDeclaration","scope":8746,"src":"1055:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8743,"name":"address","nodeType":"ElementaryTypeName","src":"1055:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1054:16:33"},"src":"1020:51:33"},{"errorSelector":"2a00e5c6","id":8748,"name":"WrongArrayLength","nameLocation":"1080:16:33","nodeType":"ErrorDefinition","parameters":{"id":8747,"nodeType":"ParameterList","parameters":[],"src":"1096:2:33"},"src":"1074:25:33"},{"baseFunctions":[35],"body":{"id":8758,"nodeType":"Block","src":"1206:29:33","statements":[{"expression":{"id":8756,"name":"_entryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8742,"src":"1219:11:33","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"functionReturnParameters":8755,"id":8757,"nodeType":"Return","src":"1212:18:33"}]},"documentation":{"id":8749,"nodeType":"StructuredDocumentation","src":"1103:27:33","text":"@inheritdoc BaseAccount"},"functionSelector":"b0d691fe","id":8759,"implemented":true,"kind":"function","modifiers":[],"name":"entryPoint","nameLocation":"1142:10:33","nodeType":"FunctionDefinition","overrides":{"id":8751,"nodeType":"OverrideSpecifier","overrides":[],"src":"1175:8:33"},"parameters":{"id":8750,"nodeType":"ParameterList","parameters":[],"src":"1152:2:33"},"returnParameters":{"id":8755,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8754,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8759,"src":"1193:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"},"typeName":{"id":8753,"nodeType":"UserDefinedTypeName","pathNode":{"id":8752,"name":"IEntryPoint","nameLocations":["1193:11:33"],"nodeType":"IdentifierPath","referencedDeclaration":909,"src":"1193:11:33"},"referencedDeclaration":909,"src":"1193:11:33","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"visibility":"internal"}],"src":"1192:13:33"},"scope":9039,"src":"1133:102:33","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":8762,"nodeType":"Block","src":"1313:2:33","statements":[]},"id":8763,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":8760,"nodeType":"ParameterList","parameters":[],"src":"1293:2:33"},"returnParameters":{"id":8761,"nodeType":"ParameterList","parameters":[],"src":"1313:0:33"},"scope":9039,"src":"1286:29:33","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":8802,"nodeType":"Block","src":"1400:182:33","statements":[{"expression":{"id":8776,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8774,"name":"_entryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8742,"src":"1406:11:33","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8775,"name":"anEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8766,"src":"1420:12:33","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"src":"1406:26:33","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"id":8777,"nodeType":"ExpressionStatement","src":"1406:26:33"},{"expression":{"arguments":[{"id":8779,"name":"DEFAULT_ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1084,"src":"1449:18:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8780,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8768,"src":"1469:5:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":8778,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1311,"src":"1438:10:33","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":8781,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1438:37:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8782,"nodeType":"ExpressionStatement","src":"1438:37:33"},{"body":{"id":8800,"nodeType":"Block","src":"1524:54:33","statements":[{"expression":{"arguments":[{"id":8794,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8739,"src":"1543:13:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":8795,"name":"executors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8771,"src":"1558:9:33","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":8797,"indexExpression":{"id":8796,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8784,"src":"1568:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1558:12:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":8793,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1311,"src":"1532:10:33","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":8798,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1532:39:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8799,"nodeType":"ExpressionStatement","src":"1532:39:33"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8786,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8784,"src":"1497:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":8787,"name":"executors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8771,"src":"1501:9:33","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":8788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1511:6:33","memberName":"length","nodeType":"MemberAccess","src":"1501:16:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1497:20:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8801,"initializationExpression":{"assignments":[8784],"declarations":[{"constant":false,"id":8784,"mutability":"mutable","name":"i","nameLocation":"1494:1:33","nodeType":"VariableDeclaration","scope":8801,"src":"1486:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8783,"name":"uint256","nodeType":"ElementaryTypeName","src":"1486:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8785,"nodeType":"VariableDeclarationStatement","src":"1486:9:33"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":8791,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1519:3:33","subExpression":{"id":8790,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8784,"src":"1519:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8792,"nodeType":"ExpressionStatement","src":"1519:3:33"},"nodeType":"ForStatement","src":"1481:97:33"}]},"id":8803,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":8772,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8766,"mutability":"mutable","name":"anEntryPoint","nameLocation":"1343:12:33","nodeType":"VariableDeclaration","scope":8803,"src":"1331:24:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"},"typeName":{"id":8765,"nodeType":"UserDefinedTypeName","pathNode":{"id":8764,"name":"IEntryPoint","nameLocations":["1331:11:33"],"nodeType":"IdentifierPath","referencedDeclaration":909,"src":"1331:11:33"},"referencedDeclaration":909,"src":"1331:11:33","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"visibility":"internal"},{"constant":false,"id":8768,"mutability":"mutable","name":"admin","nameLocation":"1365:5:33","nodeType":"VariableDeclaration","scope":8803,"src":"1357:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8767,"name":"address","nodeType":"ElementaryTypeName","src":"1357:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8771,"mutability":"mutable","name":"executors","nameLocation":"1389:9:33","nodeType":"VariableDeclaration","scope":8803,"src":"1372:26:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":8769,"name":"address","nodeType":"ElementaryTypeName","src":"1372:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":8770,"nodeType":"ArrayTypeName","src":"1372:9:33","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"}],"src":"1330:69:33"},"returnParameters":{"id":8773,"nodeType":"ParameterList","parameters":[],"src":"1400:0:33"},"scope":9039,"src":"1319:263:33","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":8827,"nodeType":"Block","src":"1708:144:33","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8806,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1718:3:33","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":8807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1722:6:33","memberName":"sender","nodeType":"MemberAccess","src":"1718:10:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":8810,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[8759],"referencedDeclaration":8759,"src":"1740:10:33","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$909_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":8811,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1740:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}],"id":8809,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1732:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8808,"name":"address","nodeType":"ElementaryTypeName","src":"1732:7:33","typeDescriptions":{}}},"id":8812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1732:21:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1718:35:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":8819,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1757:35:33","subExpression":{"arguments":[{"id":8815,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8739,"src":"1766:13:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":8816,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1781:3:33","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":8817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1785:6:33","memberName":"sender","nodeType":"MemberAccess","src":"1781:10:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":8814,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1135,"src":"1758:7:33","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":8818,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1758:34:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1718:74:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8826,"nodeType":"IfStatement","src":"1714:133:33","trueBody":{"errorCall":{"arguments":[{"expression":{"id":8822,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1836:3:33","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":8823,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1840:6:33","memberName":"sender","nodeType":"MemberAccess","src":"1836:10:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8821,"name":"RequiredEntryPointOrExecutor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8746,"src":"1807:28:33","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":8824,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1807:40:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8825,"nodeType":"RevertStatement","src":"1800:47:33"}}]},"id":8828,"implemented":true,"kind":"function","modifiers":[],"name":"_requireFromEntryPointOrExecutor","nameLocation":"1659:32:33","nodeType":"FunctionDefinition","parameters":{"id":8804,"nodeType":"ParameterList","parameters":[],"src":"1691:2:33"},"returnParameters":{"id":8805,"nodeType":"ParameterList","parameters":[],"src":"1708:0:33"},"scope":9039,"src":"1650:202:33","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":8849,"nodeType":"Block","src":"2163:99:33","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8838,"name":"_requireFromEntryPointOrExecutor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8828,"src":"2169:32:33","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":8839,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2169:34:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8840,"nodeType":"ExpressionStatement","src":"2169:34:33"},{"expression":{"arguments":[{"id":8844,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8831,"src":"2239:4:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8845,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8835,"src":"2245:4:33","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":8846,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8833,"src":"2251:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":8841,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3068,"src":"2209:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$3068_$","typeString":"type(library Address)"}},"id":8843,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2217:21:33","memberName":"functionCallWithValue","nodeType":"MemberAccess","referencedDeclaration":2933,"src":"2209:29:33","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256) returns (bytes memory)"}},"id":8847,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2209:48:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8848,"nodeType":"ExpressionStatement","src":"2209:48:33"}]},"documentation":{"id":8829,"nodeType":"StructuredDocumentation","src":"1856:228:33","text":" execute a transaction (called directly from owner, or by entryPoint)\n @param dest destination address to call\n @param value the value to pass in this call\n @param func the calldata to pass in this call"},"functionSelector":"b61d27f6","id":8850,"implemented":true,"kind":"function","modifiers":[],"name":"execute","nameLocation":"2096:7:33","nodeType":"FunctionDefinition","parameters":{"id":8836,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8831,"mutability":"mutable","name":"dest","nameLocation":"2112:4:33","nodeType":"VariableDeclaration","scope":8850,"src":"2104:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8830,"name":"address","nodeType":"ElementaryTypeName","src":"2104:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8833,"mutability":"mutable","name":"value","nameLocation":"2126:5:33","nodeType":"VariableDeclaration","scope":8850,"src":"2118:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8832,"name":"uint256","nodeType":"ElementaryTypeName","src":"2118:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8835,"mutability":"mutable","name":"func","nameLocation":"2148:4:33","nodeType":"VariableDeclaration","scope":8850,"src":"2133:19:33","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":8834,"name":"bytes","nodeType":"ElementaryTypeName","src":"2133:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2103:50:33"},"returnParameters":{"id":8837,"nodeType":"ParameterList","parameters":[],"src":"2163:0:33"},"scope":9039,"src":"2087:175:33","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":8946,"nodeType":"Block","src":"2738:453:33","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8863,"name":"_requireFromEntryPointOrExecutor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8828,"src":"2744:32:33","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":8864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2744:34:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8865,"nodeType":"ExpressionStatement","src":"2744:34:33"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8866,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8854,"src":"2788:4:33","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":8867,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2793:6:33","memberName":"length","nodeType":"MemberAccess","src":"2788:11:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":8868,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8860,"src":"2803:4:33","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":8869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2808:6:33","memberName":"length","nodeType":"MemberAccess","src":"2803:11:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2788:26:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8880,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8871,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8857,"src":"2819:5:33","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":8872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2825:6:33","memberName":"length","nodeType":"MemberAccess","src":"2819:12:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":8873,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2835:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2819:17:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8875,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8857,"src":"2840:5:33","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":8876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2846:6:33","memberName":"length","nodeType":"MemberAccess","src":"2840:12:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":8877,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8860,"src":"2856:4:33","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":8878,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2861:6:33","memberName":"length","nodeType":"MemberAccess","src":"2856:11:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2840:27:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2819:48:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":8881,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2818:50:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2788:80:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8886,"nodeType":"IfStatement","src":"2784:111:33","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8883,"name":"WrongArrayLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8748,"src":"2877:16:33","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":8884,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2877:18:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8885,"nodeType":"RevertStatement","src":"2870:25:33"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8887,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8857,"src":"2905:5:33","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":8888,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2911:6:33","memberName":"length","nodeType":"MemberAccess","src":"2905:12:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":8889,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2921:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2905:17:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":8944,"nodeType":"Block","src":"3055:132:33","statements":[{"body":{"id":8942,"nodeType":"Block","src":"3105:76:33","statements":[{"expression":{"arguments":[{"baseExpression":{"id":8931,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8854,"src":"3145:4:33","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":8933,"indexExpression":{"id":8932,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8918,"src":"3150:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3145:7:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":8934,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8860,"src":"3154:4:33","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":8936,"indexExpression":{"id":8935,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8918,"src":"3159:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3154:7:33","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"baseExpression":{"id":8937,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8857,"src":"3163:5:33","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":8939,"indexExpression":{"id":8938,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8918,"src":"3169:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3163:8:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":8928,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3068,"src":"3115:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$3068_$","typeString":"type(library Address)"}},"id":8930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3123:21:33","memberName":"functionCallWithValue","nodeType":"MemberAccess","referencedDeclaration":2933,"src":"3115:29:33","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256) returns (bytes memory)"}},"id":8940,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3115:57:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8941,"nodeType":"ExpressionStatement","src":"3115:57:33"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8921,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8918,"src":"3083:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":8922,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8854,"src":"3087:4:33","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":8923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3092:6:33","memberName":"length","nodeType":"MemberAccess","src":"3087:11:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3083:15:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8943,"initializationExpression":{"assignments":[8918],"declarations":[{"constant":false,"id":8918,"mutability":"mutable","name":"i","nameLocation":"3076:1:33","nodeType":"VariableDeclaration","scope":8943,"src":"3068:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8917,"name":"uint256","nodeType":"ElementaryTypeName","src":"3068:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8920,"initialValue":{"hexValue":"30","id":8919,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3080:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"3068:13:33"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":8926,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"3100:3:33","subExpression":{"id":8925,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8918,"src":"3100:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8927,"nodeType":"ExpressionStatement","src":"3100:3:33"},"nodeType":"ForStatement","src":"3063:118:33"}]},"id":8945,"nodeType":"IfStatement","src":"2901:286:33","trueBody":{"id":8916,"nodeType":"Block","src":"2924:125:33","statements":[{"body":{"id":8914,"nodeType":"Block","src":"2974:69:33","statements":[{"expression":{"arguments":[{"baseExpression":{"id":8905,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8854,"src":"3014:4:33","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":8907,"indexExpression":{"id":8906,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8892,"src":"3019:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3014:7:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":8908,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8860,"src":"3023:4:33","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":8910,"indexExpression":{"id":8909,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8892,"src":"3028:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3023:7:33","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"hexValue":"30","id":8911,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3032:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"expression":{"id":8902,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3068,"src":"2984:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$3068_$","typeString":"type(library Address)"}},"id":8904,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2992:21:33","memberName":"functionCallWithValue","nodeType":"MemberAccess","referencedDeclaration":2933,"src":"2984:29:33","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256) returns (bytes memory)"}},"id":8912,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2984:50:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8913,"nodeType":"ExpressionStatement","src":"2984:50:33"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8898,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8895,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8892,"src":"2952:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":8896,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8854,"src":"2956:4:33","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":8897,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2961:6:33","memberName":"length","nodeType":"MemberAccess","src":"2956:11:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2952:15:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8915,"initializationExpression":{"assignments":[8892],"declarations":[{"constant":false,"id":8892,"mutability":"mutable","name":"i","nameLocation":"2945:1:33","nodeType":"VariableDeclaration","scope":8915,"src":"2937:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8891,"name":"uint256","nodeType":"ElementaryTypeName","src":"2937:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8894,"initialValue":{"hexValue":"30","id":8893,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2949:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"2937:13:33"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":8900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"2969:3:33","subExpression":{"id":8899,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8892,"src":"2969:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8901,"nodeType":"ExpressionStatement","src":"2969:3:33"},"nodeType":"ForStatement","src":"2932:111:33"}]}}]},"documentation":{"id":8851,"nodeType":"StructuredDocumentation","src":"2266:364:33","text":" execute a sequence of transactions\n @dev to reduce gas consumption for trivial case (no value), use a zero-length array to mean zero value\n @param dest an array of destination addresses\n @param value an array of values to pass to each call. can be zero-length for no-value calls\n @param func an array of calldata to pass to each call"},"functionSelector":"47e1da2a","id":8947,"implemented":true,"kind":"function","modifiers":[],"name":"executeBatch","nameLocation":"2642:12:33","nodeType":"FunctionDefinition","parameters":{"id":8861,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8854,"mutability":"mutable","name":"dest","nameLocation":"2674:4:33","nodeType":"VariableDeclaration","scope":8947,"src":"2655:23:33","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":8852,"name":"address","nodeType":"ElementaryTypeName","src":"2655:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":8853,"nodeType":"ArrayTypeName","src":"2655:9:33","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":8857,"mutability":"mutable","name":"value","nameLocation":"2699:5:33","nodeType":"VariableDeclaration","scope":8947,"src":"2680:24:33","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":8855,"name":"uint256","nodeType":"ElementaryTypeName","src":"2680:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8856,"nodeType":"ArrayTypeName","src":"2680:9:33","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":8860,"mutability":"mutable","name":"func","nameLocation":"2723:4:33","nodeType":"VariableDeclaration","scope":8947,"src":"2706:21:33","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":8858,"name":"bytes","nodeType":"ElementaryTypeName","src":"2706:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":8859,"nodeType":"ArrayTypeName","src":"2706:7:33","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"2654:74:33"},"returnParameters":{"id":8862,"nodeType":"ParameterList","parameters":[],"src":"2738:0:33"},"scope":9039,"src":"2633:558:33","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[97],"body":{"id":8985,"nodeType":"Block","src":"3398:249:33","statements":[{"assignments":[8960],"declarations":[{"constant":false,"id":8960,"mutability":"mutable","name":"hash","nameLocation":"3412:4:33","nodeType":"VariableDeclaration","scope":8985,"src":"3404:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8959,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3404:7:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8965,"initialValue":{"arguments":[{"id":8963,"name":"userOpHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8953,"src":"3459:10:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":8961,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4881,"src":"3419:16:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_MessageHashUtils_$4881_$","typeString":"type(library MessageHashUtils)"}},"id":8962,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3436:22:33","memberName":"toEthSignedMessageHash","nodeType":"MemberAccess","referencedDeclaration":4822,"src":"3419:39:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) pure returns (bytes32)"}},"id":8964,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3419:51:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"3404:66:33"},{"assignments":[8967],"declarations":[{"constant":false,"id":8967,"mutability":"mutable","name":"recovered","nameLocation":"3484:9:33","nodeType":"VariableDeclaration","scope":8985,"src":"3476:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8966,"name":"address","nodeType":"ElementaryTypeName","src":"3476:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":8974,"initialValue":{"arguments":[{"id":8970,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8960,"src":"3510:4:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":8971,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8951,"src":"3516:6:33","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":8972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3523:9:33","memberName":"signature","nodeType":"MemberAccess","referencedDeclaration":1053,"src":"3516:16:33","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":8968,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4807,"src":"3496:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$4807_$","typeString":"type(library ECDSA)"}},"id":8969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3502:7:33","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":4563,"src":"3496:13:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes32,bytes memory) pure returns (address)"}},"id":8973,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3496:37:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3476:57:33"},{"condition":{"id":8979,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3543:34:33","subExpression":{"arguments":[{"id":8976,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8739,"src":"3552:13:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8977,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8967,"src":"3567:9:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":8975,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1135,"src":"3544:7:33","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":8978,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3544:33:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8982,"nodeType":"IfStatement","src":"3539:68:33","trueBody":{"expression":{"id":8980,"name":"SIG_VALIDATION_FAILED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":143,"src":"3586:21:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8958,"id":8981,"nodeType":"Return","src":"3579:28:33"}},{"expression":{"id":8983,"name":"SIG_VALIDATION_SUCCESS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":146,"src":"3620:22:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8958,"id":8984,"nodeType":"Return","src":"3613:29:33"}]},"documentation":{"id":8948,"nodeType":"StructuredDocumentation","src":"3195:44:33","text":"implement template method of BaseAccount"},"id":8986,"implemented":true,"kind":"function","modifiers":[],"name":"_validateSignature","nameLocation":"3251:18:33","nodeType":"FunctionDefinition","overrides":{"id":8955,"nodeType":"OverrideSpecifier","overrides":[],"src":"3356:8:33"},"parameters":{"id":8954,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8951,"mutability":"mutable","name":"userOp","nameLocation":"3304:6:33","nodeType":"VariableDeclaration","scope":8986,"src":"3275:35:33","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":8950,"nodeType":"UserDefinedTypeName","pathNode":{"id":8949,"name":"PackedUserOperation","nameLocations":["3275:19:33"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"3275:19:33"},"referencedDeclaration":1054,"src":"3275:19:33","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":8953,"mutability":"mutable","name":"userOpHash","nameLocation":"3324:10:33","nodeType":"VariableDeclaration","scope":8986,"src":"3316:18:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8952,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3316:7:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3269:69:33"},"returnParameters":{"id":8958,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8957,"mutability":"mutable","name":"validationData","nameLocation":"3382:14:33","nodeType":"VariableDeclaration","scope":8986,"src":"3374:22:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8956,"name":"uint256","nodeType":"ElementaryTypeName","src":"3374:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3373:24:33"},"scope":9039,"src":"3242:405:33","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":9001,"nodeType":"Block","src":"3768:55:33","statements":[{"expression":{"arguments":[{"arguments":[{"id":8997,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3812:4:33","typeDescriptions":{"typeIdentifier":"t_contract$_AccessControlAccount_$9039","typeString":"contract AccessControlAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessControlAccount_$9039","typeString":"contract AccessControlAccount"}],"id":8996,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3804:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8995,"name":"address","nodeType":"ElementaryTypeName","src":"3804:7:33","typeDescriptions":{}}},"id":8998,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3804:13:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8992,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[8759],"referencedDeclaration":8759,"src":"3781:10:33","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$909_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":8993,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3781:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"id":8994,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3794:9:33","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":1001,"src":"3781:22:33","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":8999,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3781:37:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8991,"id":9000,"nodeType":"Return","src":"3774:44:33"}]},"documentation":{"id":8987,"nodeType":"StructuredDocumentation","src":"3651:62:33","text":" check current account deposit in the entryPoint"},"functionSelector":"c399ec88","id":9002,"implemented":true,"kind":"function","modifiers":[],"name":"getDeposit","nameLocation":"3725:10:33","nodeType":"FunctionDefinition","parameters":{"id":8988,"nodeType":"ParameterList","parameters":[],"src":"3735:2:33"},"returnParameters":{"id":8991,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8990,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9002,"src":"3759:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8989,"name":"uint256","nodeType":"ElementaryTypeName","src":"3759:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3758:9:33"},"scope":9039,"src":"3716:107:33","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":9018,"nodeType":"Block","src":"3935:66:33","statements":[{"expression":{"arguments":[{"arguments":[{"id":9014,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3990:4:33","typeDescriptions":{"typeIdentifier":"t_contract$_AccessControlAccount_$9039","typeString":"contract AccessControlAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessControlAccount_$9039","typeString":"contract AccessControlAccount"}],"id":9013,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3982:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9012,"name":"address","nodeType":"ElementaryTypeName","src":"3982:7:33","typeDescriptions":{}}},"id":9015,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3982:13:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9006,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[8759],"referencedDeclaration":8759,"src":"3941:10:33","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$909_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":9007,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3941:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"id":9008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3954:9:33","memberName":"depositTo","nodeType":"MemberAccess","referencedDeclaration":1007,"src":"3941:22:33","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_address_$returns$__$","typeString":"function (address) payable external"}},"id":9011,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"expression":{"id":9009,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3971:3:33","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":9010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3975:5:33","memberName":"value","nodeType":"MemberAccess","src":"3971:9:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"3941:40:33","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_address_$returns$__$value","typeString":"function (address) payable external"}},"id":9016,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3941:55:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9017,"nodeType":"ExpressionStatement","src":"3941:55:33"}]},"documentation":{"id":9003,"nodeType":"StructuredDocumentation","src":"3827:68:33","text":" deposit more funds for this account in the entryPoint"},"functionSelector":"4a58db19","id":9019,"implemented":true,"kind":"function","modifiers":[],"name":"addDeposit","nameLocation":"3907:10:33","nodeType":"FunctionDefinition","parameters":{"id":9004,"nodeType":"ParameterList","parameters":[],"src":"3917:2:33"},"returnParameters":{"id":9005,"nodeType":"ParameterList","parameters":[],"src":"3935:0:33"},"scope":9039,"src":"3898:103:33","stateMutability":"payable","virtual":false,"visibility":"public"},{"body":{"id":9037,"nodeType":"Block","src":"4248:59:33","statements":[{"expression":{"arguments":[{"id":9033,"name":"withdrawAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9022,"src":"4278:15:33","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},{"id":9034,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9024,"src":"4295:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9030,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[8759],"referencedDeclaration":8759,"src":"4254:10:33","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$909_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":9031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4254:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"id":9032,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4267:10:33","memberName":"withdrawTo","nodeType":"MemberAccess","referencedDeclaration":1031,"src":"4254:23:33","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_payable_$_t_uint256_$returns$__$","typeString":"function (address payable,uint256) external"}},"id":9035,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4254:48:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9036,"nodeType":"ExpressionStatement","src":"4254:48:33"}]},"documentation":{"id":9020,"nodeType":"StructuredDocumentation","src":"4005:133:33","text":" withdraw value from the account's deposit\n @param withdrawAddress target to send to\n @param amount to withdraw"},"functionSelector":"4d44560d","id":9038,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":9027,"name":"WITHDRAW_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8734,"src":"4233:13:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":9028,"kind":"modifierInvocation","modifierName":{"id":9026,"name":"onlyRole","nameLocations":["4224:8:33"],"nodeType":"IdentifierPath","referencedDeclaration":1095,"src":"4224:8:33"},"nodeType":"ModifierInvocation","src":"4224:23:33"}],"name":"withdrawDepositTo","nameLocation":"4150:17:33","nodeType":"FunctionDefinition","parameters":{"id":9025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9022,"mutability":"mutable","name":"withdrawAddress","nameLocation":"4184:15:33","nodeType":"VariableDeclaration","scope":9038,"src":"4168:31:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":9021,"name":"address","nodeType":"ElementaryTypeName","src":"4168:15:33","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":9024,"mutability":"mutable","name":"amount","nameLocation":"4209:6:33","nodeType":"VariableDeclaration","scope":9038,"src":"4201:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9023,"name":"uint256","nodeType":"ElementaryTypeName","src":"4201:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4167:49:33"},"returnParameters":{"id":9029,"nodeType":"ParameterList","parameters":[],"src":"4248:0:33"},"scope":9039,"src":"4141:166:33","stateMutability":"nonpayable","virtual":false,"visibility":"public"}],"scope":9040,"src":"769:3540:33","usedErrors":[1360,1363,2818,3108,3111,4470,4475,4480,8746,8748],"usedEvents":[1372,1381,1390]}],"src":"39:4271:33"},"id":33},"contracts/AccessManagerAccount.sol":{"ast":{"absolutePath":"contracts/AccessManagerAccount.sol","exportedSymbols":{"AccessManager":[11824],"AccessManagerAccount":[9445],"Address":[3068],"BaseAccount":[138],"BytesLib":[12531],"ECDSA":[4807],"IEntryPoint":[909],"MessageHashUtils":[4881],"PackedUserOperation":[1054],"SIG_VALIDATION_FAILED":[143],"SIG_VALIDATION_SUCCESS":[146]},"id":9446,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":9041,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"39:24:34"},{"absolutePath":"contracts/dependencies/AccessManager.sol","file":"./dependencies/AccessManager.sol","id":9043,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9446,"sourceUnit":11825,"src":"65:63:34","symbolAliases":[{"foreign":{"id":9042,"name":"AccessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11824,"src":"73:13:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"@openzeppelin/contracts/utils/Address.sol","id":9045,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9446,"sourceUnit":3069,"src":"129:66:34","symbolAliases":[{"foreign":{"id":9044,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3068,"src":"137:7:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","file":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","id":9047,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9446,"sourceUnit":4882,"src":"196:97:34","symbolAliases":[{"foreign":{"id":9046,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4881,"src":"204:16:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/BaseAccount.sol","file":"@account-abstraction/contracts/core/BaseAccount.sol","id":9049,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9446,"sourceUnit":139,"src":"294:80:34","symbolAliases":[{"foreign":{"id":9048,"name":"BaseAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":138,"src":"302:11:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/Helpers.sol","file":"@account-abstraction/contracts/core/Helpers.sol","id":9052,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9446,"sourceUnit":318,"src":"375:110:34","symbolAliases":[{"foreign":{"id":9050,"name":"SIG_VALIDATION_SUCCESS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":146,"src":"383:22:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":9051,"name":"SIG_VALIDATION_FAILED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":143,"src":"407:21:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IEntryPoint.sol","file":"@account-abstraction/contracts/interfaces/IEntryPoint.sol","id":9054,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9446,"sourceUnit":910,"src":"486:86:34","symbolAliases":[{"foreign":{"id":9053,"name":"IEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":909,"src":"494:11:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","id":9056,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9446,"sourceUnit":1055,"src":"573:102:34","symbolAliases":[{"foreign":{"id":9055,"name":"PackedUserOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1054,"src":"581:19:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","id":9058,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9446,"sourceUnit":4808,"src":"676:75:34","symbolAliases":[{"foreign":{"id":9057,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4807,"src":"684:5:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"solidity-bytes-utils/contracts/BytesLib.sol","file":"solidity-bytes-utils/contracts/BytesLib.sol","id":9060,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9446,"sourceUnit":12532,"src":"752:69:34","symbolAliases":[{"foreign":{"id":9059,"name":"BytesLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12531,"src":"760:8:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":9061,"name":"AccessManager","nameLocations":["856:13:34"],"nodeType":"IdentifierPath","referencedDeclaration":11824,"src":"856:13:34"},"id":9062,"nodeType":"InheritanceSpecifier","src":"856:13:34"},{"baseName":{"id":9063,"name":"BaseAccount","nameLocations":["871:11:34"],"nodeType":"IdentifierPath","referencedDeclaration":138,"src":"871:11:34"},"id":9064,"nodeType":"InheritanceSpecifier","src":"871:11:34"}],"canonicalName":"AccessManagerAccount","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":9445,"linearizedBaseContracts":[9445,138,691,11824,1905,3207,3098],"name":"AccessManagerAccount","nameLocation":"832:20:34","nodeType":"ContractDefinition","nodes":[{"global":false,"id":9067,"libraryName":{"id":9065,"name":"BytesLib","nameLocations":["893:8:34"],"nodeType":"IdentifierPath","referencedDeclaration":12531,"src":"893:8:34"},"nodeType":"UsingForDirective","src":"887:25:34","typeName":{"id":9066,"name":"bytes","nodeType":"ElementaryTypeName","src":"906:5:34","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},{"constant":false,"id":9070,"mutability":"immutable","name":"_entryPoint","nameLocation":"946:11:34","nodeType":"VariableDeclaration","scope":9445,"src":"916:41:34","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"},"typeName":{"id":9069,"nodeType":"UserDefinedTypeName","pathNode":{"id":9068,"name":"IEntryPoint","nameLocations":["916:11:34"],"nodeType":"IdentifierPath","referencedDeclaration":909,"src":"916:11:34"},"referencedDeclaration":909,"src":"916:11:34","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"visibility":"private"},{"constant":true,"id":9078,"mutability":"constant","name":"EXECUTE_SELECTOR","nameLocation":"986:16:34","nodeType":"VariableDeclaration","scope":9445,"src":"962:94:34","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9071,"name":"bytes4","nodeType":"ElementaryTypeName","src":"962:6:34","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"arguments":[{"arguments":[{"hexValue":"6578656375746528616464726573732c75696e743235362c627974657329","id":9075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1022:32:34","typeDescriptions":{"typeIdentifier":"t_stringliteral_b61d27f68746b0955d4867ce6e77d35c62208909547ca5c62d2a533c00d5b837","typeString":"literal_string \"execute(address,uint256,bytes)\""},"value":"execute(address,uint256,bytes)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_b61d27f68746b0955d4867ce6e77d35c62208909547ca5c62d2a533c00d5b837","typeString":"literal_string \"execute(address,uint256,bytes)\""}],"id":9074,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1012:9:34","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":9076,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1012:43:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":9073,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1005:6:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":9072,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1005:6:34","typeDescriptions":{}}},"id":9077,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1005:51:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"private"},{"errorSelector":"d4d202fb","id":9082,"name":"OnlyExecuteAllowedFromEntryPoint","nameLocation":"1067:32:34","nodeType":"ErrorDefinition","parameters":{"id":9081,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9080,"mutability":"mutable","name":"receivedSelector","nameLocation":"1107:16:34","nodeType":"VariableDeclaration","scope":9082,"src":"1100:23:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9079,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1100:6:34","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1099:25:34"},"src":"1061:64:34"},{"errorSelector":"fcd888ca","id":9084,"name":"OnlyExternalTargets","nameLocation":"1134:19:34","nodeType":"ErrorDefinition","parameters":{"id":9083,"nodeType":"ParameterList","parameters":[],"src":"1153:2:34"},"src":"1128:28:34"},{"errorSelector":"99ec076b","id":9086,"name":"DelayNotAllowed","nameLocation":"1165:15:34","nodeType":"ErrorDefinition","parameters":{"id":9085,"nodeType":"ParameterList","parameters":[],"src":"1180:2:34"},"src":"1159:24:34"},{"baseFunctions":[35],"body":{"id":9096,"nodeType":"Block","src":"1290:29:34","statements":[{"expression":{"id":9094,"name":"_entryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9070,"src":"1303:11:34","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"functionReturnParameters":9093,"id":9095,"nodeType":"Return","src":"1296:18:34"}]},"documentation":{"id":9087,"nodeType":"StructuredDocumentation","src":"1187:27:34","text":"@inheritdoc BaseAccount"},"functionSelector":"b0d691fe","id":9097,"implemented":true,"kind":"function","modifiers":[],"name":"entryPoint","nameLocation":"1226:10:34","nodeType":"FunctionDefinition","overrides":{"id":9089,"nodeType":"OverrideSpecifier","overrides":[],"src":"1259:8:34"},"parameters":{"id":9088,"nodeType":"ParameterList","parameters":[],"src":"1236:2:34"},"returnParameters":{"id":9093,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9092,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9097,"src":"1277:11:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"},"typeName":{"id":9091,"nodeType":"UserDefinedTypeName","pathNode":{"id":9090,"name":"IEntryPoint","nameLocations":["1277:11:34"],"nodeType":"IdentifierPath","referencedDeclaration":909,"src":"1277:11:34"},"referencedDeclaration":909,"src":"1277:11:34","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"visibility":"internal"}],"src":"1276:13:34"},"scope":9445,"src":"1217:102:34","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":9100,"nodeType":"Block","src":"1397:2:34","statements":[]},"id":9101,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":9098,"nodeType":"ParameterList","parameters":[],"src":"1377:2:34"},"returnParameters":{"id":9099,"nodeType":"ParameterList","parameters":[],"src":"1397:0:34"},"scope":9445,"src":"1370:29:34","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":9116,"nodeType":"Block","src":"1491:37:34","statements":[{"expression":{"id":9114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9112,"name":"_entryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9070,"src":"1497:11:34","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":9113,"name":"anEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9104,"src":"1511:12:34","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"src":"1497:26:34","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"id":9115,"nodeType":"ExpressionStatement","src":"1497:26:34"}]},"id":9117,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":9109,"name":"initialAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9106,"src":"1477:12:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":9110,"kind":"baseConstructorSpecifier","modifierName":{"id":9108,"name":"AccessManager","nameLocations":["1463:13:34"],"nodeType":"IdentifierPath","referencedDeclaration":11824,"src":"1463:13:34"},"nodeType":"ModifierInvocation","src":"1463:27:34"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":9107,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9104,"mutability":"mutable","name":"anEntryPoint","nameLocation":"1427:12:34","nodeType":"VariableDeclaration","scope":9117,"src":"1415:24:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"},"typeName":{"id":9103,"nodeType":"UserDefinedTypeName","pathNode":{"id":9102,"name":"IEntryPoint","nameLocations":["1415:11:34"],"nodeType":"IdentifierPath","referencedDeclaration":909,"src":"1415:11:34"},"referencedDeclaration":909,"src":"1415:11:34","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"visibility":"internal"},{"constant":false,"id":9106,"mutability":"mutable","name":"initialAdmin","nameLocation":"1449:12:34","nodeType":"VariableDeclaration","scope":9117,"src":"1441:20:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9105,"name":"address","nodeType":"ElementaryTypeName","src":"1441:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1414:48:34"},"returnParameters":{"id":9111,"nodeType":"ParameterList","parameters":[],"src":"1491:0:34"},"scope":9445,"src":"1403:125:34","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":9138,"nodeType":"Block","src":"1839:89:34","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9127,"name":"_requireFromEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":86,"src":"1845:22:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":9128,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1845:24:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9129,"nodeType":"ExpressionStatement","src":"1845:24:34"},{"expression":{"arguments":[{"id":9133,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9120,"src":"1905:4:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9134,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9124,"src":"1911:4:34","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":9135,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9122,"src":"1917:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9130,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3068,"src":"1875:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$3068_$","typeString":"type(library Address)"}},"id":9132,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1883:21:34","memberName":"functionCallWithValue","nodeType":"MemberAccess","referencedDeclaration":2933,"src":"1875:29:34","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256) returns (bytes memory)"}},"id":9136,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1875:48:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9137,"nodeType":"ExpressionStatement","src":"1875:48:34"}]},"documentation":{"id":9118,"nodeType":"StructuredDocumentation","src":"1532:228:34","text":" execute a transaction (called directly from owner, or by entryPoint)\n @param dest destination address to call\n @param value the value to pass in this call\n @param func the calldata to pass in this call"},"functionSelector":"b61d27f6","id":9139,"implemented":true,"kind":"function","modifiers":[],"name":"execute","nameLocation":"1772:7:34","nodeType":"FunctionDefinition","parameters":{"id":9125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9120,"mutability":"mutable","name":"dest","nameLocation":"1788:4:34","nodeType":"VariableDeclaration","scope":9139,"src":"1780:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9119,"name":"address","nodeType":"ElementaryTypeName","src":"1780:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9122,"mutability":"mutable","name":"value","nameLocation":"1802:5:34","nodeType":"VariableDeclaration","scope":9139,"src":"1794:13:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9121,"name":"uint256","nodeType":"ElementaryTypeName","src":"1794:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9124,"mutability":"mutable","name":"func","nameLocation":"1824:4:34","nodeType":"VariableDeclaration","scope":9139,"src":"1809:19:34","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9123,"name":"bytes","nodeType":"ElementaryTypeName","src":"1809:5:34","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1779:50:34"},"returnParameters":{"id":9126,"nodeType":"ParameterList","parameters":[],"src":"1839:0:34"},"scope":9445,"src":"1763:165:34","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":9159,"nodeType":"Block","src":"2093:61:34","statements":[{"expression":{"arguments":[{"arguments":[{"id":9153,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9141,"src":"2127:6:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9154,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9143,"src":"2135:6:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9155,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9145,"src":"2143:4:34","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9151,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2116:3:34","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9152,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2120:6:34","memberName":"encode","nodeType":"MemberAccess","src":"2116:10:34","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2116:32:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9150,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2106:9:34","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":9157,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2106:43:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":9149,"id":9158,"nodeType":"Return","src":"2099:50:34"}]},"id":9160,"implemented":true,"kind":"function","modifiers":[],"name":"_hashOperation","nameLocation":"1995:14:34","nodeType":"FunctionDefinition","parameters":{"id":9146,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9141,"mutability":"mutable","name":"caller","nameLocation":"2018:6:34","nodeType":"VariableDeclaration","scope":9160,"src":"2010:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9140,"name":"address","nodeType":"ElementaryTypeName","src":"2010:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9143,"mutability":"mutable","name":"target","nameLocation":"2034:6:34","nodeType":"VariableDeclaration","scope":9160,"src":"2026:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9142,"name":"address","nodeType":"ElementaryTypeName","src":"2026:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9145,"mutability":"mutable","name":"data","nameLocation":"2055:4:34","nodeType":"VariableDeclaration","scope":9160,"src":"2042:17:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9144,"name":"bytes","nodeType":"ElementaryTypeName","src":"2042:5:34","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2009:51:34"},"returnParameters":{"id":9149,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9148,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9160,"src":"2084:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9147,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2084:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2083:9:34"},"scope":9445,"src":"1986:168:34","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9228,"nodeType":"Block","src":"2261:450:34","statements":[{"assignments":[9170,null,9172],"declarations":[{"constant":false,"id":9170,"mutability":"mutable","name":"target","nameLocation":"2276:6:34","nodeType":"VariableDeclaration","scope":9228,"src":"2268:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9169,"name":"address","nodeType":"ElementaryTypeName","src":"2268:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},null,{"constant":false,"id":9172,"mutability":"mutable","name":"funcCall","nameLocation":"2299:8:34","nodeType":"VariableDeclaration","scope":9228,"src":"2286:21:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9171,"name":"bytes","nodeType":"ElementaryTypeName","src":"2286:5:34","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":9190,"initialValue":{"arguments":[{"baseExpression":{"id":9175,"name":"userOpCallData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9164,"src":"2329:14:34","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9177,"name":"userOpCallData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9164,"src":"2346:14:34","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":9178,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2361:6:34","memberName":"length","nodeType":"MemberAccess","src":"2346:21:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"34","id":9179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2370:1:34","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"2346:25:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"2329:43:34","startExpression":{"hexValue":"34","id":9176,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2344:1:34","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"id":9183,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2381:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9182,"name":"address","nodeType":"ElementaryTypeName","src":"2381:7:34","typeDescriptions":{}}},{"id":9185,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2390:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":9184,"name":"uint256","nodeType":"ElementaryTypeName","src":"2390:7:34","typeDescriptions":{}}},{"id":9187,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2399:5:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":9186,"name":"bytes","nodeType":"ElementaryTypeName","src":"2399:5:34","typeDescriptions":{}}}],"id":9188,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2380:25:34","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_uint256_$_$_t_type$_t_bytes_storage_ptr_$_$","typeString":"tuple(type(address),type(uint256),type(bytes storage pointer))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_uint256_$_$_t_type$_t_bytes_storage_ptr_$_$","typeString":"tuple(type(address),type(uint256),type(bytes storage pointer))"}],"expression":{"id":9173,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2311:3:34","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9174,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2315:6:34","memberName":"decode","nodeType":"MemberAccess","src":"2311:10:34","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":9189,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2311:100:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_payable_$_t_uint256_$_t_bytes_memory_ptr_$","typeString":"tuple(address payable,uint256,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"2267:144:34"},{"assignments":[9192,9194],"declarations":[{"constant":false,"id":9192,"mutability":"mutable","name":"immediate","nameLocation":"2423:9:34","nodeType":"VariableDeclaration","scope":9228,"src":"2418:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9191,"name":"bool","nodeType":"ElementaryTypeName","src":"2418:4:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9194,"mutability":"mutable","name":"delay","nameLocation":"2441:5:34","nodeType":"VariableDeclaration","scope":9228,"src":"2434:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9193,"name":"uint32","nodeType":"ElementaryTypeName","src":"2434:6:34","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":9206,"initialValue":{"arguments":[{"id":9196,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9162,"src":"2458:6:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9197,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9170,"src":"2466:6:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"arguments":[{"hexValue":"30","id":9202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2500:1:34","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"expression":{"id":9200,"name":"funcCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9172,"src":"2481:8:34","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2490:9:34","memberName":"toBytes32","nodeType":"MemberAccess","referencedDeclaration":12496,"src":"2481:18:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$attached_to$_t_bytes_memory_ptr_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":9203,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2481:21:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":9199,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2474:6:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":9198,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2474:6:34","typeDescriptions":{}}},"id":9204,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2474:29:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":9195,"name":"canCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10104,"src":"2450:7:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes4) view returns (bool,uint32)"}},"id":9205,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2450:54:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"2417:87:34"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9211,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9207,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9192,"src":"2514:9:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":9210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9208,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"2527:5:34","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9209,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2536:1:34","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2527:10:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2514:23:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9217,"nodeType":"IfStatement","src":"2510:94:34","trueBody":{"expression":{"condition":{"id":9212,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9192,"src":"2546:9:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":9214,"name":"SIG_VALIDATION_FAILED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":143,"src":"2583:21:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2546:58:34","trueExpression":{"id":9213,"name":"SIG_VALIDATION_SUCCESS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":146,"src":"2558:22:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9168,"id":9216,"nodeType":"Return","src":"2539:65:34"}},{"expression":{"arguments":[{"arguments":[{"id":9220,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9162,"src":"2645:6:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9221,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9170,"src":"2653:6:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9222,"name":"funcCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9172,"src":"2661:8:34","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9219,"name":"_hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9160,"src":"2630:14:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (address,address,bytes memory) pure returns (bytes32)"}},"id":9223,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2630:40:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":9218,"name":"_consumeScheduledOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11357,"src":"2610:19:34","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$_t_uint32_$","typeString":"function (bytes32) returns (uint32)"}},"id":9224,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2610:61:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":9225,"nodeType":"ExpressionStatement","src":"2610:61:34"},{"expression":{"id":9226,"name":"SIG_VALIDATION_SUCCESS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":146,"src":"2684:22:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9168,"id":9227,"nodeType":"Return","src":"2677:29:34"}]},"id":9229,"implemented":true,"kind":"function","modifiers":[],"name":"_checkAAExecuteCall","nameLocation":"2167:19:34","nodeType":"FunctionDefinition","parameters":{"id":9165,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9162,"mutability":"mutable","name":"signer","nameLocation":"2195:6:34","nodeType":"VariableDeclaration","scope":9229,"src":"2187:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9161,"name":"address","nodeType":"ElementaryTypeName","src":"2187:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9164,"mutability":"mutable","name":"userOpCallData","nameLocation":"2218:14:34","nodeType":"VariableDeclaration","scope":9229,"src":"2203:29:34","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9163,"name":"bytes","nodeType":"ElementaryTypeName","src":"2203:5:34","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2186:47:34"},"returnParameters":{"id":9168,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9167,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9229,"src":"2252:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9166,"name":"uint256","nodeType":"ElementaryTypeName","src":"2252:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2251:9:34"},"scope":9445,"src":"2158:553:34","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[97],"body":{"id":9318,"nodeType":"Block","src":"2929:937:34","statements":[{"assignments":[9244],"declarations":[{"constant":false,"id":9244,"mutability":"mutable","name":"selector","nameLocation":"3041:8:34","nodeType":"VariableDeclaration","scope":9318,"src":"3034:15:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9243,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3034:6:34","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":9253,"initialValue":{"arguments":[{"baseExpression":{"expression":{"id":9247,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9233,"src":"3059:6:34","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":9248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3066:8:34","memberName":"callData","nodeType":"MemberAccess","referencedDeclaration":1043,"src":"3059:15:34","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":9250,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3077:1:34","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":9251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"3059:20:34","startExpression":{"hexValue":"30","id":9249,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3075:1:34","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":9246,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3052:6:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":9245,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3052:6:34","typeDescriptions":{}}},"id":9252,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3052:28:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"3034:46:34"},{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":9256,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9254,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9244,"src":"3090:8:34","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":9255,"name":"EXECUTE_SELECTOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9078,"src":"3102:16:34","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"3090:28:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9261,"nodeType":"IfStatement","src":"3086:83:34","trueBody":{"errorCall":{"arguments":[{"id":9258,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9244,"src":"3160:8:34","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":9257,"name":"OnlyExecuteAllowedFromEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9082,"src":"3127:32:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes4_$returns$_t_error_$","typeString":"function (bytes4) pure returns (error)"}},"id":9259,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3127:42:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9260,"nodeType":"RevertStatement","src":"3120:49:34"}},{"assignments":[9263],"declarations":[{"constant":false,"id":9263,"mutability":"mutable","name":"target","nameLocation":"3183:6:34","nodeType":"VariableDeclaration","scope":9318,"src":"3175:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9262,"name":"address","nodeType":"ElementaryTypeName","src":"3175:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":9275,"initialValue":{"arguments":[{"baseExpression":{"expression":{"id":9266,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9233,"src":"3203:6:34","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":9267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3210:8:34","memberName":"callData","nodeType":"MemberAccess","referencedDeclaration":1043,"src":"3203:15:34","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"3336","id":9269,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3221:2:34","typeDescriptions":{"typeIdentifier":"t_rational_36_by_1","typeString":"int_const 36"},"value":"36"},"id":9270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"3203:21:34","startExpression":{"hexValue":"34","id":9268,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3219:1:34","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"id":9272,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3227:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9271,"name":"address","nodeType":"ElementaryTypeName","src":"3227:7:34","typeDescriptions":{}}}],"id":9273,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"3226:9:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}],"expression":{"id":9264,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"3192:3:34","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9265,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3196:6:34","memberName":"decode","nodeType":"MemberAccess","src":"3192:10:34","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":9274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3192:44:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"nodeType":"VariableDeclarationStatement","src":"3175:61:34"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9281,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9276,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9263,"src":"3418:6:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":9279,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3436:4:34","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManagerAccount_$9445","typeString":"contract AccessManagerAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManagerAccount_$9445","typeString":"contract AccessManagerAccount"}],"id":9278,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3428:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9277,"name":"address","nodeType":"ElementaryTypeName","src":"3428:7:34","typeDescriptions":{}}},"id":9280,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3428:13:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3418:23:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9285,"nodeType":"IfStatement","src":"3414:57:34","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":9282,"name":"OnlyExternalTargets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9084,"src":"3450:19:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3450:21:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9284,"nodeType":"RevertStatement","src":"3443:28:34"}},{"assignments":[9287],"declarations":[{"constant":false,"id":9287,"mutability":"mutable","name":"hash","nameLocation":"3485:4:34","nodeType":"VariableDeclaration","scope":9318,"src":"3477:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9286,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3477:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":9292,"initialValue":{"arguments":[{"id":9290,"name":"userOpHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9235,"src":"3532:10:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":9288,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4881,"src":"3492:16:34","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_MessageHashUtils_$4881_$","typeString":"type(library MessageHashUtils)"}},"id":9289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3509:22:34","memberName":"toEthSignedMessageHash","nodeType":"MemberAccess","referencedDeclaration":4822,"src":"3492:39:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) pure returns (bytes32)"}},"id":9291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3492:51:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"3477:66:34"},{"assignments":[9294],"declarations":[{"constant":false,"id":9294,"mutability":"mutable","name":"recovered","nameLocation":"3557:9:34","nodeType":"VariableDeclaration","scope":9318,"src":"3549:17:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9293,"name":"address","nodeType":"ElementaryTypeName","src":"3549:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":9301,"initialValue":{"arguments":[{"id":9297,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9287,"src":"3583:4:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":9298,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9233,"src":"3589:6:34","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":9299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3596:9:34","memberName":"signature","nodeType":"MemberAccess","referencedDeclaration":1053,"src":"3589:16:34","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":9295,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4807,"src":"3569:5:34","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$4807_$","typeString":"type(library ECDSA)"}},"id":9296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3575:7:34","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":4563,"src":"3569:13:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes32,bytes memory) pure returns (address)"}},"id":9300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3569:37:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3549:57:34"},{"condition":{"id":9308,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3663:49:34","subExpression":{"arguments":[{"id":9303,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9294,"src":"3678:9:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9304,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9233,"src":"3689:6:34","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":9305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3696:8:34","memberName":"callData","nodeType":"MemberAccess","referencedDeclaration":1043,"src":"3689:15:34","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"hexValue":"66616c7365","id":9306,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3706:5:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":9302,"name":"_checkCanCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9420,"src":"3664:13:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_calldata_ptr_$_t_bool_$returns$_t_bool_$","typeString":"function (address,bytes calldata,bool) view returns (bool)"}},"id":9307,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3664:48:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9311,"nodeType":"IfStatement","src":"3659:83:34","trueBody":{"expression":{"id":9309,"name":"SIG_VALIDATION_FAILED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":143,"src":"3721:21:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9242,"id":9310,"nodeType":"Return","src":"3714:28:34"}},{"expression":{"arguments":[{"id":9313,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9294,"src":"3834:9:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9314,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9233,"src":"3845:6:34","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":9315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3852:8:34","memberName":"callData","nodeType":"MemberAccess","referencedDeclaration":1043,"src":"3845:15:34","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":9312,"name":"_checkAAExecuteCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9229,"src":"3814:19:34","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_calldata_ptr_$returns$_t_uint256_$","typeString":"function (address,bytes calldata) returns (uint256)"}},"id":9316,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3814:47:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9242,"id":9317,"nodeType":"Return","src":"3807:54:34"}]},"documentation":{"id":9230,"nodeType":"StructuredDocumentation","src":"2715:44:34","text":"implement template method of BaseAccount"},"id":9319,"implemented":true,"kind":"function","modifiers":[{"id":9239,"kind":"modifierInvocation","modifierName":{"id":9238,"name":"frozenTime","nameLocations":["2885:10:34"],"nodeType":"IdentifierPath","referencedDeclaration":10009,"src":"2885:10:34"},"nodeType":"ModifierInvocation","src":"2885:10:34"}],"name":"_validateSignature","nameLocation":"2771:18:34","nodeType":"FunctionDefinition","overrides":{"id":9237,"nodeType":"OverrideSpecifier","overrides":[],"src":"2876:8:34"},"parameters":{"id":9236,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9233,"mutability":"mutable","name":"userOp","nameLocation":"2824:6:34","nodeType":"VariableDeclaration","scope":9319,"src":"2795:35:34","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":9232,"nodeType":"UserDefinedTypeName","pathNode":{"id":9231,"name":"PackedUserOperation","nameLocations":["2795:19:34"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"2795:19:34"},"referencedDeclaration":1054,"src":"2795:19:34","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":9235,"mutability":"mutable","name":"userOpHash","nameLocation":"2844:10:34","nodeType":"VariableDeclaration","scope":9319,"src":"2836:18:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9234,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2836:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2789:69:34"},"returnParameters":{"id":9242,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9241,"mutability":"mutable","name":"validationData","nameLocation":"2913:14:34","nodeType":"VariableDeclaration","scope":9319,"src":"2905:22:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9240,"name":"uint256","nodeType":"ElementaryTypeName","src":"2905:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2904:24:34"},"scope":9445,"src":"2762:1104:34","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":9334,"nodeType":"Block","src":"3987:55:34","statements":[{"expression":{"arguments":[{"arguments":[{"id":9330,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4031:4:34","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManagerAccount_$9445","typeString":"contract AccessManagerAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManagerAccount_$9445","typeString":"contract AccessManagerAccount"}],"id":9329,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4023:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9328,"name":"address","nodeType":"ElementaryTypeName","src":"4023:7:34","typeDescriptions":{}}},"id":9331,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4023:13:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9325,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[9097],"referencedDeclaration":9097,"src":"4000:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$909_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":9326,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4000:12:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"id":9327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4013:9:34","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":1001,"src":"4000:22:34","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":9332,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4000:37:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9324,"id":9333,"nodeType":"Return","src":"3993:44:34"}]},"documentation":{"id":9320,"nodeType":"StructuredDocumentation","src":"3870:62:34","text":" check current account deposit in the entryPoint"},"functionSelector":"c399ec88","id":9335,"implemented":true,"kind":"function","modifiers":[],"name":"getDeposit","nameLocation":"3944:10:34","nodeType":"FunctionDefinition","parameters":{"id":9321,"nodeType":"ParameterList","parameters":[],"src":"3954:2:34"},"returnParameters":{"id":9324,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9323,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9335,"src":"3978:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9322,"name":"uint256","nodeType":"ElementaryTypeName","src":"3978:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3977:9:34"},"scope":9445,"src":"3935:107:34","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":9351,"nodeType":"Block","src":"4154:66:34","statements":[{"expression":{"arguments":[{"arguments":[{"id":9347,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4209:4:34","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManagerAccount_$9445","typeString":"contract AccessManagerAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManagerAccount_$9445","typeString":"contract AccessManagerAccount"}],"id":9346,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4201:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9345,"name":"address","nodeType":"ElementaryTypeName","src":"4201:7:34","typeDescriptions":{}}},"id":9348,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4201:13:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9339,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[9097],"referencedDeclaration":9097,"src":"4160:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$909_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":9340,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4160:12:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"id":9341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4173:9:34","memberName":"depositTo","nodeType":"MemberAccess","referencedDeclaration":1007,"src":"4160:22:34","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_address_$returns$__$","typeString":"function (address) payable external"}},"id":9344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"expression":{"id":9342,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4190:3:34","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":9343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4194:5:34","memberName":"value","nodeType":"MemberAccess","src":"4190:9:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"4160:40:34","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_address_$returns$__$value","typeString":"function (address) payable external"}},"id":9349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4160:55:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9350,"nodeType":"ExpressionStatement","src":"4160:55:34"}]},"documentation":{"id":9336,"nodeType":"StructuredDocumentation","src":"4046:68:34","text":" deposit more funds for this account in the entryPoint"},"functionSelector":"4a58db19","id":9352,"implemented":true,"kind":"function","modifiers":[],"name":"addDeposit","nameLocation":"4126:10:34","nodeType":"FunctionDefinition","parameters":{"id":9337,"nodeType":"ParameterList","parameters":[],"src":"4136:2:34"},"returnParameters":{"id":9338,"nodeType":"ParameterList","parameters":[],"src":"4154:0:34"},"scope":9445,"src":"4117:103:34","stateMutability":"payable","virtual":false,"visibility":"public"},{"body":{"id":9419,"nodeType":"Block","src":"4533:629:34","statements":[{"assignments":[9365,9367],"declarations":[{"constant":false,"id":9365,"mutability":"mutable","name":"immediate","nameLocation":"4545:9:34","nodeType":"VariableDeclaration","scope":9419,"src":"4540:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9364,"name":"bool","nodeType":"ElementaryTypeName","src":"4540:4:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9367,"mutability":"mutable","name":"delay","nameLocation":"4563:5:34","nodeType":"VariableDeclaration","scope":9419,"src":"4556:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9366,"name":"uint32","nodeType":"ElementaryTypeName","src":"4556:6:34","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":9382,"initialValue":{"arguments":[{"id":9369,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9355,"src":"4580:6:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":9372,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4596:4:34","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManagerAccount_$9445","typeString":"contract AccessManagerAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManagerAccount_$9445","typeString":"contract AccessManagerAccount"}],"id":9371,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4588:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9370,"name":"address","nodeType":"ElementaryTypeName","src":"4588:7:34","typeDescriptions":{}}},"id":9373,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4588:13:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"baseExpression":{"id":9376,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9357,"src":"4610:4:34","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":9378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4617:1:34","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":9379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"4610:9:34","startExpression":{"hexValue":"30","id":9377,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4615:1:34","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":9375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4603:6:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":9374,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4603:6:34","typeDescriptions":{}}},"id":9380,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4603:17:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":9368,"name":"canCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10104,"src":"4572:7:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes4) view returns (bool,uint32)"}},"id":9381,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4572:49:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"4539:82:34"},{"condition":{"id":9384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4631:10:34","subExpression":{"id":9383,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9365,"src":"4632:9:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9416,"nodeType":"IfStatement","src":"4627:514:34","trueBody":{"id":9415,"nodeType":"Block","src":"4643:498:34","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":9387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9385,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9367,"src":"4655:5:34","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9386,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4663:1:34","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4655:9:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":9413,"nodeType":"Block","src":"4965:170:34","statements":[{"condition":{"id":9392,"name":"fail","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9359,"src":"4979:4:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"hexValue":"66616c7365","id":9410,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5121:5:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":9363,"id":9411,"nodeType":"Return","src":"5114:12:34"},"id":9412,"nodeType":"IfStatement","src":"4975:151:34","trueBody":{"errorCall":{"arguments":[{"id":9394,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9355,"src":"5035:6:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"arguments":[{"id":9398,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5073:4:34","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManagerAccount_$9445","typeString":"contract AccessManagerAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManagerAccount_$9445","typeString":"contract AccessManagerAccount"}],"id":9397,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5065:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9396,"name":"address","nodeType":"ElementaryTypeName","src":"5065:7:34","typeDescriptions":{}}},"id":9399,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5065:13:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"baseExpression":{"id":9402,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9357,"src":"5087:4:34","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":9404,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5094:1:34","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":9405,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"5087:9:34","startExpression":{"hexValue":"30","id":9403,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5092:1:34","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":9401,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5080:6:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":9400,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5080:6:34","typeDescriptions":{}}},"id":9406,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5080:17:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":9395,"name":"getTargetFunctionRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10154,"src":"5043:21:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_uint64_$","typeString":"function (address,bytes4) view returns (uint64)"}},"id":9407,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5043:55:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":9393,"name":"AccessManagerUnauthorizedAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1609,"src":"5002:32:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint64_$returns$_t_error_$","typeString":"function (address,uint64) pure returns (error)"}},"id":9408,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5002:97:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9409,"nodeType":"RevertStatement","src":"4995:104:34"}}]},"id":9414,"nodeType":"IfStatement","src":"4651:484:34","trueBody":{"id":9391,"nodeType":"Block","src":"4666:293:34","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":9388,"name":"DelayNotAllowed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9086,"src":"4683:15:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4683:17:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9390,"nodeType":"RevertStatement","src":"4676:24:34"}]}}]}},{"expression":{"hexValue":"74727565","id":9417,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5153:4:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":9363,"id":9418,"nodeType":"Return","src":"5146:11:34"}]},"documentation":{"id":9353,"nodeType":"StructuredDocumentation","src":"4224:206:34","text":" @dev Adapted from AccessManaged._checkCanCall, checks a method can be called as if the AccessManagerAccount\n      was an access managed contract (not validating against admin permissions)"},"id":9420,"implemented":true,"kind":"function","modifiers":[],"name":"_checkCanCall","nameLocation":"4442:13:34","nodeType":"FunctionDefinition","parameters":{"id":9360,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9355,"mutability":"mutable","name":"caller","nameLocation":"4464:6:34","nodeType":"VariableDeclaration","scope":9420,"src":"4456:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9354,"name":"address","nodeType":"ElementaryTypeName","src":"4456:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9357,"mutability":"mutable","name":"data","nameLocation":"4487:4:34","nodeType":"VariableDeclaration","scope":9420,"src":"4472:19:34","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9356,"name":"bytes","nodeType":"ElementaryTypeName","src":"4472:5:34","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":9359,"mutability":"mutable","name":"fail","nameLocation":"4498:4:34","nodeType":"VariableDeclaration","scope":9420,"src":"4493:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9358,"name":"bool","nodeType":"ElementaryTypeName","src":"4493:4:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4455:48:34"},"returnParameters":{"id":9363,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9362,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9420,"src":"4527:4:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9361,"name":"bool","nodeType":"ElementaryTypeName","src":"4527:4:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4526:6:34"},"scope":9445,"src":"4433:729:34","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9443,"nodeType":"Block","src":"5384:110:34","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":9429,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3080,"src":"5404:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":9430,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5404:12:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":9431,"name":"_msgData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3089,"src":"5418:8:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":9432,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5418:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"hexValue":"74727565","id":9433,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5430:4:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":9428,"name":"_checkCanCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9420,"src":"5390:13:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_calldata_ptr_$_t_bool_$returns$_t_bool_$","typeString":"function (address,bytes calldata,bool) view returns (bool)"}},"id":9434,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5390:45:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9435,"nodeType":"ExpressionStatement","src":"5390:45:34"},{"expression":{"arguments":[{"id":9439,"name":"withdrawAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9423,"src":"5465:15:34","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},{"id":9440,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9425,"src":"5482:6:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9436,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[9097],"referencedDeclaration":9097,"src":"5441:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$909_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":9437,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5441:12:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"id":9438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5454:10:34","memberName":"withdrawTo","nodeType":"MemberAccess","referencedDeclaration":1031,"src":"5441:23:34","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_payable_$_t_uint256_$returns$__$","typeString":"function (address payable,uint256) external"}},"id":9441,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5441:48:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9442,"nodeType":"ExpressionStatement","src":"5441:48:34"}]},"documentation":{"id":9421,"nodeType":"StructuredDocumentation","src":"5165:133:34","text":" withdraw value from the account's deposit\n @param withdrawAddress target to send to\n @param amount to withdraw"},"functionSelector":"4d44560d","id":9444,"implemented":true,"kind":"function","modifiers":[],"name":"withdrawDepositTo","nameLocation":"5310:17:34","nodeType":"FunctionDefinition","parameters":{"id":9426,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9423,"mutability":"mutable","name":"withdrawAddress","nameLocation":"5344:15:34","nodeType":"VariableDeclaration","scope":9444,"src":"5328:31:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":9422,"name":"address","nodeType":"ElementaryTypeName","src":"5328:15:34","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":9425,"mutability":"mutable","name":"amount","nameLocation":"5369:6:34","nodeType":"VariableDeclaration","scope":9444,"src":"5361:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9424,"name":"uint256","nodeType":"ElementaryTypeName","src":"5361:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5327:49:34"},"returnParameters":{"id":9427,"nodeType":"ParameterList","parameters":[],"src":"5384:0:34"},"scope":9445,"src":"5301:193:34","stateMutability":"nonpayable","virtual":false,"visibility":"public"}],"scope":9446,"src":"823:4673:34","usedErrors":[1585,1589,1593,1597,1601,1603,1609,1617,1621,1631,1635,2818,3108,3111,4470,4475,4480,6533,9082,9084,9086],"usedEvents":[1492,1499,1506,1513,1526,1533,1540,1547,1556,1563,1572,1581]}],"src":"39:5458:34"},"id":34},"contracts/ERC2771ForwarderAccount.sol":{"ast":{"absolutePath":"contracts/ERC2771ForwarderAccount.sol","exportedSymbols":{"AccessControl":[1350],"Address":[3068],"BaseAccount":[138],"ECDSA":[4807],"ERC2771Context":[2189],"ERC2771ForwarderAccount":[9893],"IEntryPoint":[909],"MessageHashUtils":[4881],"PackedUserOperation":[1054],"SIG_VALIDATION_FAILED":[143],"SIG_VALIDATION_SUCCESS":[146]},"id":9894,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":9447,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"39:24:35"},{"absolutePath":"@openzeppelin/contracts/access/AccessControl.sol","file":"@openzeppelin/contracts/access/AccessControl.sol","id":9449,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9894,"sourceUnit":1351,"src":"65:79:35","symbolAliases":[{"foreign":{"id":9448,"name":"AccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1350,"src":"73:13:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"@openzeppelin/contracts/utils/Address.sol","id":9451,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9894,"sourceUnit":3069,"src":"145:66:35","symbolAliases":[{"foreign":{"id":9450,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3068,"src":"153:7:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/metatx/ERC2771Context.sol","file":"@openzeppelin/contracts/metatx/ERC2771Context.sol","id":9453,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9894,"sourceUnit":2190,"src":"212:81:35","symbolAliases":[{"foreign":{"id":9452,"name":"ERC2771Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2189,"src":"220:14:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","file":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","id":9455,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9894,"sourceUnit":4882,"src":"294:97:35","symbolAliases":[{"foreign":{"id":9454,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4881,"src":"302:16:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/BaseAccount.sol","file":"@account-abstraction/contracts/core/BaseAccount.sol","id":9457,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9894,"sourceUnit":139,"src":"392:80:35","symbolAliases":[{"foreign":{"id":9456,"name":"BaseAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":138,"src":"400:11:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/Helpers.sol","file":"@account-abstraction/contracts/core/Helpers.sol","id":9460,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9894,"sourceUnit":318,"src":"473:110:35","symbolAliases":[{"foreign":{"id":9458,"name":"SIG_VALIDATION_SUCCESS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":146,"src":"481:22:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":9459,"name":"SIG_VALIDATION_FAILED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":143,"src":"505:21:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IEntryPoint.sol","file":"@account-abstraction/contracts/interfaces/IEntryPoint.sol","id":9462,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9894,"sourceUnit":910,"src":"584:86:35","symbolAliases":[{"foreign":{"id":9461,"name":"IEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":909,"src":"592:11:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","id":9464,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9894,"sourceUnit":1055,"src":"671:102:35","symbolAliases":[{"foreign":{"id":9463,"name":"PackedUserOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1054,"src":"679:19:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","id":9466,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9894,"sourceUnit":4808,"src":"774:75:35","symbolAliases":[{"foreign":{"id":9465,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4807,"src":"782:5:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":9468,"name":"AccessControl","nameLocations":["1194:13:35"],"nodeType":"IdentifierPath","referencedDeclaration":1350,"src":"1194:13:35"},"id":9469,"nodeType":"InheritanceSpecifier","src":"1194:13:35"},{"baseName":{"id":9470,"name":"BaseAccount","nameLocations":["1209:11:35"],"nodeType":"IdentifierPath","referencedDeclaration":138,"src":"1209:11:35"},"id":9471,"nodeType":"InheritanceSpecifier","src":"1209:11:35"}],"canonicalName":"ERC2771ForwarderAccount","contractDependencies":[],"contractKind":"contract","documentation":{"id":9467,"nodeType":"StructuredDocumentation","src":"851:306:35","text":" @title ERC2771ForwarderAccount\n @dev Smart Account that acts as an ERC2771 Trusted Forwarder, forwarding calls to other contract(s) where\n      the account is the trusted forwarder, on behalf of the signer of the userOp.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":9893,"linearizedBaseContracts":[9893,138,691,1350,4905,4917,1433,3098],"name":"ERC2771ForwarderAccount","nameLocation":"1167:23:35","nodeType":"ContractDefinition","nodes":[{"constant":true,"functionSelector":"e02023a1","id":9476,"mutability":"constant","name":"WITHDRAW_ROLE","nameLocation":"1249:13:35","nodeType":"VariableDeclaration","scope":9893,"src":"1225:66:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9472,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1225:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"57495448445241575f524f4c45","id":9474,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1275:15:35","typeDescriptions":{"typeIdentifier":"t_stringliteral_5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec","typeString":"literal_string \"WITHDRAW_ROLE\""},"value":"WITHDRAW_ROLE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec","typeString":"literal_string \"WITHDRAW_ROLE\""}],"id":9473,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1265:9:35","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":9475,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1265:26:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"functionSelector":"07bd0265","id":9481,"mutability":"constant","name":"EXECUTOR_ROLE","nameLocation":"1319:13:35","nodeType":"VariableDeclaration","scope":9893,"src":"1295:66:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9477,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1295:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"4558454355544f525f524f4c45","id":9479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1345:15:35","typeDescriptions":{"typeIdentifier":"t_stringliteral_d8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63","typeString":"literal_string \"EXECUTOR_ROLE\""},"value":"EXECUTOR_ROLE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63","typeString":"literal_string \"EXECUTOR_ROLE\""}],"id":9478,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1335:9:35","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":9480,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1335:26:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":false,"id":9484,"mutability":"immutable","name":"_entryPoint","nameLocation":"1396:11:35","nodeType":"VariableDeclaration","scope":9893,"src":"1366:41:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"},"typeName":{"id":9483,"nodeType":"UserDefinedTypeName","pathNode":{"id":9482,"name":"IEntryPoint","nameLocations":["1366:11:35"],"nodeType":"IdentifierPath","referencedDeclaration":909,"src":"1366:11:35"},"referencedDeclaration":909,"src":"1366:11:35","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"visibility":"private"},{"constant":false,"id":9486,"mutability":"mutable","name":"_userOpSigner","nameLocation":"1438:13:35","nodeType":"VariableDeclaration","scope":9893,"src":"1411:40:35","stateVariable":true,"storageLocation":"transient","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9485,"name":"address","nodeType":"ElementaryTypeName","src":"1411:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"errorSelector":"f1a1fdac","id":9490,"name":"RequiredEntryPointOrExecutor","nameLocation":"1462:28:35","nodeType":"ErrorDefinition","parameters":{"id":9489,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9488,"mutability":"mutable","name":"sender","nameLocation":"1499:6:35","nodeType":"VariableDeclaration","scope":9490,"src":"1491:14:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9487,"name":"address","nodeType":"ElementaryTypeName","src":"1491:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1490:16:35"},"src":"1456:51:35"},{"errorSelector":"6ca7ff7d","id":9492,"name":"UserOpSignerNotSet","nameLocation":"1516:18:35","nodeType":"ErrorDefinition","parameters":{"id":9491,"nodeType":"ParameterList","parameters":[],"src":"1534:2:35"},"src":"1510:27:35"},{"errorSelector":"6d4e1415","id":9496,"name":"CanCallOnlyIfTrustedForwarder","nameLocation":"1546:29:35","nodeType":"ErrorDefinition","parameters":{"id":9495,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9494,"mutability":"mutable","name":"target","nameLocation":"1584:6:35","nodeType":"VariableDeclaration","scope":9496,"src":"1576:14:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9493,"name":"address","nodeType":"ElementaryTypeName","src":"1576:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1575:16:35"},"src":"1540:52:35"},{"errorSelector":"2a00e5c6","id":9498,"name":"WrongArrayLength","nameLocation":"1601:16:35","nodeType":"ErrorDefinition","parameters":{"id":9497,"nodeType":"ParameterList","parameters":[],"src":"1617:2:35"},"src":"1595:25:35"},{"baseFunctions":[35],"body":{"id":9508,"nodeType":"Block","src":"1727:29:35","statements":[{"expression":{"id":9506,"name":"_entryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9484,"src":"1740:11:35","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"functionReturnParameters":9505,"id":9507,"nodeType":"Return","src":"1733:18:35"}]},"documentation":{"id":9499,"nodeType":"StructuredDocumentation","src":"1624:27:35","text":"@inheritdoc BaseAccount"},"functionSelector":"b0d691fe","id":9509,"implemented":true,"kind":"function","modifiers":[],"name":"entryPoint","nameLocation":"1663:10:35","nodeType":"FunctionDefinition","overrides":{"id":9501,"nodeType":"OverrideSpecifier","overrides":[],"src":"1696:8:35"},"parameters":{"id":9500,"nodeType":"ParameterList","parameters":[],"src":"1673:2:35"},"returnParameters":{"id":9505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9504,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9509,"src":"1714:11:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"},"typeName":{"id":9503,"nodeType":"UserDefinedTypeName","pathNode":{"id":9502,"name":"IEntryPoint","nameLocations":["1714:11:35"],"nodeType":"IdentifierPath","referencedDeclaration":909,"src":"1714:11:35"},"referencedDeclaration":909,"src":"1714:11:35","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"visibility":"internal"}],"src":"1713:13:35"},"scope":9893,"src":"1654:102:35","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":9512,"nodeType":"Block","src":"1834:2:35","statements":[]},"id":9513,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":9510,"nodeType":"ParameterList","parameters":[],"src":"1814:2:35"},"returnParameters":{"id":9511,"nodeType":"ParameterList","parameters":[],"src":"1834:0:35"},"scope":9893,"src":"1807:29:35","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":9552,"nodeType":"Block","src":"1921:182:35","statements":[{"expression":{"id":9526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9524,"name":"_entryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9484,"src":"1927:11:35","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":9525,"name":"anEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9516,"src":"1941:12:35","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"src":"1927:26:35","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"id":9527,"nodeType":"ExpressionStatement","src":"1927:26:35"},{"expression":{"arguments":[{"id":9529,"name":"DEFAULT_ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1084,"src":"1970:18:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9530,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9518,"src":"1990:5:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":9528,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1311,"src":"1959:10:35","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":9531,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1959:37:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9532,"nodeType":"ExpressionStatement","src":"1959:37:35"},{"body":{"id":9550,"nodeType":"Block","src":"2045:54:35","statements":[{"expression":{"arguments":[{"id":9544,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9481,"src":"2064:13:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":9545,"name":"executors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9521,"src":"2079:9:35","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":9547,"indexExpression":{"id":9546,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9534,"src":"2089:1:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2079:12:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":9543,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1311,"src":"2053:10:35","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":9548,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2053:39:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9549,"nodeType":"ExpressionStatement","src":"2053:39:35"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9536,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9534,"src":"2018:1:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":9537,"name":"executors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9521,"src":"2022:9:35","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":9538,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2032:6:35","memberName":"length","nodeType":"MemberAccess","src":"2022:16:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2018:20:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9551,"initializationExpression":{"assignments":[9534],"declarations":[{"constant":false,"id":9534,"mutability":"mutable","name":"i","nameLocation":"2015:1:35","nodeType":"VariableDeclaration","scope":9551,"src":"2007:9:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9533,"name":"uint256","nodeType":"ElementaryTypeName","src":"2007:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9535,"nodeType":"VariableDeclarationStatement","src":"2007:9:35"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":9541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"2040:3:35","subExpression":{"id":9540,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9534,"src":"2040:1:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9542,"nodeType":"ExpressionStatement","src":"2040:3:35"},"nodeType":"ForStatement","src":"2002:97:35"}]},"id":9553,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":9522,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9516,"mutability":"mutable","name":"anEntryPoint","nameLocation":"1864:12:35","nodeType":"VariableDeclaration","scope":9553,"src":"1852:24:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"},"typeName":{"id":9515,"nodeType":"UserDefinedTypeName","pathNode":{"id":9514,"name":"IEntryPoint","nameLocations":["1852:11:35"],"nodeType":"IdentifierPath","referencedDeclaration":909,"src":"1852:11:35"},"referencedDeclaration":909,"src":"1852:11:35","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"visibility":"internal"},{"constant":false,"id":9518,"mutability":"mutable","name":"admin","nameLocation":"1886:5:35","nodeType":"VariableDeclaration","scope":9553,"src":"1878:13:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9517,"name":"address","nodeType":"ElementaryTypeName","src":"1878:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9521,"mutability":"mutable","name":"executors","nameLocation":"1910:9:35","nodeType":"VariableDeclaration","scope":9553,"src":"1893:26:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":9519,"name":"address","nodeType":"ElementaryTypeName","src":"1893:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9520,"nodeType":"ArrayTypeName","src":"1893:9:35","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"}],"src":"1851:69:35"},"returnParameters":{"id":9523,"nodeType":"ParameterList","parameters":[],"src":"1921:0:35"},"scope":9893,"src":"1840:263:35","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":9607,"nodeType":"Block","src":"2263:705:35","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9565,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9558,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2273:3:35","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":9559,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2277:6:35","memberName":"sender","nodeType":"MemberAccess","src":"2273:10:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":9562,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[9509],"referencedDeclaration":9509,"src":"2295:10:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$909_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":9563,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2295:12:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}],"id":9561,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2287:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9560,"name":"address","nodeType":"ElementaryTypeName","src":"2287:7:35","typeDescriptions":{}}},"id":9564,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2287:21:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2273:35:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9591,"nodeType":"IfStatement","src":"2269:581:35","trueBody":{"id":9590,"nodeType":"Block","src":"2310:540:35","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9572,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9567,"name":"_userOpSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9486,"src":"2326:13:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":9570,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2351:1:35","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":9569,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2343:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9568,"name":"address","nodeType":"ElementaryTypeName","src":"2343:7:35","typeDescriptions":{}}},"id":9571,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2343:10:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2326:27:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":9573,"name":"UserOpSignerNotSet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9492,"src":"2355:18:35","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9574,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2355:20:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":9566,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2318:7:35","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":9575,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2318:58:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9576,"nodeType":"ExpressionStatement","src":"2318:58:35"},{"expression":{"id":9579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9577,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9556,"src":"2384:6:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":9578,"name":"_userOpSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9486,"src":"2393:13:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2384:22:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9580,"nodeType":"ExpressionStatement","src":"2384:22:35"},{"expression":{"id":9586,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9581,"name":"_userOpSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9486,"src":"2796:13:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"hexValue":"30","id":9584,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2820:1:35","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":9583,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2812:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9582,"name":"address","nodeType":"ElementaryTypeName","src":"2812:7:35","typeDescriptions":{}}},"id":9585,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2812:10:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2796:26:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9587,"nodeType":"ExpressionStatement","src":"2796:26:35"},{"expression":{"id":9588,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9556,"src":"2837:6:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":9557,"id":9589,"nodeType":"Return","src":"2830:13:35"}]}},{"expression":{"arguments":[{"arguments":[{"id":9594,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9481,"src":"2871:13:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":9595,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2886:3:35","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":9596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2890:6:35","memberName":"sender","nodeType":"MemberAccess","src":"2886:10:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":9593,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1135,"src":"2863:7:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":9597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2863:34:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":9599,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2928:3:35","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":9600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2932:6:35","memberName":"sender","nodeType":"MemberAccess","src":"2928:10:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9598,"name":"RequiredEntryPointOrExecutor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9490,"src":"2899:28:35","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":9601,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2899:40:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":9592,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2855:7:35","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":9602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2855:85:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9603,"nodeType":"ExpressionStatement","src":"2855:85:35"},{"expression":{"expression":{"id":9604,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2953:3:35","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":9605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2957:6:35","memberName":"sender","nodeType":"MemberAccess","src":"2953:10:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":9557,"id":9606,"nodeType":"Return","src":"2946:17:35"}]},"id":9608,"implemented":true,"kind":"function","modifiers":[],"name":"_requireFromEntryPointOrExecutor","nameLocation":"2194:32:35","nodeType":"FunctionDefinition","parameters":{"id":9554,"nodeType":"ParameterList","parameters":[],"src":"2226:2:35"},"returnParameters":{"id":9557,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9556,"mutability":"mutable","name":"sender","nameLocation":"2255:6:35","nodeType":"VariableDeclaration","scope":9608,"src":"2247:14:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9555,"name":"address","nodeType":"ElementaryTypeName","src":"2247:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2246:16:35"},"scope":9893,"src":"2185:783:35","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9644,"nodeType":"Block","src":"3279:218:35","statements":[{"assignments":[9619],"declarations":[{"constant":false,"id":9619,"mutability":"mutable","name":"sender","nameLocation":"3293:6:35","nodeType":"VariableDeclaration","scope":9644,"src":"3285:14:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9618,"name":"address","nodeType":"ElementaryTypeName","src":"3285:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":9622,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":9620,"name":"_requireFromEntryPointOrExecutor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9608,"src":"3302:32:35","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$_t_address_$","typeString":"function () returns (address)"}},"id":9621,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3302:34:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3285:51:35"},{"expression":{"arguments":[{"arguments":[{"id":9625,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9611,"src":"3369:4:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9624,"name":"_isTrustedByTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9840,"src":"3350:18:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":9626,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3350:24:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":9628,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9611,"src":"3406:4:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9627,"name":"CanCallOnlyIfTrustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9496,"src":"3376:29:35","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":9629,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3376:35:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":9623,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3342:7:35","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":9630,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3342:70:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9631,"nodeType":"ExpressionStatement","src":"3342:70:35"},{"expression":{"arguments":[{"id":9635,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9611,"src":"3448:4:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":9638,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9615,"src":"3471:4:35","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":9639,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9619,"src":"3477:6:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":9636,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"3454:3:35","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9637,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3458:12:35","memberName":"encodePacked","nodeType":"MemberAccess","src":"3454:16:35","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9640,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3454:30:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":9641,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9613,"src":"3486:5:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9632,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3068,"src":"3418:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$3068_$","typeString":"type(library Address)"}},"id":9634,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3426:21:35","memberName":"functionCallWithValue","nodeType":"MemberAccess","referencedDeclaration":2933,"src":"3418:29:35","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256) returns (bytes memory)"}},"id":9642,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3418:74:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9643,"nodeType":"ExpressionStatement","src":"3418:74:35"}]},"documentation":{"id":9609,"nodeType":"StructuredDocumentation","src":"2972:228:35","text":" execute a transaction (called directly from owner, or by entryPoint)\n @param dest destination address to call\n @param value the value to pass in this call\n @param func the calldata to pass in this call"},"functionSelector":"b61d27f6","id":9645,"implemented":true,"kind":"function","modifiers":[],"name":"execute","nameLocation":"3212:7:35","nodeType":"FunctionDefinition","parameters":{"id":9616,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9611,"mutability":"mutable","name":"dest","nameLocation":"3228:4:35","nodeType":"VariableDeclaration","scope":9645,"src":"3220:12:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9610,"name":"address","nodeType":"ElementaryTypeName","src":"3220:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9613,"mutability":"mutable","name":"value","nameLocation":"3242:5:35","nodeType":"VariableDeclaration","scope":9645,"src":"3234:13:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9612,"name":"uint256","nodeType":"ElementaryTypeName","src":"3234:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9615,"mutability":"mutable","name":"func","nameLocation":"3264:4:35","nodeType":"VariableDeclaration","scope":9645,"src":"3249:19:35","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9614,"name":"bytes","nodeType":"ElementaryTypeName","src":"3249:5:35","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3219:50:35"},"returnParameters":{"id":9617,"nodeType":"ParameterList","parameters":[],"src":"3279:0:35"},"scope":9893,"src":"3203:294:35","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":9754,"nodeType":"Block","src":"3973:523:35","statements":[{"assignments":[9659],"declarations":[{"constant":false,"id":9659,"mutability":"mutable","name":"sender","nameLocation":"3987:6:35","nodeType":"VariableDeclaration","scope":9754,"src":"3979:14:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9658,"name":"address","nodeType":"ElementaryTypeName","src":"3979:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":9662,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":9660,"name":"_requireFromEntryPointOrExecutor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9608,"src":"3996:32:35","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$_t_address_$","typeString":"function () returns (address)"}},"id":9661,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3996:34:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3979:51:35"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9663,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9649,"src":"4040:4:35","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":9664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4045:6:35","memberName":"length","nodeType":"MemberAccess","src":"4040:11:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":9665,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9655,"src":"4055:4:35","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":9666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4060:6:35","memberName":"length","nodeType":"MemberAccess","src":"4055:11:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4040:26:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9677,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9668,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9652,"src":"4071:5:35","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":9669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4077:6:35","memberName":"length","nodeType":"MemberAccess","src":"4071:12:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":9670,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4087:1:35","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4071:17:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9672,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9652,"src":"4092:5:35","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":9673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4098:6:35","memberName":"length","nodeType":"MemberAccess","src":"4092:12:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":9674,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9655,"src":"4108:4:35","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":9675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4113:6:35","memberName":"length","nodeType":"MemberAccess","src":"4108:11:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4092:27:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4071:48:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":9678,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4070:50:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4040:80:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9683,"nodeType":"IfStatement","src":"4036:111:35","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":9680,"name":"WrongArrayLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9498,"src":"4129:16:35","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9681,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4129:18:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9682,"nodeType":"RevertStatement","src":"4122:25:35"}},{"body":{"id":9752,"nodeType":"Block","src":"4195:297:35","statements":[{"expression":{"arguments":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9696,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9685,"src":"4220:1:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9697,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4225:1:35","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4220:6:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9712,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":9704,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9649,"src":"4260:4:35","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":9708,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9705,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9685,"src":"4265:1:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":9706,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4269:1:35","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4265:5:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4260:11:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"baseExpression":{"id":9709,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9649,"src":"4275:4:35","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":9711,"indexExpression":{"id":9710,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9685,"src":"4280:1:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4275:7:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4260:22:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"baseExpression":{"id":9714,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9649,"src":"4305:4:35","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":9716,"indexExpression":{"id":9715,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9685,"src":"4310:1:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4305:7:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9713,"name":"_isTrustedByTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9840,"src":"4286:18:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":9717,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4286:27:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4260:53:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":9719,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4259:55:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4220:94:35","trueExpression":{"arguments":[{"baseExpression":{"id":9700,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9649,"src":"4248:4:35","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":9702,"indexExpression":{"hexValue":"30","id":9701,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4253:1:35","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4248:7:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9699,"name":"_isTrustedByTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9840,"src":"4229:18:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":9703,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4229:27:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"baseExpression":{"id":9722,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9649,"src":"4354:4:35","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":9724,"indexExpression":{"id":9723,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9685,"src":"4359:1:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4354:7:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9721,"name":"CanCallOnlyIfTrustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9496,"src":"4324:29:35","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":9725,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4324:38:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":9695,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4203:7:35","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":9726,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4203:167:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9727,"nodeType":"ExpressionStatement","src":"4203:167:35"},{"expression":{"arguments":[{"baseExpression":{"id":9731,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9649,"src":"4408:4:35","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":9733,"indexExpression":{"id":9732,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9685,"src":"4413:1:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4408:7:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"baseExpression":{"id":9736,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9655,"src":"4434:4:35","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":9738,"indexExpression":{"id":9737,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9685,"src":"4439:1:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4434:7:35","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":9739,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9659,"src":"4443:6:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":9734,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4417:3:35","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9735,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4421:12:35","memberName":"encodePacked","nodeType":"MemberAccess","src":"4417:16:35","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9740,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4417:33:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9744,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9741,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9652,"src":"4452:5:35","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":9742,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4458:6:35","memberName":"length","nodeType":"MemberAccess","src":"4452:12:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9743,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4468:1:35","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4452:17:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"baseExpression":{"id":9746,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9652,"src":"4476:5:35","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":9748,"indexExpression":{"id":9747,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9685,"src":"4482:1:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4476:8:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4452:32:35","trueExpression":{"hexValue":"30","id":9745,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4472:1:35","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9728,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3068,"src":"4378:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$3068_$","typeString":"type(library Address)"}},"id":9730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4386:21:35","memberName":"functionCallWithValue","nodeType":"MemberAccess","referencedDeclaration":2933,"src":"4378:29:35","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256) returns (bytes memory)"}},"id":9750,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4378:107:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9751,"nodeType":"ExpressionStatement","src":"4378:107:35"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9691,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9688,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9685,"src":"4173:1:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":9689,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9649,"src":"4177:4:35","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":9690,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4182:6:35","memberName":"length","nodeType":"MemberAccess","src":"4177:11:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4173:15:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9753,"initializationExpression":{"assignments":[9685],"declarations":[{"constant":false,"id":9685,"mutability":"mutable","name":"i","nameLocation":"4166:1:35","nodeType":"VariableDeclaration","scope":9753,"src":"4158:9:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9684,"name":"uint256","nodeType":"ElementaryTypeName","src":"4158:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9687,"initialValue":{"hexValue":"30","id":9686,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4170:1:35","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"4158:13:35"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":9693,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"4190:3:35","subExpression":{"id":9692,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9685,"src":"4190:1:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9694,"nodeType":"ExpressionStatement","src":"4190:3:35"},"nodeType":"ForStatement","src":"4153:339:35"}]},"documentation":{"id":9646,"nodeType":"StructuredDocumentation","src":"3501:364:35","text":" execute a sequence of transactions\n @dev to reduce gas consumption for trivial case (no value), use a zero-length array to mean zero value\n @param dest an array of destination addresses\n @param value an array of values to pass to each call. can be zero-length for no-value calls\n @param func an array of calldata to pass to each call"},"functionSelector":"47e1da2a","id":9755,"implemented":true,"kind":"function","modifiers":[],"name":"executeBatch","nameLocation":"3877:12:35","nodeType":"FunctionDefinition","parameters":{"id":9656,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9649,"mutability":"mutable","name":"dest","nameLocation":"3909:4:35","nodeType":"VariableDeclaration","scope":9755,"src":"3890:23:35","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":9647,"name":"address","nodeType":"ElementaryTypeName","src":"3890:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9648,"nodeType":"ArrayTypeName","src":"3890:9:35","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":9652,"mutability":"mutable","name":"value","nameLocation":"3934:5:35","nodeType":"VariableDeclaration","scope":9755,"src":"3915:24:35","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":9650,"name":"uint256","nodeType":"ElementaryTypeName","src":"3915:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9651,"nodeType":"ArrayTypeName","src":"3915:9:35","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":9655,"mutability":"mutable","name":"func","nameLocation":"3958:4:35","nodeType":"VariableDeclaration","scope":9755,"src":"3941:21:35","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":9653,"name":"bytes","nodeType":"ElementaryTypeName","src":"3941:5:35","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":9654,"nodeType":"ArrayTypeName","src":"3941:7:35","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"3889:74:35"},"returnParameters":{"id":9657,"nodeType":"ParameterList","parameters":[],"src":"3973:0:35"},"scope":9893,"src":"3868:628:35","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[97],"body":{"id":9797,"nodeType":"Block","src":"4703:371:35","statements":[{"assignments":[9768],"declarations":[{"constant":false,"id":9768,"mutability":"mutable","name":"hash","nameLocation":"4717:4:35","nodeType":"VariableDeclaration","scope":9797,"src":"4709:12:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9767,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4709:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":9773,"initialValue":{"arguments":[{"id":9771,"name":"userOpHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9761,"src":"4764:10:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":9769,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4881,"src":"4724:16:35","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_MessageHashUtils_$4881_$","typeString":"type(library MessageHashUtils)"}},"id":9770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4741:22:35","memberName":"toEthSignedMessageHash","nodeType":"MemberAccess","referencedDeclaration":4822,"src":"4724:39:35","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) pure returns (bytes32)"}},"id":9772,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4724:51:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"4709:66:35"},{"assignments":[9775],"declarations":[{"constant":false,"id":9775,"mutability":"mutable","name":"recovered","nameLocation":"4789:9:35","nodeType":"VariableDeclaration","scope":9797,"src":"4781:17:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9774,"name":"address","nodeType":"ElementaryTypeName","src":"4781:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":9782,"initialValue":{"arguments":[{"id":9778,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9768,"src":"4815:4:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":9779,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"4821:6:35","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":9780,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4828:9:35","memberName":"signature","nodeType":"MemberAccess","referencedDeclaration":1053,"src":"4821:16:35","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":9776,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4807,"src":"4801:5:35","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$4807_$","typeString":"type(library ECDSA)"}},"id":9777,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4807:7:35","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":4563,"src":"4801:13:35","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes32,bytes memory) pure returns (address)"}},"id":9781,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4801:37:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4781:57:35"},{"condition":{"id":9787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4848:34:35","subExpression":{"arguments":[{"id":9784,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9481,"src":"4857:13:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9785,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9775,"src":"4872:9:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":9783,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1135,"src":"4849:7:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":9786,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4849:33:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9790,"nodeType":"IfStatement","src":"4844:68:35","trueBody":{"expression":{"id":9788,"name":"SIG_VALIDATION_FAILED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":143,"src":"4891:21:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9766,"id":9789,"nodeType":"Return","src":"4884:28:35"}},{"expression":{"id":9793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9791,"name":"_userOpSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9486,"src":"5009:13:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":9792,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9775,"src":"5025:9:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5009:25:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9794,"nodeType":"ExpressionStatement","src":"5009:25:35"},{"expression":{"id":9795,"name":"SIG_VALIDATION_SUCCESS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":146,"src":"5047:22:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9766,"id":9796,"nodeType":"Return","src":"5040:29:35"}]},"documentation":{"id":9756,"nodeType":"StructuredDocumentation","src":"4500:44:35","text":"implement template method of BaseAccount"},"id":9798,"implemented":true,"kind":"function","modifiers":[],"name":"_validateSignature","nameLocation":"4556:18:35","nodeType":"FunctionDefinition","overrides":{"id":9763,"nodeType":"OverrideSpecifier","overrides":[],"src":"4661:8:35"},"parameters":{"id":9762,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9759,"mutability":"mutable","name":"userOp","nameLocation":"4609:6:35","nodeType":"VariableDeclaration","scope":9798,"src":"4580:35:35","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":9758,"nodeType":"UserDefinedTypeName","pathNode":{"id":9757,"name":"PackedUserOperation","nameLocations":["4580:19:35"],"nodeType":"IdentifierPath","referencedDeclaration":1054,"src":"4580:19:35"},"referencedDeclaration":1054,"src":"4580:19:35","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$1054_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":9761,"mutability":"mutable","name":"userOpHash","nameLocation":"4629:10:35","nodeType":"VariableDeclaration","scope":9798,"src":"4621:18:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9760,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4621:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4574:69:35"},"returnParameters":{"id":9766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9765,"mutability":"mutable","name":"validationData","nameLocation":"4687:14:35","nodeType":"VariableDeclaration","scope":9798,"src":"4679:22:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9764,"name":"uint256","nodeType":"ElementaryTypeName","src":"4679:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4678:24:35"},"scope":9893,"src":"4547:527:35","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":9839,"nodeType":"Block","src":"5413:980:35","statements":[{"assignments":[9807],"declarations":[{"constant":false,"id":9807,"mutability":"mutable","name":"encodedParams","nameLocation":"5432:13:35","nodeType":"VariableDeclaration","scope":9839,"src":"5419:26:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9806,"name":"bytes","nodeType":"ElementaryTypeName","src":"5419:5:35","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":9818,"initialValue":{"arguments":[{"expression":{"id":9810,"name":"ERC2771Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2189,"src":"5463:14:35","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC2771Context_$2189_$","typeString":"type(contract ERC2771Context)"}},"id":9811,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5478:18:35","memberName":"isTrustedForwarder","nodeType":"MemberAccess","referencedDeclaration":2090,"src":"5463:33:35","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$_t_address_$returns$_t_bool_$","typeString":"function ERC2771Context.isTrustedForwarder(address) view returns (bool)"}},{"components":[{"arguments":[{"id":9814,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5507:4:35","typeDescriptions":{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$9893","typeString":"contract ERC2771ForwarderAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$9893","typeString":"contract ERC2771ForwarderAccount"}],"id":9813,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5499:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9812,"name":"address","nodeType":"ElementaryTypeName","src":"5499:7:35","typeDescriptions":{}}},"id":9815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5499:13:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":9816,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5498:15:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_declaration_view$_t_address_$returns$_t_bool_$","typeString":"function ERC2771Context.isTrustedForwarder(address) view returns (bool)"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":9808,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"5448:3:35","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9809,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5452:10:35","memberName":"encodeCall","nodeType":"MemberAccess","src":"5448:14:35","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5448:66:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"5419:95:35"},{"assignments":[9820],"declarations":[{"constant":false,"id":9820,"mutability":"mutable","name":"success","nameLocation":"5526:7:35","nodeType":"VariableDeclaration","scope":9839,"src":"5521:12:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9819,"name":"bool","nodeType":"ElementaryTypeName","src":"5521:4:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":9821,"nodeType":"VariableDeclarationStatement","src":"5521:12:35"},{"assignments":[9823],"declarations":[{"constant":false,"id":9823,"mutability":"mutable","name":"returnSize","nameLocation":"5547:10:35","nodeType":"VariableDeclaration","scope":9839,"src":"5539:18:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9822,"name":"uint256","nodeType":"ElementaryTypeName","src":"5539:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9824,"nodeType":"VariableDeclarationStatement","src":"5539:18:35"},{"assignments":[9826],"declarations":[{"constant":false,"id":9826,"mutability":"mutable","name":"returnValue","nameLocation":"5571:11:35","nodeType":"VariableDeclaration","scope":9839,"src":"5563:19:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9825,"name":"uint256","nodeType":"ElementaryTypeName","src":"5563:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9827,"nodeType":"VariableDeclarationStatement","src":"5563:19:35"},{"AST":{"nativeSrc":"5665:662:35","nodeType":"YulBlock","src":"5665:662:35","statements":[{"nativeSrc":"6161:93:35","nodeType":"YulAssignment","src":"6161:93:35","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"6183:3:35","nodeType":"YulIdentifier","src":"6183:3:35"},"nativeSrc":"6183:5:35","nodeType":"YulFunctionCall","src":"6183:5:35"},{"name":"target","nativeSrc":"6190:6:35","nodeType":"YulIdentifier","src":"6190:6:35"},{"arguments":[{"name":"encodedParams","nativeSrc":"6202:13:35","nodeType":"YulIdentifier","src":"6202:13:35"},{"kind":"number","nativeSrc":"6217:4:35","nodeType":"YulLiteral","src":"6217:4:35","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6198:3:35","nodeType":"YulIdentifier","src":"6198:3:35"},"nativeSrc":"6198:24:35","nodeType":"YulFunctionCall","src":"6198:24:35"},{"arguments":[{"name":"encodedParams","nativeSrc":"6230:13:35","nodeType":"YulIdentifier","src":"6230:13:35"}],"functionName":{"name":"mload","nativeSrc":"6224:5:35","nodeType":"YulIdentifier","src":"6224:5:35"},"nativeSrc":"6224:20:35","nodeType":"YulFunctionCall","src":"6224:20:35"},{"kind":"number","nativeSrc":"6246:1:35","nodeType":"YulLiteral","src":"6246:1:35","type":"","value":"0"},{"kind":"number","nativeSrc":"6249:4:35","nodeType":"YulLiteral","src":"6249:4:35","type":"","value":"0x20"}],"functionName":{"name":"staticcall","nativeSrc":"6172:10:35","nodeType":"YulIdentifier","src":"6172:10:35"},"nativeSrc":"6172:82:35","nodeType":"YulFunctionCall","src":"6172:82:35"},"variableNames":[{"name":"success","nativeSrc":"6161:7:35","nodeType":"YulIdentifier","src":"6161:7:35"}]},{"nativeSrc":"6261:30:35","nodeType":"YulAssignment","src":"6261:30:35","value":{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"6275:14:35","nodeType":"YulIdentifier","src":"6275:14:35"},"nativeSrc":"6275:16:35","nodeType":"YulFunctionCall","src":"6275:16:35"},"variableNames":[{"name":"returnSize","nativeSrc":"6261:10:35","nodeType":"YulIdentifier","src":"6261:10:35"}]},{"nativeSrc":"6298:23:35","nodeType":"YulAssignment","src":"6298:23:35","value":{"arguments":[{"kind":"number","nativeSrc":"6319:1:35","nodeType":"YulLiteral","src":"6319:1:35","type":"","value":"0"}],"functionName":{"name":"mload","nativeSrc":"6313:5:35","nodeType":"YulIdentifier","src":"6313:5:35"},"nativeSrc":"6313:8:35","nodeType":"YulFunctionCall","src":"6313:8:35"},"variableNames":[{"name":"returnValue","nativeSrc":"6298:11:35","nodeType":"YulIdentifier","src":"6298:11:35"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":9807,"isOffset":false,"isSlot":false,"src":"6202:13:35","valueSize":1},{"declaration":9807,"isOffset":false,"isSlot":false,"src":"6230:13:35","valueSize":1},{"declaration":9823,"isOffset":false,"isSlot":false,"src":"6261:10:35","valueSize":1},{"declaration":9826,"isOffset":false,"isSlot":false,"src":"6298:11:35","valueSize":1},{"declaration":9820,"isOffset":false,"isSlot":false,"src":"6161:7:35","valueSize":1},{"declaration":9801,"isOffset":false,"isSlot":false,"src":"6190:6:35","valueSize":1}],"flags":["memory-safe"],"id":9828,"nodeType":"InlineAssembly","src":"5640:687:35"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9837,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9829,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9820,"src":"6340:7:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9832,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9830,"name":"returnSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9823,"src":"6351:10:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30783230","id":9831,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6365:4:35","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"src":"6351:18:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6340:29:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9836,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9834,"name":"returnValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9826,"src":"6373:11:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9835,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6387:1:35","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6373:15:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6340:48:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":9805,"id":9838,"nodeType":"Return","src":"6333:55:35"}]},"documentation":{"id":9799,"nodeType":"StructuredDocumentation","src":"5078:260:35","text":" @dev Returns whether the target trusts this forwarder.\n This function performs a static call to the target contract calling the\n {ERC2771Context-isTrustedForwarder} function.\n Copied from ERC2771Forwarder.sol (OZ-contracts)"},"id":9840,"implemented":true,"kind":"function","modifiers":[],"name":"_isTrustedByTarget","nameLocation":"5350:18:35","nodeType":"FunctionDefinition","parameters":{"id":9802,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9801,"mutability":"mutable","name":"target","nameLocation":"5377:6:35","nodeType":"VariableDeclaration","scope":9840,"src":"5369:14:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9800,"name":"address","nodeType":"ElementaryTypeName","src":"5369:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5368:16:35"},"returnParameters":{"id":9805,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9804,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9840,"src":"5407:4:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9803,"name":"bool","nodeType":"ElementaryTypeName","src":"5407:4:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5406:6:35"},"scope":9893,"src":"5341:1052:35","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":9855,"nodeType":"Block","src":"6514:55:35","statements":[{"expression":{"arguments":[{"arguments":[{"id":9851,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"6558:4:35","typeDescriptions":{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$9893","typeString":"contract ERC2771ForwarderAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$9893","typeString":"contract ERC2771ForwarderAccount"}],"id":9850,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6550:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9849,"name":"address","nodeType":"ElementaryTypeName","src":"6550:7:35","typeDescriptions":{}}},"id":9852,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6550:13:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9846,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[9509],"referencedDeclaration":9509,"src":"6527:10:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$909_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":9847,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6527:12:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"id":9848,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6540:9:35","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":1001,"src":"6527:22:35","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":9853,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6527:37:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9845,"id":9854,"nodeType":"Return","src":"6520:44:35"}]},"documentation":{"id":9841,"nodeType":"StructuredDocumentation","src":"6397:62:35","text":" check current account deposit in the entryPoint"},"functionSelector":"c399ec88","id":9856,"implemented":true,"kind":"function","modifiers":[],"name":"getDeposit","nameLocation":"6471:10:35","nodeType":"FunctionDefinition","parameters":{"id":9842,"nodeType":"ParameterList","parameters":[],"src":"6481:2:35"},"returnParameters":{"id":9845,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9844,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9856,"src":"6505:7:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9843,"name":"uint256","nodeType":"ElementaryTypeName","src":"6505:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6504:9:35"},"scope":9893,"src":"6462:107:35","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":9872,"nodeType":"Block","src":"6681:66:35","statements":[{"expression":{"arguments":[{"arguments":[{"id":9868,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"6736:4:35","typeDescriptions":{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$9893","typeString":"contract ERC2771ForwarderAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$9893","typeString":"contract ERC2771ForwarderAccount"}],"id":9867,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6728:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9866,"name":"address","nodeType":"ElementaryTypeName","src":"6728:7:35","typeDescriptions":{}}},"id":9869,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6728:13:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9860,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[9509],"referencedDeclaration":9509,"src":"6687:10:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$909_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":9861,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6687:12:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"id":9862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6700:9:35","memberName":"depositTo","nodeType":"MemberAccess","referencedDeclaration":1007,"src":"6687:22:35","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_address_$returns$__$","typeString":"function (address) payable external"}},"id":9865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"expression":{"id":9863,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6717:3:35","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":9864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6721:5:35","memberName":"value","nodeType":"MemberAccess","src":"6717:9:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"6687:40:35","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_address_$returns$__$value","typeString":"function (address) payable external"}},"id":9870,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6687:55:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9871,"nodeType":"ExpressionStatement","src":"6687:55:35"}]},"documentation":{"id":9857,"nodeType":"StructuredDocumentation","src":"6573:68:35","text":" deposit more funds for this account in the entryPoint"},"functionSelector":"4a58db19","id":9873,"implemented":true,"kind":"function","modifiers":[],"name":"addDeposit","nameLocation":"6653:10:35","nodeType":"FunctionDefinition","parameters":{"id":9858,"nodeType":"ParameterList","parameters":[],"src":"6663:2:35"},"returnParameters":{"id":9859,"nodeType":"ParameterList","parameters":[],"src":"6681:0:35"},"scope":9893,"src":"6644:103:35","stateMutability":"payable","virtual":false,"visibility":"public"},{"body":{"id":9891,"nodeType":"Block","src":"6994:59:35","statements":[{"expression":{"arguments":[{"id":9887,"name":"withdrawAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9876,"src":"7024:15:35","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},{"id":9888,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9878,"src":"7041:6:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9884,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[9509],"referencedDeclaration":9509,"src":"7000:10:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$909_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":9885,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7000:12:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$909","typeString":"contract IEntryPoint"}},"id":9886,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7013:10:35","memberName":"withdrawTo","nodeType":"MemberAccess","referencedDeclaration":1031,"src":"7000:23:35","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_payable_$_t_uint256_$returns$__$","typeString":"function (address payable,uint256) external"}},"id":9889,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7000:48:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9890,"nodeType":"ExpressionStatement","src":"7000:48:35"}]},"documentation":{"id":9874,"nodeType":"StructuredDocumentation","src":"6751:133:35","text":" withdraw value from the account's deposit\n @param withdrawAddress target to send to\n @param amount to withdraw"},"functionSelector":"4d44560d","id":9892,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":9881,"name":"WITHDRAW_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9476,"src":"6979:13:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":9882,"kind":"modifierInvocation","modifierName":{"id":9880,"name":"onlyRole","nameLocations":["6970:8:35"],"nodeType":"IdentifierPath","referencedDeclaration":1095,"src":"6970:8:35"},"nodeType":"ModifierInvocation","src":"6970:23:35"}],"name":"withdrawDepositTo","nameLocation":"6896:17:35","nodeType":"FunctionDefinition","parameters":{"id":9879,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9876,"mutability":"mutable","name":"withdrawAddress","nameLocation":"6930:15:35","nodeType":"VariableDeclaration","scope":9892,"src":"6914:31:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":9875,"name":"address","nodeType":"ElementaryTypeName","src":"6914:15:35","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":9878,"mutability":"mutable","name":"amount","nameLocation":"6955:6:35","nodeType":"VariableDeclaration","scope":9892,"src":"6947:14:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9877,"name":"uint256","nodeType":"ElementaryTypeName","src":"6947:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6913:49:35"},"returnParameters":{"id":9883,"nodeType":"ParameterList","parameters":[],"src":"6994:0:35"},"scope":9893,"src":"6887:166:35","stateMutability":"nonpayable","virtual":false,"visibility":"public"}],"scope":9894,"src":"1158:5897:35","usedErrors":[1360,1363,2818,3108,3111,4470,4475,4480,9490,9492,9496,9498],"usedEvents":[1372,1381,1390]}],"src":"39:7017:35"},"id":35},"contracts/dependencies/AccessManager.sol":{"ast":{"absolutePath":"contracts/dependencies/AccessManager.sol","exportedSymbols":{"AccessManager":[11824],"Address":[3068],"Context":[3098],"FrozenTime":[12098],"IAccessManaged":[1473],"IAccessManager":[1905],"Math":[6523],"Multicall":[3207],"Time":[8706]},"id":11825,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9895,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"116:24:36"},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","file":"@openzeppelin/contracts/access/manager/IAccessManager.sol","id":9897,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11825,"sourceUnit":1906,"src":"142:89:36","symbolAliases":[{"foreign":{"id":9896,"name":"IAccessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1905,"src":"150:14:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManaged.sol","file":"@openzeppelin/contracts/access/manager/IAccessManaged.sol","id":9899,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11825,"sourceUnit":1474,"src":"232:89:36","symbolAliases":[{"foreign":{"id":9898,"name":"IAccessManaged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1473,"src":"240:14:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"@openzeppelin/contracts/utils/Address.sol","id":9901,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11825,"sourceUnit":3069,"src":"322:66:36","symbolAliases":[{"foreign":{"id":9900,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3068,"src":"330:7:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"@openzeppelin/contracts/utils/Context.sol","id":9903,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11825,"sourceUnit":3099,"src":"389:66:36","symbolAliases":[{"foreign":{"id":9902,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3098,"src":"397:7:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Multicall.sol","file":"@openzeppelin/contracts/utils/Multicall.sol","id":9905,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11825,"sourceUnit":3208,"src":"456:70:36","symbolAliases":[{"foreign":{"id":9904,"name":"Multicall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3207,"src":"464:9:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"@openzeppelin/contracts/utils/math/Math.sol","id":9907,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11825,"sourceUnit":6524,"src":"527:65:36","symbolAliases":[{"foreign":{"id":9906,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6523,"src":"535:4:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","file":"@openzeppelin/contracts/utils/types/Time.sol","id":9909,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11825,"sourceUnit":8707,"src":"593:66:36","symbolAliases":[{"foreign":{"id":9908,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8706,"src":"601:4:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/dependencies/FrozenTime.sol","file":"./FrozenTime.sol","id":9911,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11825,"sourceUnit":12099,"src":"660:44:36","symbolAliases":[{"foreign":{"id":9910,"name":"FrozenTime","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12098,"src":"668:10:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":9913,"name":"Context","nameLocations":["3957:7:36"],"nodeType":"IdentifierPath","referencedDeclaration":3098,"src":"3957:7:36"},"id":9914,"nodeType":"InheritanceSpecifier","src":"3957:7:36"},{"baseName":{"id":9915,"name":"Multicall","nameLocations":["3966:9:36"],"nodeType":"IdentifierPath","referencedDeclaration":3207,"src":"3966:9:36"},"id":9916,"nodeType":"InheritanceSpecifier","src":"3966:9:36"},{"baseName":{"id":9917,"name":"IAccessManager","nameLocations":["3977:14:36"],"nodeType":"IdentifierPath","referencedDeclaration":1905,"src":"3977:14:36"},"id":9918,"nodeType":"InheritanceSpecifier","src":"3977:14:36"}],"canonicalName":"AccessManager","contractDependencies":[],"contractKind":"contract","documentation":{"id":9912,"nodeType":"StructuredDocumentation","src":"706:3224:36","text":" @dev AccessManager is a central contract to store the permissions of a system.\n A smart contract under the control of an AccessManager instance is known as a target, and will inherit from the\n {AccessManaged} contract, be connected to this contract as its manager and implement the {AccessManaged-restricted}\n modifier on a set of functions selected to be permissioned. Note that any function without this setup won't be\n effectively restricted.\n The restriction rules for such functions are defined in terms of \"roles\" identified by an `uint64` and scoped\n by target (`address`) and function selectors (`bytes4`). These roles are stored in this contract and can be\n configured by admins (`ADMIN_ROLE` members) after a delay (see {getTargetAdminDelay}).\n For each target contract, admins can configure the following without any delay:\n * The target's {AccessManaged-authority} via {updateAuthority}.\n * Close or open a target via {setTargetClosed} keeping the permissions intact.\n * The roles that are allowed (or disallowed) to call a given function (identified by its selector) through {setTargetFunctionRole}.\n By default every address is member of the `PUBLIC_ROLE` and every target function is restricted to the `ADMIN_ROLE` until configured otherwise.\n Additionally, each role has the following configuration options restricted to this manager's admins:\n * A role's admin role via {setRoleAdmin} who can grant or revoke roles.\n * A role's guardian role via {setRoleGuardian} who's allowed to cancel operations.\n * A delay in which a role takes effect after being granted through {setGrantDelay}.\n * A delay of any target's admin action via {setTargetAdminDelay}.\n * A role label for discoverability purposes with {labelRole}.\n Any account can be added and removed into any number of these roles by using the {grantRole} and {revokeRole} functions\n restricted to each role's admin (see {getRoleAdmin}).\n Since all the permissions of the managed system can be modified by the admins of this instance, it is expected that\n they will be highly secured (e.g., a multisig or a well-configured DAO).\n NOTE: This contract implements a form of the {IAuthority} interface, but {canCall} has additional return data so it\n doesn't inherit `IAuthority`. It is however compatible with the `IAuthority` interface since the first 32 bytes of\n the return data are a boolean as expected by that interface.\n NOTE: Systems that implement other access control mechanisms (for example using {Ownable}) can be paired with an\n {AccessManager} by transferring permissions (ownership in the case of {Ownable}) directly to the {AccessManager}.\n Users will be able to interact with these contracts through the {execute} function, following the access rules\n registered in the {AccessManager}. Keep in mind that in that context, the msg.sender seen by restricted functions\n will be {AccessManager} itself.\n WARNING: When granting permissions over an {Ownable} or {AccessControl} contract to an {AccessManager}, be very\n mindful of the danger associated with functions such as {Ownable-renounceOwnership} or\n {AccessControl-renounceRole}."},"fullyImplemented":true,"id":11824,"linearizedBaseContracts":[11824,1905,3207,3098],"name":"AccessManager","nameLocation":"3940:13:36","nodeType":"ContractDefinition","nodes":[{"global":false,"id":9920,"libraryName":{"id":9919,"name":"Time","nameLocations":["4004:4:36"],"nodeType":"IdentifierPath","referencedDeclaration":8706,"src":"4004:4:36"},"nodeType":"UsingForDirective","src":"3998:17:36"},{"canonicalName":"AccessManager.TargetConfig","id":9930,"members":[{"constant":false,"id":9924,"mutability":"mutable","name":"allowedRoles","nameLocation":"4157:12:36","nodeType":"VariableDeclaration","scope":9930,"src":"4115:54:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_uint64_$","typeString":"mapping(bytes4 => uint64)"},"typeName":{"id":9923,"keyName":"selector","keyNameLocation":"4130:8:36","keyType":{"id":9921,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4123:6:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"Mapping","src":"4115:41:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_uint64_$","typeString":"mapping(bytes4 => uint64)"},"valueName":"roleId","valueNameLocation":"4149:6:36","valueType":{"id":9922,"name":"uint64","nodeType":"ElementaryTypeName","src":"4142:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}},"visibility":"internal"},{"constant":false,"id":9927,"mutability":"mutable","name":"adminDelay","nameLocation":"4190:10:36","nodeType":"VariableDeclaration","scope":9930,"src":"4179:21:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"},"typeName":{"id":9926,"nodeType":"UserDefinedTypeName","pathNode":{"id":9925,"name":"Time.Delay","nameLocations":["4179:4:36","4184:5:36"],"nodeType":"IdentifierPath","referencedDeclaration":8469,"src":"4179:10:36"},"referencedDeclaration":8469,"src":"4179:10:36","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":9929,"mutability":"mutable","name":"closed","nameLocation":"4215:6:36","nodeType":"VariableDeclaration","scope":9930,"src":"4210:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9928,"name":"bool","nodeType":"ElementaryTypeName","src":"4210:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"TargetConfig","nameLocation":"4092:12:36","nodeType":"StructDefinition","scope":11824,"src":"4085:143:36","visibility":"public"},{"canonicalName":"AccessManager.Access","id":9936,"members":[{"constant":false,"id":9932,"mutability":"mutable","name":"since","nameLocation":"4523:5:36","nodeType":"VariableDeclaration","scope":9936,"src":"4516:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":9931,"name":"uint48","nodeType":"ElementaryTypeName","src":"4516:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":9935,"mutability":"mutable","name":"delay","nameLocation":"4629:5:36","nodeType":"VariableDeclaration","scope":9936,"src":"4618:16:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"},"typeName":{"id":9934,"nodeType":"UserDefinedTypeName","pathNode":{"id":9933,"name":"Time.Delay","nameLocations":["4618:4:36","4623:5:36"],"nodeType":"IdentifierPath","referencedDeclaration":8469,"src":"4618:10:36"},"referencedDeclaration":8469,"src":"4618:10:36","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"visibility":"internal"}],"name":"Access","nameLocation":"4347:6:36","nodeType":"StructDefinition","scope":11824,"src":"4340:301:36","visibility":"public"},{"canonicalName":"AccessManager.Role","id":9949,"members":[{"constant":false,"id":9941,"mutability":"mutable","name":"members","nameLocation":"4792:7:36","nodeType":"VariableDeclaration","scope":9949,"src":"4753:46:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$9936_storage_$","typeString":"mapping(address => struct AccessManager.Access)"},"typeName":{"id":9940,"keyName":"user","keyNameLocation":"4769:4:36","keyType":{"id":9937,"name":"address","nodeType":"ElementaryTypeName","src":"4761:7:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"4753:38:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$9936_storage_$","typeString":"mapping(address => struct AccessManager.Access)"},"valueName":"access","valueNameLocation":"4784:6:36","valueType":{"id":9939,"nodeType":"UserDefinedTypeName","pathNode":{"id":9938,"name":"Access","nameLocations":["4777:6:36"],"nodeType":"IdentifierPath","referencedDeclaration":9936,"src":"4777:6:36"},"referencedDeclaration":9936,"src":"4777:6:36","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$9936_storage_ptr","typeString":"struct AccessManager.Access"}}},"visibility":"internal"},{"constant":false,"id":9943,"mutability":"mutable","name":"admin","nameLocation":"4870:5:36","nodeType":"VariableDeclaration","scope":9949,"src":"4863:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9942,"name":"uint64","nodeType":"ElementaryTypeName","src":"4863:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9945,"mutability":"mutable","name":"guardian","nameLocation":"4979:8:36","nodeType":"VariableDeclaration","scope":9949,"src":"4972:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9944,"name":"uint64","nodeType":"ElementaryTypeName","src":"4972:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9948,"mutability":"mutable","name":"grantDelay","nameLocation":"5077:10:36","nodeType":"VariableDeclaration","scope":9949,"src":"5066:21:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"},"typeName":{"id":9947,"nodeType":"UserDefinedTypeName","pathNode":{"id":9946,"name":"Time.Delay","nameLocations":["5066:4:36","5071:5:36"],"nodeType":"IdentifierPath","referencedDeclaration":8469,"src":"5066:10:36"},"referencedDeclaration":8469,"src":"5066:10:36","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"visibility":"internal"}],"name":"Role","nameLocation":"4706:4:36","nodeType":"StructDefinition","scope":11824,"src":"4699:395:36","visibility":"public"},{"canonicalName":"AccessManager.Schedule","id":9954,"members":[{"constant":false,"id":9951,"mutability":"mutable","name":"timepoint","nameLocation":"5299:9:36","nodeType":"VariableDeclaration","scope":9954,"src":"5292:16:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":9950,"name":"uint48","nodeType":"ElementaryTypeName","src":"5292:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":9953,"mutability":"mutable","name":"nonce","nameLocation":"5410:5:36","nodeType":"VariableDeclaration","scope":9954,"src":"5403:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9952,"name":"uint32","nodeType":"ElementaryTypeName","src":"5403:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"name":"Schedule","nameLocation":"5215:8:36","nodeType":"StructDefinition","scope":11824,"src":"5208:214:36","visibility":"public"},{"constant":true,"documentation":{"id":9955,"nodeType":"StructuredDocumentation","src":"5428:173:36","text":" @dev The identifier of the admin role. Required to perform most configuration operations including\n other roles' management and target restrictions."},"functionSelector":"75b238fc","id":9962,"mutability":"constant","name":"ADMIN_ROLE","nameLocation":"5629:10:36","nodeType":"VariableDeclaration","scope":11824,"src":"5606:52:36","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9956,"name":"uint64","nodeType":"ElementaryTypeName","src":"5606:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"value":{"expression":{"arguments":[{"id":9959,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5647:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":9958,"name":"uint64","nodeType":"ElementaryTypeName","src":"5647:6:36","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":9957,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5642:4:36","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":9960,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5642:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":9961,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5655:3:36","memberName":"min","nodeType":"MemberAccess","src":"5642:16:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"public"},{"constant":true,"documentation":{"id":9963,"nodeType":"StructuredDocumentation","src":"5670:112:36","text":" @dev The identifier of the public role. Automatically granted to all addresses with no delay."},"functionSelector":"3ca7c02a","id":9970,"mutability":"constant","name":"PUBLIC_ROLE","nameLocation":"5810:11:36","nodeType":"VariableDeclaration","scope":11824,"src":"5787:53:36","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9964,"name":"uint64","nodeType":"ElementaryTypeName","src":"5787:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"value":{"expression":{"arguments":[{"id":9967,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5829:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":9966,"name":"uint64","nodeType":"ElementaryTypeName","src":"5829:6:36","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":9965,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5824:4:36","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":9968,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5824:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":9969,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5837:3:36","memberName":"max","nodeType":"MemberAccess","src":"5824:16:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"public"},{"constant":false,"id":9975,"mutability":"mutable","name":"_targets","nameLocation":"5911:8:36","nodeType":"VariableDeclaration","scope":11824,"src":"5858:61:36","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$9930_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig)"},"typeName":{"id":9974,"keyName":"target","keyNameLocation":"5874:6:36","keyType":{"id":9971,"name":"address","nodeType":"ElementaryTypeName","src":"5866:7:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"5858:44:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$9930_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig)"},"valueName":"mode","valueNameLocation":"5897:4:36","valueType":{"id":9973,"nodeType":"UserDefinedTypeName","pathNode":{"id":9972,"name":"TargetConfig","nameLocations":["5884:12:36"],"nodeType":"IdentifierPath","referencedDeclaration":9930,"src":"5884:12:36"},"referencedDeclaration":9930,"src":"5884:12:36","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$9930_storage_ptr","typeString":"struct AccessManager.TargetConfig"}}},"visibility":"private"},{"constant":false,"id":9980,"mutability":"mutable","name":"_roles","nameLocation":"5964:6:36","nodeType":"VariableDeclaration","scope":11824,"src":"5925:45:36","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$9949_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role)"},"typeName":{"id":9979,"keyName":"roleId","keyNameLocation":"5940:6:36","keyType":{"id":9976,"name":"uint64","nodeType":"ElementaryTypeName","src":"5933:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Mapping","src":"5925:30:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$9949_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":9978,"nodeType":"UserDefinedTypeName","pathNode":{"id":9977,"name":"Role","nameLocations":["5950:4:36"],"nodeType":"IdentifierPath","referencedDeclaration":9949,"src":"5950:4:36"},"referencedDeclaration":9949,"src":"5950:4:36","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$9949_storage_ptr","typeString":"struct AccessManager.Role"}}},"visibility":"private"},{"constant":false,"id":9985,"mutability":"mutable","name":"_schedules","nameLocation":"6025:10:36","nodeType":"VariableDeclaration","scope":11824,"src":"5976:59:36","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$9954_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule)"},"typeName":{"id":9984,"keyName":"operationId","keyNameLocation":"5992:11:36","keyType":{"id":9981,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5984:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"5976:40:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$9954_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":9983,"nodeType":"UserDefinedTypeName","pathNode":{"id":9982,"name":"Schedule","nameLocations":["6007:8:36"],"nodeType":"IdentifierPath","referencedDeclaration":9954,"src":"6007:8:36"},"referencedDeclaration":9954,"src":"6007:8:36","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$9954_storage_ptr","typeString":"struct AccessManager.Schedule"}}},"visibility":"private"},{"constant":false,"id":9987,"mutability":"mutable","name":"_executionId","nameLocation":"6209:12:36","nodeType":"VariableDeclaration","scope":11824,"src":"6193:28:36","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9986,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6193:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":9989,"mutability":"mutable","name":"_isFrozen","nameLocation":"6243:9:36","nodeType":"VariableDeclaration","scope":11824,"src":"6228:24:36","stateVariable":true,"storageLocation":"transient","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9988,"name":"bool","nodeType":"ElementaryTypeName","src":"6228:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"body":{"id":9996,"nodeType":"Block","src":"6467:46:36","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9992,"name":"_checkAuthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11451,"src":"6477:16:36","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":9993,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6477:18:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9994,"nodeType":"ExpressionStatement","src":"6477:18:36"},{"id":9995,"nodeType":"PlaceholderStatement","src":"6505:1:36"}]},"documentation":{"id":9990,"nodeType":"StructuredDocumentation","src":"6259:177:36","text":" @dev Check that the caller is authorized to perform the operation.\n See {AccessManager} description for a detailed breakdown of the authorization logic."},"id":9997,"name":"onlyAuthorized","nameLocation":"6450:14:36","nodeType":"ModifierDefinition","parameters":{"id":9991,"nodeType":"ParameterList","parameters":[],"src":"6464:2:36"},"src":"6441:72:36","virtual":false,"visibility":"internal"},{"body":{"id":10008,"nodeType":"Block","src":"6541:71:36","statements":[{"expression":{"id":10001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9999,"name":"_isFrozen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9989,"src":"6551:9:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":10000,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6563:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6551:16:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10002,"nodeType":"ExpressionStatement","src":"6551:16:36"},{"id":10003,"nodeType":"PlaceholderStatement","src":"6577:1:36"},{"expression":{"id":10006,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10004,"name":"_isFrozen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9989,"src":"6588:9:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":10005,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6600:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"6588:17:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10007,"nodeType":"ExpressionStatement","src":"6588:17:36"}]},"id":10009,"name":"frozenTime","nameLocation":"6528:10:36","nodeType":"ModifierDefinition","parameters":{"id":9998,"nodeType":"ParameterList","parameters":[],"src":"6538:2:36"},"src":"6519:93:36","virtual":false,"visibility":"internal"},{"body":{"id":10036,"nodeType":"Block","src":"6652:249:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":10019,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10014,"name":"initialAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10011,"src":"6666:12:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":10017,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6690:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10016,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6682:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10015,"name":"address","nodeType":"ElementaryTypeName","src":"6682:7:36","typeDescriptions":{}}},"id":10018,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6682:10:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6666:26:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10028,"nodeType":"IfStatement","src":"6662:108:36","trueBody":{"id":10027,"nodeType":"Block","src":"6694:76:36","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":10023,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6756:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10022,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6748:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10021,"name":"address","nodeType":"ElementaryTypeName","src":"6748:7:36","typeDescriptions":{}}},"id":10024,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6748:10:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10020,"name":"AccessManagerInvalidInitialAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1635,"src":"6715:32:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":10025,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6715:44:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10026,"nodeType":"RevertStatement","src":"6708:51:36"}]}},{"expression":{"arguments":[{"id":10030,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9962,"src":"6863:10:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":10031,"name":"initialAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10011,"src":"6875:12:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":10032,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6889:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":10033,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6892:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10029,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10567,"src":"6852:10:36","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_address_$_t_uint32_$_t_uint32_$returns$_t_bool_$","typeString":"function (uint64,address,uint32,uint32) returns (bool)"}},"id":10034,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6852:42:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10035,"nodeType":"ExpressionStatement","src":"6852:42:36"}]},"id":10037,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":10012,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10011,"mutability":"mutable","name":"initialAdmin","nameLocation":"6638:12:36","nodeType":"VariableDeclaration","scope":10037,"src":"6630:20:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10010,"name":"address","nodeType":"ElementaryTypeName","src":"6630:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6629:22:36"},"returnParameters":{"id":10013,"nodeType":"ParameterList","parameters":[],"src":"6652:0:36"},"scope":11824,"src":"6618:283:36","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[1649],"body":{"id":10103,"nodeType":"Block","src":"7217:647:36","statements":[{"condition":{"arguments":[{"id":10052,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10042,"src":"7246:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10051,"name":"isTargetClosed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10136,"src":"7231:14:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":10053,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7231:22:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":10064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10059,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10040,"src":"7307:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":10062,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7325:4:36","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}],"id":10061,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7317:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10060,"name":"address","nodeType":"ElementaryTypeName","src":"7317:7:36","typeDescriptions":{}}},"id":10063,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7317:13:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7307:23:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":10100,"nodeType":"Block","src":"7624:234:36","statements":[{"assignments":[10074],"declarations":[{"constant":false,"id":10074,"mutability":"mutable","name":"roleId","nameLocation":"7645:6:36","nodeType":"VariableDeclaration","scope":10100,"src":"7638:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10073,"name":"uint64","nodeType":"ElementaryTypeName","src":"7638:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":10079,"initialValue":{"arguments":[{"id":10076,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10042,"src":"7676:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10077,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10044,"src":"7684:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":10075,"name":"getTargetFunctionRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10154,"src":"7654:21:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_uint64_$","typeString":"function (address,bytes4) view returns (uint64)"}},"id":10078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7654:39:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"7638:55:36"},{"assignments":[10081,10083],"declarations":[{"constant":false,"id":10081,"mutability":"mutable","name":"isMember","nameLocation":"7713:8:36","nodeType":"VariableDeclaration","scope":10100,"src":"7708:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10080,"name":"bool","nodeType":"ElementaryTypeName","src":"7708:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":10083,"mutability":"mutable","name":"currentDelay","nameLocation":"7730:12:36","nodeType":"VariableDeclaration","scope":10100,"src":"7723:19:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10082,"name":"uint32","nodeType":"ElementaryTypeName","src":"7723:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":10088,"initialValue":{"arguments":[{"id":10085,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10074,"src":"7754:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":10086,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10040,"src":"7762:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":10084,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10332,"src":"7746:7:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_bool_$_t_uint32_$","typeString":"function (uint64,address) view returns (bool,uint32)"}},"id":10087,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7746:23:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"7707:62:36"},{"expression":{"condition":{"id":10089,"name":"isMember","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10081,"src":"7790:8:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"hexValue":"66616c7365","id":10095,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7838:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":10096,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7845:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":10097,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"7837:10:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"id":10098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"7790:57:36","trueExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":10092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10090,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10083,"src":"7802:12:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":10091,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7818:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7802:17:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":10093,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10083,"src":"7821:12:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":10094,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7801:33:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":10050,"id":10099,"nodeType":"Return","src":"7783:64:36"}]},"id":10101,"nodeType":"IfStatement","src":"7303:555:36","trueBody":{"id":10072,"nodeType":"Block","src":"7332:286:36","statements":[{"expression":{"components":[{"arguments":[{"id":10066,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10042,"src":"7586:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10067,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10044,"src":"7594:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":10065,"name":"_isExecuting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11769,"src":"7573:12:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":10068,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7573:30:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"30","id":10069,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7605:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":10070,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7572:35:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":10050,"id":10071,"nodeType":"Return","src":"7565:42:36"}]}},"id":10102,"nodeType":"IfStatement","src":"7227:631:36","trueBody":{"id":10058,"nodeType":"Block","src":"7255:42:36","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":10054,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7277:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":10055,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7284:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":10056,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"7276:10:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":10050,"id":10057,"nodeType":"Return","src":"7269:17:36"}]}}]},"documentation":{"id":10038,"nodeType":"StructuredDocumentation","src":"7027:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"b7009613","id":10104,"implemented":true,"kind":"function","modifiers":[],"name":"canCall","nameLocation":"7071:7:36","nodeType":"FunctionDefinition","parameters":{"id":10045,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10040,"mutability":"mutable","name":"caller","nameLocation":"7096:6:36","nodeType":"VariableDeclaration","scope":10104,"src":"7088:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10039,"name":"address","nodeType":"ElementaryTypeName","src":"7088:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10042,"mutability":"mutable","name":"target","nameLocation":"7120:6:36","nodeType":"VariableDeclaration","scope":10104,"src":"7112:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10041,"name":"address","nodeType":"ElementaryTypeName","src":"7112:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10044,"mutability":"mutable","name":"selector","nameLocation":"7143:8:36","nodeType":"VariableDeclaration","scope":10104,"src":"7136:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":10043,"name":"bytes4","nodeType":"ElementaryTypeName","src":"7136:6:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"7078:79:36"},"returnParameters":{"id":10050,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10047,"mutability":"mutable","name":"immediate","nameLocation":"7192:9:36","nodeType":"VariableDeclaration","scope":10104,"src":"7187:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10046,"name":"bool","nodeType":"ElementaryTypeName","src":"7187:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":10049,"mutability":"mutable","name":"delay","nameLocation":"7210:5:36","nodeType":"VariableDeclaration","scope":10104,"src":"7203:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10048,"name":"uint32","nodeType":"ElementaryTypeName","src":"7203:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"7186:30:36"},"scope":11824,"src":"7062:802:36","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1655],"body":{"id":10112,"nodeType":"Block","src":"7964:31:36","statements":[{"expression":{"hexValue":"31","id":10110,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7981:7:36","subdenomination":"weeks","typeDescriptions":{"typeIdentifier":"t_rational_604800_by_1","typeString":"int_const 604800"},"value":"1"},"functionReturnParameters":10109,"id":10111,"nodeType":"Return","src":"7974:14:36"}]},"documentation":{"id":10105,"nodeType":"StructuredDocumentation","src":"7870:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"4665096d","id":10113,"implemented":true,"kind":"function","modifiers":[],"name":"expiration","nameLocation":"7914:10:36","nodeType":"FunctionDefinition","parameters":{"id":10106,"nodeType":"ParameterList","parameters":[],"src":"7924:2:36"},"returnParameters":{"id":10109,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10108,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10113,"src":"7956:6:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10107,"name":"uint32","nodeType":"ElementaryTypeName","src":"7956:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"7955:8:36"},"scope":11824,"src":"7905:90:36","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1661],"body":{"id":10121,"nodeType":"Block","src":"8095:30:36","statements":[{"expression":{"hexValue":"35","id":10119,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8112:6:36","subdenomination":"days","typeDescriptions":{"typeIdentifier":"t_rational_432000_by_1","typeString":"int_const 432000"},"value":"5"},"functionReturnParameters":10118,"id":10120,"nodeType":"Return","src":"8105:13:36"}]},"documentation":{"id":10114,"nodeType":"StructuredDocumentation","src":"8001:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"cc1b6c81","id":10122,"implemented":true,"kind":"function","modifiers":[],"name":"minSetback","nameLocation":"8045:10:36","nodeType":"FunctionDefinition","parameters":{"id":10115,"nodeType":"ParameterList","parameters":[],"src":"8055:2:36"},"returnParameters":{"id":10118,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10117,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10122,"src":"8087:6:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10116,"name":"uint32","nodeType":"ElementaryTypeName","src":"8087:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8086:8:36"},"scope":11824,"src":"8036:89:36","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1669],"body":{"id":10135,"nodeType":"Block","src":"8241:47:36","statements":[{"expression":{"expression":{"baseExpression":{"id":10130,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9975,"src":"8258:8:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$9930_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":10132,"indexExpression":{"id":10131,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10125,"src":"8267:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8258:16:36","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$9930_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":10133,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8275:6:36","memberName":"closed","nodeType":"MemberAccess","referencedDeclaration":9929,"src":"8258:23:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":10129,"id":10134,"nodeType":"Return","src":"8251:30:36"}]},"documentation":{"id":10123,"nodeType":"StructuredDocumentation","src":"8131:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"a166aa89","id":10136,"implemented":true,"kind":"function","modifiers":[],"name":"isTargetClosed","nameLocation":"8175:14:36","nodeType":"FunctionDefinition","parameters":{"id":10126,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10125,"mutability":"mutable","name":"target","nameLocation":"8198:6:36","nodeType":"VariableDeclaration","scope":10136,"src":"8190:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10124,"name":"address","nodeType":"ElementaryTypeName","src":"8190:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8189:16:36"},"returnParameters":{"id":10129,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10128,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10136,"src":"8235:4:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10127,"name":"bool","nodeType":"ElementaryTypeName","src":"8235:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8234:6:36"},"scope":11824,"src":"8166:122:36","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1679],"body":{"id":10153,"nodeType":"Block","src":"8430:63:36","statements":[{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":10146,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9975,"src":"8447:8:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$9930_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":10148,"indexExpression":{"id":10147,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10139,"src":"8456:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8447:16:36","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$9930_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":10149,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8464:12:36","memberName":"allowedRoles","nodeType":"MemberAccess","referencedDeclaration":9924,"src":"8447:29:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_uint64_$","typeString":"mapping(bytes4 => uint64)"}},"id":10151,"indexExpression":{"id":10150,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10141,"src":"8477:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8447:39:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":10145,"id":10152,"nodeType":"Return","src":"8440:46:36"}]},"documentation":{"id":10137,"nodeType":"StructuredDocumentation","src":"8294:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"6d5115bd","id":10154,"implemented":true,"kind":"function","modifiers":[],"name":"getTargetFunctionRole","nameLocation":"8338:21:36","nodeType":"FunctionDefinition","parameters":{"id":10142,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10139,"mutability":"mutable","name":"target","nameLocation":"8368:6:36","nodeType":"VariableDeclaration","scope":10154,"src":"8360:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10138,"name":"address","nodeType":"ElementaryTypeName","src":"8360:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10141,"mutability":"mutable","name":"selector","nameLocation":"8383:8:36","nodeType":"VariableDeclaration","scope":10154,"src":"8376:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":10140,"name":"bytes4","nodeType":"ElementaryTypeName","src":"8376:6:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"8359:33:36"},"returnParameters":{"id":10145,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10144,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10154,"src":"8422:6:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10143,"name":"uint64","nodeType":"ElementaryTypeName","src":"8422:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8421:8:36"},"scope":11824,"src":"8329:164:36","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1687],"body":{"id":10169,"nodeType":"Block","src":"8616:57:36","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"baseExpression":{"id":10162,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9975,"src":"8633:8:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$9930_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":10164,"indexExpression":{"id":10163,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10157,"src":"8642:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8633:16:36","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$9930_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":10165,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8650:10:36","memberName":"adminDelay","nodeType":"MemberAccess","referencedDeclaration":9927,"src":"8633:27:36","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"id":10166,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8661:3:36","memberName":"get","nodeType":"MemberAccess","referencedDeclaration":8560,"src":"8633:31:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$8469_$returns$_t_uint32_$attached_to$_t_userDefinedValueType$_Delay_$8469_$","typeString":"function (Time.Delay) view returns (uint32)"}},"id":10167,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8633:33:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":10161,"id":10168,"nodeType":"Return","src":"8626:40:36"}]},"documentation":{"id":10155,"nodeType":"StructuredDocumentation","src":"8499:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"4c1da1e2","id":10170,"implemented":true,"kind":"function","modifiers":[],"name":"getTargetAdminDelay","nameLocation":"8543:19:36","nodeType":"FunctionDefinition","parameters":{"id":10158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10157,"mutability":"mutable","name":"target","nameLocation":"8571:6:36","nodeType":"VariableDeclaration","scope":10170,"src":"8563:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10156,"name":"address","nodeType":"ElementaryTypeName","src":"8563:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8562:16:36"},"returnParameters":{"id":10161,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10160,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10170,"src":"8608:6:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10159,"name":"uint32","nodeType":"ElementaryTypeName","src":"8608:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8607:8:36"},"scope":11824,"src":"8534:139:36","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1695],"body":{"id":10183,"nodeType":"Block","src":"8788:44:36","statements":[{"expression":{"expression":{"baseExpression":{"id":10178,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"8805:6:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$9949_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":10180,"indexExpression":{"id":10179,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10173,"src":"8812:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8805:14:36","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$9949_storage","typeString":"struct AccessManager.Role storage ref"}},"id":10181,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8820:5:36","memberName":"admin","nodeType":"MemberAccess","referencedDeclaration":9943,"src":"8805:20:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":10177,"id":10182,"nodeType":"Return","src":"8798:27:36"}]},"documentation":{"id":10171,"nodeType":"StructuredDocumentation","src":"8679:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"530dd456","id":10184,"implemented":true,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"8723:12:36","nodeType":"FunctionDefinition","parameters":{"id":10174,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10173,"mutability":"mutable","name":"roleId","nameLocation":"8743:6:36","nodeType":"VariableDeclaration","scope":10184,"src":"8736:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10172,"name":"uint64","nodeType":"ElementaryTypeName","src":"8736:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8735:15:36"},"returnParameters":{"id":10177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10176,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10184,"src":"8780:6:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10175,"name":"uint64","nodeType":"ElementaryTypeName","src":"8780:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8779:8:36"},"scope":11824,"src":"8714:118:36","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1703],"body":{"id":10197,"nodeType":"Block","src":"8950:47:36","statements":[{"expression":{"expression":{"baseExpression":{"id":10192,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"8967:6:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$9949_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":10194,"indexExpression":{"id":10193,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10187,"src":"8974:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8967:14:36","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$9949_storage","typeString":"struct AccessManager.Role storage ref"}},"id":10195,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8982:8:36","memberName":"guardian","nodeType":"MemberAccess","referencedDeclaration":9945,"src":"8967:23:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":10191,"id":10196,"nodeType":"Return","src":"8960:30:36"}]},"documentation":{"id":10185,"nodeType":"StructuredDocumentation","src":"8838:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"0b0a93ba","id":10198,"implemented":true,"kind":"function","modifiers":[],"name":"getRoleGuardian","nameLocation":"8882:15:36","nodeType":"FunctionDefinition","parameters":{"id":10188,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10187,"mutability":"mutable","name":"roleId","nameLocation":"8905:6:36","nodeType":"VariableDeclaration","scope":10198,"src":"8898:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10186,"name":"uint64","nodeType":"ElementaryTypeName","src":"8898:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8897:15:36"},"returnParameters":{"id":10191,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10190,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10198,"src":"8942:6:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10189,"name":"uint64","nodeType":"ElementaryTypeName","src":"8942:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8941:8:36"},"scope":11824,"src":"8873:124:36","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1711],"body":{"id":10213,"nodeType":"Block","src":"9117:55:36","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"baseExpression":{"id":10206,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"9134:6:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$9949_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":10208,"indexExpression":{"id":10207,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10201,"src":"9141:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9134:14:36","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$9949_storage","typeString":"struct AccessManager.Role storage ref"}},"id":10209,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9149:10:36","memberName":"grantDelay","nodeType":"MemberAccess","referencedDeclaration":9948,"src":"9134:25:36","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"id":10210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9160:3:36","memberName":"get","nodeType":"MemberAccess","referencedDeclaration":8560,"src":"9134:29:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$8469_$returns$_t_uint32_$attached_to$_t_userDefinedValueType$_Delay_$8469_$","typeString":"function (Time.Delay) view returns (uint32)"}},"id":10211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9134:31:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":10205,"id":10212,"nodeType":"Return","src":"9127:38:36"}]},"documentation":{"id":10199,"nodeType":"StructuredDocumentation","src":"9003:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"12be8727","id":10214,"implemented":true,"kind":"function","modifiers":[],"name":"getRoleGrantDelay","nameLocation":"9047:17:36","nodeType":"FunctionDefinition","parameters":{"id":10202,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10201,"mutability":"mutable","name":"roleId","nameLocation":"9072:6:36","nodeType":"VariableDeclaration","scope":10214,"src":"9065:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10200,"name":"uint64","nodeType":"ElementaryTypeName","src":"9065:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"9064:15:36"},"returnParameters":{"id":10205,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10204,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10214,"src":"9109:6:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10203,"name":"uint32","nodeType":"ElementaryTypeName","src":"9109:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"9108:8:36"},"scope":11824,"src":"9038:134:36","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1727],"body":{"id":10284,"nodeType":"Block","src":"9386:418:36","statements":[{"assignments":[10232],"declarations":[{"constant":false,"id":10232,"mutability":"mutable","name":"access","nameLocation":"9411:6:36","nodeType":"VariableDeclaration","scope":10284,"src":"9396:21:36","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$9936_storage_ptr","typeString":"struct AccessManager.Access"},"typeName":{"id":10231,"nodeType":"UserDefinedTypeName","pathNode":{"id":10230,"name":"Access","nameLocations":["9396:6:36"],"nodeType":"IdentifierPath","referencedDeclaration":9936,"src":"9396:6:36"},"referencedDeclaration":9936,"src":"9396:6:36","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$9936_storage_ptr","typeString":"struct AccessManager.Access"}},"visibility":"internal"}],"id":10239,"initialValue":{"baseExpression":{"expression":{"baseExpression":{"id":10233,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"9420:6:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$9949_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":10235,"indexExpression":{"id":10234,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10217,"src":"9427:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9420:14:36","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$9949_storage","typeString":"struct AccessManager.Role storage ref"}},"id":10236,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9435:7:36","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":9941,"src":"9420:22:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$9936_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":10238,"indexExpression":{"id":10237,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10219,"src":"9443:7:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9420:31:36","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$9936_storage","typeString":"struct AccessManager.Access storage ref"}},"nodeType":"VariableDeclarationStatement","src":"9396:55:36"},{"expression":{"id":10243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10240,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"9462:5:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":10241,"name":"access","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10232,"src":"9470:6:36","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$9936_storage_ptr","typeString":"struct AccessManager.Access storage pointer"}},"id":10242,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9477:5:36","memberName":"since","nodeType":"MemberAccess","referencedDeclaration":9932,"src":"9470:12:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"9462:20:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":10244,"nodeType":"ExpressionStatement","src":"9462:20:36"},{"condition":{"id":10245,"name":"_isFrozen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9989,"src":"9496:9:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":10276,"nodeType":"Block","src":"9651:86:36","statements":[{"expression":{"id":10274,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":10266,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10224,"src":"9666:12:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":10267,"name":"pendingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"9680:12:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":10268,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10228,"src":"9694:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":10269,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"9665:36:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":10270,"name":"access","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10232,"src":"9704:6:36","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$9936_storage_ptr","typeString":"struct AccessManager.Access storage pointer"}},"id":10271,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9711:5:36","memberName":"delay","nodeType":"MemberAccess","referencedDeclaration":9935,"src":"9704:12:36","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"id":10272,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9717:7:36","memberName":"getFull","nodeType":"MemberAccess","referencedDeclaration":8542,"src":"9704:20:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$8469_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$8469_$","typeString":"function (Time.Delay) view returns (uint32,uint32,uint48)"}},"id":10273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9704:22:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"src":"9665:61:36","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10275,"nodeType":"ExpressionStatement","src":"9665:61:36"}]},"id":10277,"nodeType":"IfStatement","src":"9492:245:36","trueBody":{"id":10265,"nodeType":"Block","src":"9507:138:36","statements":[{"expression":{"id":10263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":10246,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10224,"src":"9522:12:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":10247,"name":"pendingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"9536:12:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":10248,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10228,"src":"9550:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":10249,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"9521:36:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"arguments":[{"expression":{"id":10258,"name":"access","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10232,"src":"9619:6:36","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$9936_storage_ptr","typeString":"struct AccessManager.Access storage pointer"}},"id":10259,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9626:5:36","memberName":"delay","nodeType":"MemberAccess","referencedDeclaration":9935,"src":"9619:12:36","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}],"expression":{"expression":{"id":10255,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8706,"src":"9601:4:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$8706_$","typeString":"type(library Time)"}},"id":10256,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9606:5:36","memberName":"Delay","nodeType":"MemberAccess","referencedDeclaration":8469,"src":"9601:10:36","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$8469_$","typeString":"type(Time.Delay)"}},"id":10257,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9612:6:36","memberName":"unwrap","nodeType":"MemberAccess","src":"9601:17:36","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Delay_$8469_$returns$_t_uint112_$","typeString":"function (Time.Delay) pure returns (uint112)"}},"id":10260,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9601:31:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"expression":{"expression":{"id":10252,"name":"FrozenTime","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12098,"src":"9579:10:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_FrozenTime_$12098_$","typeString":"type(library FrozenTime)"}},"id":10253,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9590:5:36","memberName":"Delay","nodeType":"MemberAccess","referencedDeclaration":11860,"src":"9579:16:36","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$11860_$","typeString":"type(FrozenTime.Delay)"}},"id":10254,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9596:4:36","memberName":"wrap","nodeType":"MemberAccess","src":"9579:21:36","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint112_$returns$_t_userDefinedValueType$_Delay_$11860_$","typeString":"function (uint112) pure returns (FrozenTime.Delay)"}},"id":10261,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9579:54:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}],"expression":{"id":10250,"name":"FrozenTime","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12098,"src":"9560:10:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_FrozenTime_$12098_$","typeString":"type(library FrozenTime)"}},"id":10251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9571:7:36","memberName":"getFull","nodeType":"MemberAccess","referencedDeclaration":11934,"src":"9560:18:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$11860_$returns$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"function (FrozenTime.Delay) pure returns (uint32,uint32,uint48)"}},"id":10262,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9560:74:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"src":"9521:113:36","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10264,"nodeType":"ExpressionStatement","src":"9521:113:36"}]}},{"expression":{"components":[{"id":10278,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"9755:5:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":10279,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10224,"src":"9762:12:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":10280,"name":"pendingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"9776:12:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":10281,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10228,"src":"9790:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":10282,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9754:43:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint48_$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint48,uint32,uint32,uint48)"}},"functionReturnParameters":10229,"id":10283,"nodeType":"Return","src":"9747:50:36"}]},"documentation":{"id":10215,"nodeType":"StructuredDocumentation","src":"9178:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"3078f114","id":10285,"implemented":true,"kind":"function","modifiers":[],"name":"getAccess","nameLocation":"9222:9:36","nodeType":"FunctionDefinition","parameters":{"id":10220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10217,"mutability":"mutable","name":"roleId","nameLocation":"9248:6:36","nodeType":"VariableDeclaration","scope":10285,"src":"9241:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10216,"name":"uint64","nodeType":"ElementaryTypeName","src":"9241:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":10219,"mutability":"mutable","name":"account","nameLocation":"9272:7:36","nodeType":"VariableDeclaration","scope":10285,"src":"9264:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10218,"name":"address","nodeType":"ElementaryTypeName","src":"9264:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9231:54:36"},"returnParameters":{"id":10229,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10222,"mutability":"mutable","name":"since","nameLocation":"9322:5:36","nodeType":"VariableDeclaration","scope":10285,"src":"9315:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":10221,"name":"uint48","nodeType":"ElementaryTypeName","src":"9315:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":10224,"mutability":"mutable","name":"currentDelay","nameLocation":"9336:12:36","nodeType":"VariableDeclaration","scope":10285,"src":"9329:19:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10223,"name":"uint32","nodeType":"ElementaryTypeName","src":"9329:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":10226,"mutability":"mutable","name":"pendingDelay","nameLocation":"9357:12:36","nodeType":"VariableDeclaration","scope":10285,"src":"9350:19:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10225,"name":"uint32","nodeType":"ElementaryTypeName","src":"9350:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":10228,"mutability":"mutable","name":"effect","nameLocation":"9378:6:36","nodeType":"VariableDeclaration","scope":10285,"src":"9371:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":10227,"name":"uint48","nodeType":"ElementaryTypeName","src":"9371:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"9314:71:36"},"scope":11824,"src":"9213:591:36","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1739],"body":{"id":10331,"nodeType":"Block","src":"9983:295:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":10299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10297,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10288,"src":"9997:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":10298,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9970,"src":"10007:11:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"9997:21:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":10329,"nodeType":"Block","src":"10067:205:36","statements":[{"assignments":[10306,10308,null,null],"declarations":[{"constant":false,"id":10306,"mutability":"mutable","name":"hasRoleSince","nameLocation":"10089:12:36","nodeType":"VariableDeclaration","scope":10329,"src":"10082:19:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":10305,"name":"uint48","nodeType":"ElementaryTypeName","src":"10082:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":10308,"mutability":"mutable","name":"currentDelay","nameLocation":"10110:12:36","nodeType":"VariableDeclaration","scope":10329,"src":"10103:19:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10307,"name":"uint32","nodeType":"ElementaryTypeName","src":"10103:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},null,null],"id":10313,"initialValue":{"arguments":[{"id":10310,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10288,"src":"10140:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":10311,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10290,"src":"10148:7:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":10309,"name":"getAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10285,"src":"10130:9:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_uint48_$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"function (uint64,address) view returns (uint48,uint32,uint32,uint48)"}},"id":10312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10130:26:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint48_$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint48,uint32,uint32,uint48)"}},"nodeType":"VariableDeclarationStatement","src":"10081:75:36"},{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":10316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10314,"name":"hasRoleSince","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10306,"src":"10178:12:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":10315,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10194:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10178:17:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10317,"name":"_isFrozen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9989,"src":"10200:9:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":10322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10318,"name":"hasRoleSince","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10306,"src":"10213:12:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":10319,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8706,"src":"10229:4:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$8706_$","typeString":"type(library Time)"}},"id":10320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10234:9:36","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":8454,"src":"10229:14:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":10321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10229:16:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"10213:32:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10200:45:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":10324,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10199:47:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10178:68:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":10326,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10308,"src":"10248:12:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":10327,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10177:84:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":10296,"id":10328,"nodeType":"Return","src":"10170:91:36"}]},"id":10330,"nodeType":"IfStatement","src":"9993:279:36","trueBody":{"id":10304,"nodeType":"Block","src":"10020:41:36","statements":[{"expression":{"components":[{"hexValue":"74727565","id":10300,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10042:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"hexValue":"30","id":10301,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10048:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":10302,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"10041:9:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":10296,"id":10303,"nodeType":"Return","src":"10034:16:36"}]}}]},"documentation":{"id":10286,"nodeType":"StructuredDocumentation","src":"9810:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"d1f856ee","id":10332,"implemented":true,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"9854:7:36","nodeType":"FunctionDefinition","parameters":{"id":10291,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10288,"mutability":"mutable","name":"roleId","nameLocation":"9878:6:36","nodeType":"VariableDeclaration","scope":10332,"src":"9871:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10287,"name":"uint64","nodeType":"ElementaryTypeName","src":"9871:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":10290,"mutability":"mutable","name":"account","nameLocation":"9902:7:36","nodeType":"VariableDeclaration","scope":10332,"src":"9894:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10289,"name":"address","nodeType":"ElementaryTypeName","src":"9894:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9861:54:36"},"returnParameters":{"id":10296,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10293,"mutability":"mutable","name":"isMember","nameLocation":"9950:8:36","nodeType":"VariableDeclaration","scope":10332,"src":"9945:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10292,"name":"bool","nodeType":"ElementaryTypeName","src":"9945:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":10295,"mutability":"mutable","name":"executionDelay","nameLocation":"9967:14:36","nodeType":"VariableDeclaration","scope":10332,"src":"9960:21:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10294,"name":"uint32","nodeType":"ElementaryTypeName","src":"9960:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"9944:38:36"},"scope":11824,"src":"9845:433:36","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1747],"body":{"id":10360,"nodeType":"Block","src":"10525:169:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":10344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10342,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10335,"src":"10539:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":10343,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9962,"src":"10549:10:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"10539:20:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":10347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10345,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10335,"src":"10563:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":10346,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9970,"src":"10573:11:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"10563:21:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10539:45:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10354,"nodeType":"IfStatement","src":"10535:114:36","trueBody":{"id":10353,"nodeType":"Block","src":"10586:63:36","statements":[{"errorCall":{"arguments":[{"id":10350,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10335,"src":"10631:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":10349,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1601,"src":"10607:23:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":10351,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10607:31:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10352,"nodeType":"RevertStatement","src":"10600:38:36"}]}},{"eventCall":{"arguments":[{"id":10356,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10335,"src":"10673:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":10357,"name":"label","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10337,"src":"10681:5:36","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":10355,"name":"RoleLabel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1513,"src":"10663:9:36","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_string_memory_ptr_$returns$__$","typeString":"function (uint64,string memory)"}},"id":10358,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10663:24:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10359,"nodeType":"EmitStatement","src":"10658:29:36"}]},"documentation":{"id":10333,"nodeType":"StructuredDocumentation","src":"10403:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"853551b8","id":10361,"implemented":true,"kind":"function","modifiers":[{"id":10340,"kind":"modifierInvocation","modifierName":{"id":10339,"name":"onlyAuthorized","nameLocations":["10510:14:36"],"nodeType":"IdentifierPath","referencedDeclaration":9997,"src":"10510:14:36"},"nodeType":"ModifierInvocation","src":"10510:14:36"}],"name":"labelRole","nameLocation":"10447:9:36","nodeType":"FunctionDefinition","parameters":{"id":10338,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10335,"mutability":"mutable","name":"roleId","nameLocation":"10464:6:36","nodeType":"VariableDeclaration","scope":10361,"src":"10457:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10334,"name":"uint64","nodeType":"ElementaryTypeName","src":"10457:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":10337,"mutability":"mutable","name":"label","nameLocation":"10488:5:36","nodeType":"VariableDeclaration","scope":10361,"src":"10472:21:36","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":10336,"name":"string","nodeType":"ElementaryTypeName","src":"10472:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"10456:38:36"},"returnParameters":{"id":10341,"nodeType":"ParameterList","parameters":[],"src":"10525:0:36"},"scope":11824,"src":"10438:256:36","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1757],"body":{"id":10382,"nodeType":"Block","src":"10839:87:36","statements":[{"expression":{"arguments":[{"id":10374,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10364,"src":"10860:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":10375,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10366,"src":"10868:7:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":10377,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10364,"src":"10895:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":10376,"name":"getRoleGrantDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10214,"src":"10877:17:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$returns$_t_uint32_$","typeString":"function (uint64) view returns (uint32)"}},"id":10378,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10877:25:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":10379,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10368,"src":"10904:14:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":10373,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10567,"src":"10849:10:36","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_address_$_t_uint32_$_t_uint32_$returns$_t_bool_$","typeString":"function (uint64,address,uint32,uint32) returns (bool)"}},"id":10380,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10849:70:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10381,"nodeType":"ExpressionStatement","src":"10849:70:36"}]},"documentation":{"id":10362,"nodeType":"StructuredDocumentation","src":"10700:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"25c471a0","id":10383,"implemented":true,"kind":"function","modifiers":[{"id":10371,"kind":"modifierInvocation","modifierName":{"id":10370,"name":"onlyAuthorized","nameLocations":["10824:14:36"],"nodeType":"IdentifierPath","referencedDeclaration":9997,"src":"10824:14:36"},"nodeType":"ModifierInvocation","src":"10824:14:36"}],"name":"grantRole","nameLocation":"10744:9:36","nodeType":"FunctionDefinition","parameters":{"id":10369,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10364,"mutability":"mutable","name":"roleId","nameLocation":"10761:6:36","nodeType":"VariableDeclaration","scope":10383,"src":"10754:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10363,"name":"uint64","nodeType":"ElementaryTypeName","src":"10754:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":10366,"mutability":"mutable","name":"account","nameLocation":"10777:7:36","nodeType":"VariableDeclaration","scope":10383,"src":"10769:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10365,"name":"address","nodeType":"ElementaryTypeName","src":"10769:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10368,"mutability":"mutable","name":"executionDelay","nameLocation":"10793:14:36","nodeType":"VariableDeclaration","scope":10383,"src":"10786:21:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10367,"name":"uint32","nodeType":"ElementaryTypeName","src":"10786:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"10753:55:36"},"returnParameters":{"id":10372,"nodeType":"ParameterList","parameters":[],"src":"10839:0:36"},"scope":11824,"src":"10735:191:36","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1765],"body":{"id":10398,"nodeType":"Block","src":"11049:45:36","statements":[{"expression":{"arguments":[{"id":10394,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10386,"src":"11071:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":10395,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10388,"src":"11079:7:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":10393,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10615,"src":"11059:11:36","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_address_$returns$_t_bool_$","typeString":"function (uint64,address) returns (bool)"}},"id":10396,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11059:28:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10397,"nodeType":"ExpressionStatement","src":"11059:28:36"}]},"documentation":{"id":10384,"nodeType":"StructuredDocumentation","src":"10932:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"b7d2b162","id":10399,"implemented":true,"kind":"function","modifiers":[{"id":10391,"kind":"modifierInvocation","modifierName":{"id":10390,"name":"onlyAuthorized","nameLocations":["11034:14:36"],"nodeType":"IdentifierPath","referencedDeclaration":9997,"src":"11034:14:36"},"nodeType":"ModifierInvocation","src":"11034:14:36"}],"name":"revokeRole","nameLocation":"10976:10:36","nodeType":"FunctionDefinition","parameters":{"id":10389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10386,"mutability":"mutable","name":"roleId","nameLocation":"10994:6:36","nodeType":"VariableDeclaration","scope":10399,"src":"10987:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10385,"name":"uint64","nodeType":"ElementaryTypeName","src":"10987:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":10388,"mutability":"mutable","name":"account","nameLocation":"11010:7:36","nodeType":"VariableDeclaration","scope":10399,"src":"11002:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10387,"name":"address","nodeType":"ElementaryTypeName","src":"11002:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10986:32:36"},"returnParameters":{"id":10392,"nodeType":"ParameterList","parameters":[],"src":"11049:0:36"},"scope":11824,"src":"10967:127:36","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1773],"body":{"id":10421,"nodeType":"Block","src":"11215:167:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":10410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10407,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10404,"src":"11229:18:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":10408,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3080,"src":"11251:10:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":10409,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11251:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11229:34:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10415,"nodeType":"IfStatement","src":"11225:102:36","trueBody":{"id":10414,"nodeType":"Block","src":"11265:62:36","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":10411,"name":"AccessManagerBadConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1603,"src":"11286:28:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":10412,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11286:30:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10413,"nodeType":"RevertStatement","src":"11279:37:36"}]}},{"expression":{"arguments":[{"id":10417,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10402,"src":"11348:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":10418,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10404,"src":"11356:18:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":10416,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10615,"src":"11336:11:36","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_address_$returns$_t_bool_$","typeString":"function (uint64,address) returns (bool)"}},"id":10419,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11336:39:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10420,"nodeType":"ExpressionStatement","src":"11336:39:36"}]},"documentation":{"id":10400,"nodeType":"StructuredDocumentation","src":"11100:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"fe0776f5","id":10422,"implemented":true,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"11144:12:36","nodeType":"FunctionDefinition","parameters":{"id":10405,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10402,"mutability":"mutable","name":"roleId","nameLocation":"11164:6:36","nodeType":"VariableDeclaration","scope":10422,"src":"11157:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10401,"name":"uint64","nodeType":"ElementaryTypeName","src":"11157:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":10404,"mutability":"mutable","name":"callerConfirmation","nameLocation":"11180:18:36","nodeType":"VariableDeclaration","scope":10422,"src":"11172:26:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10403,"name":"address","nodeType":"ElementaryTypeName","src":"11172:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11156:43:36"},"returnParameters":{"id":10406,"nodeType":"ParameterList","parameters":[],"src":"11215:0:36"},"scope":11824,"src":"11135:247:36","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1781],"body":{"id":10437,"nodeType":"Block","src":"11504:45:36","statements":[{"expression":{"arguments":[{"id":10433,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10425,"src":"11528:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":10434,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10427,"src":"11536:5:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":10432,"name":"_setRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10649,"src":"11514:13:36","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64)"}},"id":10435,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11514:28:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10436,"nodeType":"ExpressionStatement","src":"11514:28:36"}]},"documentation":{"id":10423,"nodeType":"StructuredDocumentation","src":"11388:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"30cae187","id":10438,"implemented":true,"kind":"function","modifiers":[{"id":10430,"kind":"modifierInvocation","modifierName":{"id":10429,"name":"onlyAuthorized","nameLocations":["11489:14:36"],"nodeType":"IdentifierPath","referencedDeclaration":9997,"src":"11489:14:36"},"nodeType":"ModifierInvocation","src":"11489:14:36"}],"name":"setRoleAdmin","nameLocation":"11432:12:36","nodeType":"FunctionDefinition","parameters":{"id":10428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10425,"mutability":"mutable","name":"roleId","nameLocation":"11452:6:36","nodeType":"VariableDeclaration","scope":10438,"src":"11445:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10424,"name":"uint64","nodeType":"ElementaryTypeName","src":"11445:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":10427,"mutability":"mutable","name":"admin","nameLocation":"11467:5:36","nodeType":"VariableDeclaration","scope":10438,"src":"11460:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10426,"name":"uint64","nodeType":"ElementaryTypeName","src":"11460:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"11444:29:36"},"returnParameters":{"id":10431,"nodeType":"ParameterList","parameters":[],"src":"11504:0:36"},"scope":11824,"src":"11423:126:36","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1789],"body":{"id":10453,"nodeType":"Block","src":"11677:51:36","statements":[{"expression":{"arguments":[{"id":10449,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10441,"src":"11704:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":10450,"name":"guardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10443,"src":"11712:8:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":10448,"name":"_setRoleGuardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10683,"src":"11687:16:36","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64)"}},"id":10451,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11687:34:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10452,"nodeType":"ExpressionStatement","src":"11687:34:36"}]},"documentation":{"id":10439,"nodeType":"StructuredDocumentation","src":"11555:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"52962952","id":10454,"implemented":true,"kind":"function","modifiers":[{"id":10446,"kind":"modifierInvocation","modifierName":{"id":10445,"name":"onlyAuthorized","nameLocations":["11662:14:36"],"nodeType":"IdentifierPath","referencedDeclaration":9997,"src":"11662:14:36"},"nodeType":"ModifierInvocation","src":"11662:14:36"}],"name":"setRoleGuardian","nameLocation":"11599:15:36","nodeType":"FunctionDefinition","parameters":{"id":10444,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10441,"mutability":"mutable","name":"roleId","nameLocation":"11622:6:36","nodeType":"VariableDeclaration","scope":10454,"src":"11615:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10440,"name":"uint64","nodeType":"ElementaryTypeName","src":"11615:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":10443,"mutability":"mutable","name":"guardian","nameLocation":"11637:8:36","nodeType":"VariableDeclaration","scope":10454,"src":"11630:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10442,"name":"uint64","nodeType":"ElementaryTypeName","src":"11630:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"11614:32:36"},"returnParameters":{"id":10447,"nodeType":"ParameterList","parameters":[],"src":"11677:0:36"},"scope":11824,"src":"11590:138:36","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1797],"body":{"id":10469,"nodeType":"Block","src":"11854:49:36","statements":[{"expression":{"arguments":[{"id":10465,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10457,"src":"11879:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":10466,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10459,"src":"11887:8:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":10464,"name":"_setGrantDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10727,"src":"11864:14:36","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_uint32_$returns$__$","typeString":"function (uint64,uint32)"}},"id":10467,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11864:32:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10468,"nodeType":"ExpressionStatement","src":"11864:32:36"}]},"documentation":{"id":10455,"nodeType":"StructuredDocumentation","src":"11734:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"a64d95ce","id":10470,"implemented":true,"kind":"function","modifiers":[{"id":10462,"kind":"modifierInvocation","modifierName":{"id":10461,"name":"onlyAuthorized","nameLocations":["11839:14:36"],"nodeType":"IdentifierPath","referencedDeclaration":9997,"src":"11839:14:36"},"nodeType":"ModifierInvocation","src":"11839:14:36"}],"name":"setGrantDelay","nameLocation":"11778:13:36","nodeType":"FunctionDefinition","parameters":{"id":10460,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10457,"mutability":"mutable","name":"roleId","nameLocation":"11799:6:36","nodeType":"VariableDeclaration","scope":10470,"src":"11792:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10456,"name":"uint64","nodeType":"ElementaryTypeName","src":"11792:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":10459,"mutability":"mutable","name":"newDelay","nameLocation":"11814:8:36","nodeType":"VariableDeclaration","scope":10470,"src":"11807:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10458,"name":"uint32","nodeType":"ElementaryTypeName","src":"11807:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"11791:32:36"},"returnParameters":{"id":10463,"nodeType":"ParameterList","parameters":[],"src":"11854:0:36"},"scope":11824,"src":"11769:134:36","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":10566,"nodeType":"Block","src":"12244:897:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":10486,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10484,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10473,"src":"12258:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":10485,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9970,"src":"12268:11:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"12258:21:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10492,"nodeType":"IfStatement","src":"12254:90:36","trueBody":{"id":10491,"nodeType":"Block","src":"12281:63:36","statements":[{"errorCall":{"arguments":[{"id":10488,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10473,"src":"12326:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":10487,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1601,"src":"12302:23:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":10489,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12302:31:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10490,"nodeType":"RevertStatement","src":"12295:38:36"}]}},{"assignments":[10494],"declarations":[{"constant":false,"id":10494,"mutability":"mutable","name":"newMember","nameLocation":"12359:9:36","nodeType":"VariableDeclaration","scope":10566,"src":"12354:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10493,"name":"bool","nodeType":"ElementaryTypeName","src":"12354:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":10504,"initialValue":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":10503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":10495,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"12371:6:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$9949_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":10497,"indexExpression":{"id":10496,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10473,"src":"12378:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12371:14:36","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$9949_storage","typeString":"struct AccessManager.Role storage ref"}},"id":10498,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12386:7:36","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":9941,"src":"12371:22:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$9936_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":10500,"indexExpression":{"id":10499,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10475,"src":"12394:7:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12371:31:36","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$9936_storage","typeString":"struct AccessManager.Access storage ref"}},"id":10501,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12403:5:36","memberName":"since","nodeType":"MemberAccess","referencedDeclaration":9932,"src":"12371:37:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":10502,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12412:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12371:42:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"12354:59:36"},{"assignments":[10506],"declarations":[{"constant":false,"id":10506,"mutability":"mutable","name":"since","nameLocation":"12430:5:36","nodeType":"VariableDeclaration","scope":10566,"src":"12423:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":10505,"name":"uint48","nodeType":"ElementaryTypeName","src":"12423:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":10507,"nodeType":"VariableDeclarationStatement","src":"12423:12:36"},{"condition":{"id":10508,"name":"newMember","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10494,"src":"12450:9:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":10554,"nodeType":"Block","src":"12632:399:36","statements":[{"expression":{"id":10552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":10532,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"12859:6:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$9949_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":10534,"indexExpression":{"id":10533,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10473,"src":"12866:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12859:14:36","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$9949_storage","typeString":"struct AccessManager.Role storage ref"}},"id":10535,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12874:7:36","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":9941,"src":"12859:22:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$9936_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":10537,"indexExpression":{"id":10536,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10475,"src":"12882:7:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12859:31:36","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$9936_storage","typeString":"struct AccessManager.Access storage ref"}},"id":10538,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12891:5:36","memberName":"delay","nodeType":"MemberAccess","referencedDeclaration":9935,"src":"12859:37:36","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},{"id":10539,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10506,"src":"12898:5:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":10540,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"12858:46:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$8469_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":10549,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10479,"src":"12973:14:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":10550,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13005:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"expression":{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":10541,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"12907:6:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$9949_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":10543,"indexExpression":{"id":10542,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10473,"src":"12914:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12907:14:36","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$9949_storage","typeString":"struct AccessManager.Role storage ref"}},"id":10544,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12922:7:36","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":9941,"src":"12907:22:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$9936_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":10546,"indexExpression":{"id":10545,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10475,"src":"12930:7:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12907:31:36","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$9936_storage","typeString":"struct AccessManager.Access storage ref"}},"id":10547,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12939:5:36","memberName":"delay","nodeType":"MemberAccess","referencedDeclaration":9935,"src":"12907:37:36","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"id":10548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12945:10:36","memberName":"withUpdate","nodeType":"MemberAccess","referencedDeclaration":8616,"src":"12907:48:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$8469_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_Delay_$8469_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$8469_$","typeString":"function (Time.Delay,uint32,uint32) view returns (Time.Delay,uint48)"}},"id":10551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12907:113:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$8469_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"src":"12858:162:36","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10553,"nodeType":"ExpressionStatement","src":"12858:162:36"}]},"id":10555,"nodeType":"IfStatement","src":"12446:585:36","trueBody":{"id":10531,"nodeType":"Block","src":"12461:165:36","statements":[{"expression":{"id":10515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10509,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10506,"src":"12475:5:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":10514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":10510,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8706,"src":"12483:4:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$8706_$","typeString":"type(library Time)"}},"id":10511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12488:9:36","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":8454,"src":"12483:14:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":10512,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12483:16:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":10513,"name":"grantDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10477,"src":"12502:10:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"12483:29:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"12475:37:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":10516,"nodeType":"ExpressionStatement","src":"12475:37:36"},{"expression":{"id":10529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":10517,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"12526:6:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$9949_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":10519,"indexExpression":{"id":10518,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10473,"src":"12533:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12526:14:36","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$9949_storage","typeString":"struct AccessManager.Role storage ref"}},"id":10520,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12541:7:36","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":9941,"src":"12526:22:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$9936_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":10522,"indexExpression":{"id":10521,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10475,"src":"12549:7:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"12526:31:36","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$9936_storage","typeString":"struct AccessManager.Access storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":10524,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10506,"src":"12575:5:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":10525,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10479,"src":"12589:14:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":10526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12604:7:36","memberName":"toDelay","nodeType":"MemberAccess","referencedDeclaration":8484,"src":"12589:22:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$returns$_t_userDefinedValueType$_Delay_$8469_$attached_to$_t_uint32_$","typeString":"function (uint32) pure returns (Time.Delay)"}},"id":10527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12589:24:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}],"id":10523,"name":"Access","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9936,"src":"12560:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Access_$9936_storage_ptr_$","typeString":"type(struct AccessManager.Access storage pointer)"}},"id":10528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["12568:5:36","12582:5:36"],"names":["since","delay"],"nodeType":"FunctionCall","src":"12560:55:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Access_$9936_memory_ptr","typeString":"struct AccessManager.Access memory"}},"src":"12526:89:36","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$9936_storage","typeString":"struct AccessManager.Access storage ref"}},"id":10530,"nodeType":"ExpressionStatement","src":"12526:89:36"}]}},{"eventCall":{"arguments":[{"id":10557,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10473,"src":"13058:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":10558,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10475,"src":"13066:7:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10559,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10479,"src":"13075:14:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":10560,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10506,"src":"13091:5:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":10561,"name":"newMember","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10494,"src":"13098:9:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":10556,"name":"RoleGranted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1526,"src":"13046:11:36","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_address_$_t_uint32_$_t_uint48_$_t_bool_$returns$__$","typeString":"function (uint64,address,uint32,uint48,bool)"}},"id":10562,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13046:62:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10563,"nodeType":"EmitStatement","src":"13041:67:36"},{"expression":{"id":10564,"name":"newMember","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10494,"src":"13125:9:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":10483,"id":10565,"nodeType":"Return","src":"13118:16:36"}]},"documentation":{"id":10471,"nodeType":"StructuredDocumentation","src":"11909:166:36","text":" @dev Internal version of {grantRole} without access control. Returns true if the role was newly granted.\n Emits a {RoleGranted} event."},"id":10567,"implemented":true,"kind":"function","modifiers":[],"name":"_grantRole","nameLocation":"12089:10:36","nodeType":"FunctionDefinition","parameters":{"id":10480,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10473,"mutability":"mutable","name":"roleId","nameLocation":"12116:6:36","nodeType":"VariableDeclaration","scope":10567,"src":"12109:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10472,"name":"uint64","nodeType":"ElementaryTypeName","src":"12109:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":10475,"mutability":"mutable","name":"account","nameLocation":"12140:7:36","nodeType":"VariableDeclaration","scope":10567,"src":"12132:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10474,"name":"address","nodeType":"ElementaryTypeName","src":"12132:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10477,"mutability":"mutable","name":"grantDelay","nameLocation":"12164:10:36","nodeType":"VariableDeclaration","scope":10567,"src":"12157:17:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10476,"name":"uint32","nodeType":"ElementaryTypeName","src":"12157:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":10479,"mutability":"mutable","name":"executionDelay","nameLocation":"12191:14:36","nodeType":"VariableDeclaration","scope":10567,"src":"12184:21:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10478,"name":"uint32","nodeType":"ElementaryTypeName","src":"12184:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"12099:112:36"},"returnParameters":{"id":10483,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10482,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10567,"src":"12238:4:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10481,"name":"bool","nodeType":"ElementaryTypeName","src":"12238:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12237:6:36"},"scope":11824,"src":"12080:1061:36","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":10614,"nodeType":"Block","src":"13487:315:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":10579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10577,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10570,"src":"13501:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":10578,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9970,"src":"13511:11:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13501:21:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10585,"nodeType":"IfStatement","src":"13497:90:36","trueBody":{"id":10584,"nodeType":"Block","src":"13524:63:36","statements":[{"errorCall":{"arguments":[{"id":10581,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10570,"src":"13569:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":10580,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1601,"src":"13545:23:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":10582,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13545:31:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10583,"nodeType":"RevertStatement","src":"13538:38:36"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":10594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":10586,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"13601:6:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$9949_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":10588,"indexExpression":{"id":10587,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10570,"src":"13608:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13601:14:36","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$9949_storage","typeString":"struct AccessManager.Role storage ref"}},"id":10589,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13616:7:36","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":9941,"src":"13601:22:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$9936_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":10591,"indexExpression":{"id":10590,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10572,"src":"13624:7:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13601:31:36","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$9936_storage","typeString":"struct AccessManager.Access storage ref"}},"id":10592,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13633:5:36","memberName":"since","nodeType":"MemberAccess","referencedDeclaration":9932,"src":"13601:37:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":10593,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13642:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13601:42:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10598,"nodeType":"IfStatement","src":"13597:85:36","trueBody":{"id":10597,"nodeType":"Block","src":"13645:37:36","statements":[{"expression":{"hexValue":"66616c7365","id":10595,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13666:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":10576,"id":10596,"nodeType":"Return","src":"13659:12:36"}]}},{"expression":{"id":10605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"13692:38:36","subExpression":{"baseExpression":{"expression":{"baseExpression":{"id":10599,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"13699:6:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$9949_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":10601,"indexExpression":{"id":10600,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10570,"src":"13706:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13699:14:36","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$9949_storage","typeString":"struct AccessManager.Role storage ref"}},"id":10602,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13714:7:36","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":9941,"src":"13699:22:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$9936_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":10604,"indexExpression":{"id":10603,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10572,"src":"13722:7:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"13699:31:36","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$9936_storage","typeString":"struct AccessManager.Access storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10606,"nodeType":"ExpressionStatement","src":"13692:38:36"},{"eventCall":{"arguments":[{"id":10608,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10570,"src":"13758:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":10609,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10572,"src":"13766:7:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":10607,"name":"RoleRevoked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1533,"src":"13746:11:36","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_address_$returns$__$","typeString":"function (uint64,address)"}},"id":10610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13746:28:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10611,"nodeType":"EmitStatement","src":"13741:33:36"},{"expression":{"hexValue":"74727565","id":10612,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13791:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":10576,"id":10613,"nodeType":"Return","src":"13784:11:36"}]},"documentation":{"id":10568,"nodeType":"StructuredDocumentation","src":"13147:250:36","text":" @dev Internal version of {revokeRole} without access control. This logic is also used by {renounceRole}.\n Returns true if the role was previously granted.\n Emits a {RoleRevoked} event if the account had the role."},"id":10615,"implemented":true,"kind":"function","modifiers":[],"name":"_revokeRole","nameLocation":"13411:11:36","nodeType":"FunctionDefinition","parameters":{"id":10573,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10570,"mutability":"mutable","name":"roleId","nameLocation":"13430:6:36","nodeType":"VariableDeclaration","scope":10615,"src":"13423:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10569,"name":"uint64","nodeType":"ElementaryTypeName","src":"13423:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":10572,"mutability":"mutable","name":"account","nameLocation":"13446:7:36","nodeType":"VariableDeclaration","scope":10615,"src":"13438:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10571,"name":"address","nodeType":"ElementaryTypeName","src":"13438:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"13422:32:36"},"returnParameters":{"id":10576,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10575,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10615,"src":"13481:4:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10574,"name":"bool","nodeType":"ElementaryTypeName","src":"13481:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"13480:6:36"},"scope":11824,"src":"13402:400:36","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":10648,"nodeType":"Block","src":"14166:216:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":10625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10623,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10618,"src":"14180:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":10624,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9962,"src":"14190:10:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14180:20:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":10628,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10626,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10618,"src":"14204:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":10627,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9970,"src":"14214:11:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14204:21:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"14180:45:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10635,"nodeType":"IfStatement","src":"14176:114:36","trueBody":{"id":10634,"nodeType":"Block","src":"14227:63:36","statements":[{"errorCall":{"arguments":[{"id":10631,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10618,"src":"14272:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":10630,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1601,"src":"14248:23:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":10632,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14248:31:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10633,"nodeType":"RevertStatement","src":"14241:38:36"}]}},{"expression":{"id":10641,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":10636,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"14300:6:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$9949_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":10638,"indexExpression":{"id":10637,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10618,"src":"14307:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14300:14:36","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$9949_storage","typeString":"struct AccessManager.Role storage ref"}},"id":10639,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14315:5:36","memberName":"admin","nodeType":"MemberAccess","referencedDeclaration":9943,"src":"14300:20:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":10640,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10620,"src":"14323:5:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14300:28:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":10642,"nodeType":"ExpressionStatement","src":"14300:28:36"},{"eventCall":{"arguments":[{"id":10644,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10618,"src":"14361:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":10645,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10620,"src":"14369:5:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":10643,"name":"RoleAdminChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1540,"src":"14344:16:36","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64)"}},"id":10646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14344:31:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10647,"nodeType":"EmitStatement","src":"14339:36:36"}]},"documentation":{"id":10616,"nodeType":"StructuredDocumentation","src":"13808:284:36","text":" @dev Internal version of {setRoleAdmin} without access control.\n Emits a {RoleAdminChanged} event.\n NOTE: Setting the admin role as the `PUBLIC_ROLE` is allowed, but it will effectively allow\n anyone to set grant or revoke such role."},"id":10649,"implemented":true,"kind":"function","modifiers":[],"name":"_setRoleAdmin","nameLocation":"14106:13:36","nodeType":"FunctionDefinition","parameters":{"id":10621,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10618,"mutability":"mutable","name":"roleId","nameLocation":"14127:6:36","nodeType":"VariableDeclaration","scope":10649,"src":"14120:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10617,"name":"uint64","nodeType":"ElementaryTypeName","src":"14120:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":10620,"mutability":"mutable","name":"admin","nameLocation":"14142:5:36","nodeType":"VariableDeclaration","scope":10649,"src":"14135:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10619,"name":"uint64","nodeType":"ElementaryTypeName","src":"14135:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"14119:29:36"},"returnParameters":{"id":10622,"nodeType":"ParameterList","parameters":[],"src":"14166:0:36"},"scope":11824,"src":"14097:285:36","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":10682,"nodeType":"Block","src":"14776:228:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10663,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":10659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10657,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10652,"src":"14790:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":10658,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9962,"src":"14800:10:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14790:20:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":10662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10660,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10652,"src":"14814:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":10661,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9970,"src":"14824:11:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14814:21:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"14790:45:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10669,"nodeType":"IfStatement","src":"14786:114:36","trueBody":{"id":10668,"nodeType":"Block","src":"14837:63:36","statements":[{"errorCall":{"arguments":[{"id":10665,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10652,"src":"14882:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":10664,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1601,"src":"14858:23:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":10666,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14858:31:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10667,"nodeType":"RevertStatement","src":"14851:38:36"}]}},{"expression":{"id":10675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":10670,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"14910:6:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$9949_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":10672,"indexExpression":{"id":10671,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10652,"src":"14917:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14910:14:36","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$9949_storage","typeString":"struct AccessManager.Role storage ref"}},"id":10673,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14925:8:36","memberName":"guardian","nodeType":"MemberAccess","referencedDeclaration":9945,"src":"14910:23:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":10674,"name":"guardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10654,"src":"14936:8:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14910:34:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":10676,"nodeType":"ExpressionStatement","src":"14910:34:36"},{"eventCall":{"arguments":[{"id":10678,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10652,"src":"14980:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":10679,"name":"guardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10654,"src":"14988:8:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":10677,"name":"RoleGuardianChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1547,"src":"14960:19:36","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64)"}},"id":10680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14960:37:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10681,"nodeType":"EmitStatement","src":"14955:42:36"}]},"documentation":{"id":10650,"nodeType":"StructuredDocumentation","src":"14388:308:36","text":" @dev Internal version of {setRoleGuardian} without access control.\n Emits a {RoleGuardianChanged} event.\n NOTE: Setting the guardian role as the `PUBLIC_ROLE` is allowed, but it will effectively allow\n anyone to cancel any scheduled operation for such role."},"id":10683,"implemented":true,"kind":"function","modifiers":[],"name":"_setRoleGuardian","nameLocation":"14710:16:36","nodeType":"FunctionDefinition","parameters":{"id":10655,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10652,"mutability":"mutable","name":"roleId","nameLocation":"14734:6:36","nodeType":"VariableDeclaration","scope":10683,"src":"14727:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10651,"name":"uint64","nodeType":"ElementaryTypeName","src":"14727:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":10654,"mutability":"mutable","name":"guardian","nameLocation":"14749:8:36","nodeType":"VariableDeclaration","scope":10683,"src":"14742:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10653,"name":"uint64","nodeType":"ElementaryTypeName","src":"14742:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"14726:32:36"},"returnParameters":{"id":10656,"nodeType":"ParameterList","parameters":[],"src":"14776:0:36"},"scope":11824,"src":"14701:303:36","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":10726,"nodeType":"Block","src":"15224:301:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":10693,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10691,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10686,"src":"15238:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":10692,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9970,"src":"15248:11:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"15238:21:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10699,"nodeType":"IfStatement","src":"15234:90:36","trueBody":{"id":10698,"nodeType":"Block","src":"15261:63:36","statements":[{"errorCall":{"arguments":[{"id":10695,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10686,"src":"15306:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":10694,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1601,"src":"15282:23:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":10696,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15282:31:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10697,"nodeType":"RevertStatement","src":"15275:38:36"}]}},{"assignments":[10701],"declarations":[{"constant":false,"id":10701,"mutability":"mutable","name":"effect","nameLocation":"15341:6:36","nodeType":"VariableDeclaration","scope":10726,"src":"15334:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":10700,"name":"uint48","nodeType":"ElementaryTypeName","src":"15334:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":10702,"nodeType":"VariableDeclarationStatement","src":"15334:13:36"},{"expression":{"id":10718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"baseExpression":{"id":10703,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"15358:6:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$9949_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":10705,"indexExpression":{"id":10704,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10686,"src":"15365:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15358:14:36","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$9949_storage","typeString":"struct AccessManager.Role storage ref"}},"id":10706,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"15373:10:36","memberName":"grantDelay","nodeType":"MemberAccess","referencedDeclaration":9948,"src":"15358:25:36","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},{"id":10707,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10701,"src":"15385:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":10708,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"15357:35:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$8469_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":10714,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10688,"src":"15432:8:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":10715,"name":"minSetback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10122,"src":"15442:10:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint32_$","typeString":"function () view returns (uint32)"}},"id":10716,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15442:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"expression":{"baseExpression":{"id":10709,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"15395:6:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$9949_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":10711,"indexExpression":{"id":10710,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10686,"src":"15402:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15395:14:36","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$9949_storage","typeString":"struct AccessManager.Role storage ref"}},"id":10712,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15410:10:36","memberName":"grantDelay","nodeType":"MemberAccess","referencedDeclaration":9948,"src":"15395:25:36","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"id":10713,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15421:10:36","memberName":"withUpdate","nodeType":"MemberAccess","referencedDeclaration":8616,"src":"15395:36:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$8469_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_Delay_$8469_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$8469_$","typeString":"function (Time.Delay,uint32,uint32) view returns (Time.Delay,uint48)"}},"id":10717,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15395:60:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$8469_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"src":"15357:98:36","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10719,"nodeType":"ExpressionStatement","src":"15357:98:36"},{"eventCall":{"arguments":[{"id":10721,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10686,"src":"15493:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":10722,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10688,"src":"15501:8:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":10723,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10701,"src":"15511:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":10720,"name":"RoleGrantDelayChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1556,"src":"15471:21:36","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_uint32_$_t_uint48_$returns$__$","typeString":"function (uint64,uint32,uint48)"}},"id":10724,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15471:47:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10725,"nodeType":"EmitStatement","src":"15466:52:36"}]},"documentation":{"id":10684,"nodeType":"StructuredDocumentation","src":"15010:136:36","text":" @dev Internal version of {setGrantDelay} without access control.\n Emits a {RoleGrantDelayChanged} event."},"id":10727,"implemented":true,"kind":"function","modifiers":[],"name":"_setGrantDelay","nameLocation":"15160:14:36","nodeType":"FunctionDefinition","parameters":{"id":10689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10686,"mutability":"mutable","name":"roleId","nameLocation":"15182:6:36","nodeType":"VariableDeclaration","scope":10727,"src":"15175:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10685,"name":"uint64","nodeType":"ElementaryTypeName","src":"15175:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":10688,"mutability":"mutable","name":"newDelay","nameLocation":"15197:8:36","nodeType":"VariableDeclaration","scope":10727,"src":"15190:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10687,"name":"uint32","nodeType":"ElementaryTypeName","src":"15190:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"15174:32:36"},"returnParameters":{"id":10690,"nodeType":"ParameterList","parameters":[],"src":"15224:0:36"},"scope":11824,"src":"15151:374:36","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[1808],"body":{"id":10761,"nodeType":"Block","src":"15837:140:36","statements":[{"body":{"id":10759,"nodeType":"Block","src":"15894:77:36","statements":[{"expression":{"arguments":[{"id":10752,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10730,"src":"15931:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":10753,"name":"selectors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10733,"src":"15939:9:36","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_calldata_ptr","typeString":"bytes4[] calldata"}},"id":10755,"indexExpression":{"id":10754,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10741,"src":"15949:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15939:12:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"id":10756,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10735,"src":"15953:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":10751,"name":"_setTargetFunctionRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10788,"src":"15908:22:36","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes4_$_t_uint64_$returns$__$","typeString":"function (address,bytes4,uint64)"}},"id":10757,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15908:52:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10758,"nodeType":"ExpressionStatement","src":"15908:52:36"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10747,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10744,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10741,"src":"15867:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":10745,"name":"selectors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10733,"src":"15871:9:36","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_calldata_ptr","typeString":"bytes4[] calldata"}},"id":10746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15881:6:36","memberName":"length","nodeType":"MemberAccess","src":"15871:16:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15867:20:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10760,"initializationExpression":{"assignments":[10741],"declarations":[{"constant":false,"id":10741,"mutability":"mutable","name":"i","nameLocation":"15860:1:36","nodeType":"VariableDeclaration","scope":10760,"src":"15852:9:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10740,"name":"uint256","nodeType":"ElementaryTypeName","src":"15852:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10743,"initialValue":{"hexValue":"30","id":10742,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15864:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"15852:13:36"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":10749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"15889:3:36","subExpression":{"id":10748,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10741,"src":"15891:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10750,"nodeType":"ExpressionStatement","src":"15889:3:36"},"nodeType":"ForStatement","src":"15847:124:36"}]},"documentation":{"id":10728,"nodeType":"StructuredDocumentation","src":"15651:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"08d6122d","id":10762,"implemented":true,"kind":"function","modifiers":[{"id":10738,"kind":"modifierInvocation","modifierName":{"id":10737,"name":"onlyAuthorized","nameLocations":["15822:14:36"],"nodeType":"IdentifierPath","referencedDeclaration":9997,"src":"15822:14:36"},"nodeType":"ModifierInvocation","src":"15822:14:36"}],"name":"setTargetFunctionRole","nameLocation":"15695:21:36","nodeType":"FunctionDefinition","parameters":{"id":10736,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10730,"mutability":"mutable","name":"target","nameLocation":"15734:6:36","nodeType":"VariableDeclaration","scope":10762,"src":"15726:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10729,"name":"address","nodeType":"ElementaryTypeName","src":"15726:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10733,"mutability":"mutable","name":"selectors","nameLocation":"15768:9:36","nodeType":"VariableDeclaration","scope":10762,"src":"15750:27:36","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_calldata_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":10731,"name":"bytes4","nodeType":"ElementaryTypeName","src":"15750:6:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":10732,"nodeType":"ArrayTypeName","src":"15750:8:36","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"},{"constant":false,"id":10735,"mutability":"mutable","name":"roleId","nameLocation":"15794:6:36","nodeType":"VariableDeclaration","scope":10762,"src":"15787:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10734,"name":"uint64","nodeType":"ElementaryTypeName","src":"15787:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"15716:90:36"},"returnParameters":{"id":10739,"nodeType":"ParameterList","parameters":[],"src":"15837:0:36"},"scope":11824,"src":"15686:291:36","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":10787,"nodeType":"Block","src":"16233:131:36","statements":[{"expression":{"id":10779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":10772,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9975,"src":"16243:8:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$9930_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":10774,"indexExpression":{"id":10773,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10765,"src":"16252:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16243:16:36","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$9930_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":10775,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16260:12:36","memberName":"allowedRoles","nodeType":"MemberAccess","referencedDeclaration":9924,"src":"16243:29:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_uint64_$","typeString":"mapping(bytes4 => uint64)"}},"id":10777,"indexExpression":{"id":10776,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10767,"src":"16273:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"16243:39:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":10778,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10769,"src":"16285:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"16243:48:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":10780,"nodeType":"ExpressionStatement","src":"16243:48:36"},{"eventCall":{"arguments":[{"id":10782,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10765,"src":"16332:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10783,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10767,"src":"16340:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"id":10784,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10769,"src":"16350:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":10781,"name":"TargetFunctionRoleUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1572,"src":"16306:25:36","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_bytes4_$_t_uint64_$returns$__$","typeString":"function (address,bytes4,uint64)"}},"id":10785,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16306:51:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10786,"nodeType":"EmitStatement","src":"16301:56:36"}]},"documentation":{"id":10763,"nodeType":"StructuredDocumentation","src":"15983:148:36","text":" @dev Internal version of {setTargetFunctionRole} without access control.\n Emits a {TargetFunctionRoleUpdated} event."},"id":10788,"implemented":true,"kind":"function","modifiers":[],"name":"_setTargetFunctionRole","nameLocation":"16145:22:36","nodeType":"FunctionDefinition","parameters":{"id":10770,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10765,"mutability":"mutable","name":"target","nameLocation":"16176:6:36","nodeType":"VariableDeclaration","scope":10788,"src":"16168:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10764,"name":"address","nodeType":"ElementaryTypeName","src":"16168:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10767,"mutability":"mutable","name":"selector","nameLocation":"16191:8:36","nodeType":"VariableDeclaration","scope":10788,"src":"16184:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":10766,"name":"bytes4","nodeType":"ElementaryTypeName","src":"16184:6:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":10769,"mutability":"mutable","name":"roleId","nameLocation":"16208:6:36","nodeType":"VariableDeclaration","scope":10788,"src":"16201:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":10768,"name":"uint64","nodeType":"ElementaryTypeName","src":"16201:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"16167:48:36"},"returnParameters":{"id":10771,"nodeType":"ParameterList","parameters":[],"src":"16233:0:36"},"scope":11824,"src":"16136:228:36","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[1816],"body":{"id":10803,"nodeType":"Block","src":"16497:55:36","statements":[{"expression":{"arguments":[{"id":10799,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10791,"src":"16528:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10800,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10793,"src":"16536:8:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":10798,"name":"_setTargetAdminDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10839,"src":"16507:20:36","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint32_$returns$__$","typeString":"function (address,uint32)"}},"id":10801,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16507:38:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10802,"nodeType":"ExpressionStatement","src":"16507:38:36"}]},"documentation":{"id":10789,"nodeType":"StructuredDocumentation","src":"16370:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"d22b5989","id":10804,"implemented":true,"kind":"function","modifiers":[{"id":10796,"kind":"modifierInvocation","modifierName":{"id":10795,"name":"onlyAuthorized","nameLocations":["16482:14:36"],"nodeType":"IdentifierPath","referencedDeclaration":9997,"src":"16482:14:36"},"nodeType":"ModifierInvocation","src":"16482:14:36"}],"name":"setTargetAdminDelay","nameLocation":"16414:19:36","nodeType":"FunctionDefinition","parameters":{"id":10794,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10791,"mutability":"mutable","name":"target","nameLocation":"16442:6:36","nodeType":"VariableDeclaration","scope":10804,"src":"16434:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10790,"name":"address","nodeType":"ElementaryTypeName","src":"16434:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10793,"mutability":"mutable","name":"newDelay","nameLocation":"16457:8:36","nodeType":"VariableDeclaration","scope":10804,"src":"16450:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10792,"name":"uint32","nodeType":"ElementaryTypeName","src":"16450:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"16433:33:36"},"returnParameters":{"id":10797,"nodeType":"ParameterList","parameters":[],"src":"16497:0:36"},"scope":11824,"src":"16405:147:36","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":10838,"nodeType":"Block","src":"16787:207:36","statements":[{"assignments":[10813],"declarations":[{"constant":false,"id":10813,"mutability":"mutable","name":"effect","nameLocation":"16804:6:36","nodeType":"VariableDeclaration","scope":10838,"src":"16797:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":10812,"name":"uint48","nodeType":"ElementaryTypeName","src":"16797:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":10814,"nodeType":"VariableDeclarationStatement","src":"16797:13:36"},{"expression":{"id":10830,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"baseExpression":{"id":10815,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9975,"src":"16821:8:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$9930_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":10817,"indexExpression":{"id":10816,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10807,"src":"16830:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16821:16:36","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$9930_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":10818,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16838:10:36","memberName":"adminDelay","nodeType":"MemberAccess","referencedDeclaration":9927,"src":"16821:27:36","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},{"id":10819,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10813,"src":"16850:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":10820,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"16820:37:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$8469_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":10826,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10809,"src":"16899:8:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":10827,"name":"minSetback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10122,"src":"16909:10:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint32_$","typeString":"function () view returns (uint32)"}},"id":10828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16909:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"expression":{"baseExpression":{"id":10821,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9975,"src":"16860:8:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$9930_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":10823,"indexExpression":{"id":10822,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10807,"src":"16869:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16860:16:36","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$9930_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":10824,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16877:10:36","memberName":"adminDelay","nodeType":"MemberAccess","referencedDeclaration":9927,"src":"16860:27:36","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$8469","typeString":"Time.Delay"}},"id":10825,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16888:10:36","memberName":"withUpdate","nodeType":"MemberAccess","referencedDeclaration":8616,"src":"16860:38:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$8469_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_Delay_$8469_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$8469_$","typeString":"function (Time.Delay,uint32,uint32) view returns (Time.Delay,uint48)"}},"id":10829,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16860:62:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$8469_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"src":"16820:102:36","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10831,"nodeType":"ExpressionStatement","src":"16820:102:36"},{"eventCall":{"arguments":[{"id":10833,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10807,"src":"16962:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10834,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10809,"src":"16970:8:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":10835,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10813,"src":"16980:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":10832,"name":"TargetAdminDelayUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1581,"src":"16938:23:36","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint32_$_t_uint48_$returns$__$","typeString":"function (address,uint32,uint48)"}},"id":10836,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16938:49:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10837,"nodeType":"EmitStatement","src":"16933:54:36"}]},"documentation":{"id":10805,"nodeType":"StructuredDocumentation","src":"16558:144:36","text":" @dev Internal version of {setTargetAdminDelay} without access control.\n Emits a {TargetAdminDelayUpdated} event."},"id":10839,"implemented":true,"kind":"function","modifiers":[],"name":"_setTargetAdminDelay","nameLocation":"16716:20:36","nodeType":"FunctionDefinition","parameters":{"id":10810,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10807,"mutability":"mutable","name":"target","nameLocation":"16745:6:36","nodeType":"VariableDeclaration","scope":10839,"src":"16737:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10806,"name":"address","nodeType":"ElementaryTypeName","src":"16737:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10809,"mutability":"mutable","name":"newDelay","nameLocation":"16760:8:36","nodeType":"VariableDeclaration","scope":10839,"src":"16753:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10808,"name":"uint32","nodeType":"ElementaryTypeName","src":"16753:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"16736:33:36"},"returnParameters":{"id":10811,"nodeType":"ParameterList","parameters":[],"src":"16787:0:36"},"scope":11824,"src":"16707:287:36","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[1824],"body":{"id":10854,"nodeType":"Block","src":"17239:49:36","statements":[{"expression":{"arguments":[{"id":10850,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10842,"src":"17266:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10851,"name":"closed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10844,"src":"17274:6:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":10849,"name":"_setTargetClosed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10876,"src":"17249:16:36","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bool_$returns$__$","typeString":"function (address,bool)"}},"id":10852,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17249:32:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10853,"nodeType":"ExpressionStatement","src":"17249:32:36"}]},"documentation":{"id":10840,"nodeType":"StructuredDocumentation","src":"17120:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"167bd395","id":10855,"implemented":true,"kind":"function","modifiers":[{"id":10847,"kind":"modifierInvocation","modifierName":{"id":10846,"name":"onlyAuthorized","nameLocations":["17224:14:36"],"nodeType":"IdentifierPath","referencedDeclaration":9997,"src":"17224:14:36"},"nodeType":"ModifierInvocation","src":"17224:14:36"}],"name":"setTargetClosed","nameLocation":"17164:15:36","nodeType":"FunctionDefinition","parameters":{"id":10845,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10842,"mutability":"mutable","name":"target","nameLocation":"17188:6:36","nodeType":"VariableDeclaration","scope":10855,"src":"17180:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10841,"name":"address","nodeType":"ElementaryTypeName","src":"17180:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10844,"mutability":"mutable","name":"closed","nameLocation":"17201:6:36","nodeType":"VariableDeclaration","scope":10855,"src":"17196:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10843,"name":"bool","nodeType":"ElementaryTypeName","src":"17196:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"17179:29:36"},"returnParameters":{"id":10848,"nodeType":"ParameterList","parameters":[],"src":"17239:0:36"},"scope":11824,"src":"17155:133:36","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":10875,"nodeType":"Block","src":"17530:92:36","statements":[{"expression":{"id":10868,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":10863,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9975,"src":"17540:8:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$9930_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":10865,"indexExpression":{"id":10864,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10858,"src":"17549:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17540:16:36","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$9930_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":10866,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"17557:6:36","memberName":"closed","nodeType":"MemberAccess","referencedDeclaration":9929,"src":"17540:23:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":10867,"name":"closed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10860,"src":"17566:6:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17540:32:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10869,"nodeType":"ExpressionStatement","src":"17540:32:36"},{"eventCall":{"arguments":[{"id":10871,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10858,"src":"17600:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10872,"name":"closed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10860,"src":"17608:6:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":10870,"name":"TargetClosed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1563,"src":"17587:12:36","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_bool_$returns$__$","typeString":"function (address,bool)"}},"id":10873,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17587:28:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10874,"nodeType":"EmitStatement","src":"17582:33:36"}]},"documentation":{"id":10856,"nodeType":"StructuredDocumentation","src":"17294:159:36","text":" @dev Set the closed flag for a contract. This is an internal setter with no access restrictions.\n Emits a {TargetClosed} event."},"id":10876,"implemented":true,"kind":"function","modifiers":[],"name":"_setTargetClosed","nameLocation":"17467:16:36","nodeType":"FunctionDefinition","parameters":{"id":10861,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10858,"mutability":"mutable","name":"target","nameLocation":"17492:6:36","nodeType":"VariableDeclaration","scope":10876,"src":"17484:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10857,"name":"address","nodeType":"ElementaryTypeName","src":"17484:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10860,"mutability":"mutable","name":"closed","nameLocation":"17505:6:36","nodeType":"VariableDeclaration","scope":10876,"src":"17500:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10859,"name":"bool","nodeType":"ElementaryTypeName","src":"17500:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"17483:29:36"},"returnParameters":{"id":10862,"nodeType":"ParameterList","parameters":[],"src":"17530:0:36"},"scope":11824,"src":"17458:164:36","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[1832],"body":{"id":10898,"nodeType":"Block","src":"17853:114:36","statements":[{"assignments":[10885],"declarations":[{"constant":false,"id":10885,"mutability":"mutable","name":"timepoint","nameLocation":"17870:9:36","nodeType":"VariableDeclaration","scope":10898,"src":"17863:16:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":10884,"name":"uint48","nodeType":"ElementaryTypeName","src":"17863:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":10890,"initialValue":{"expression":{"baseExpression":{"id":10886,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9985,"src":"17882:10:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$9954_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":10888,"indexExpression":{"id":10887,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10879,"src":"17893:2:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17882:14:36","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$9954_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":10889,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17897:9:36","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":9951,"src":"17882:24:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"17863:43:36"},{"expression":{"condition":{"arguments":[{"id":10892,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10885,"src":"17934:9:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":10891,"name":"_isExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11787,"src":"17923:10:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint48_$returns$_t_bool_$","typeString":"function (uint48) view returns (bool)"}},"id":10893,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17923:21:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":10895,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10885,"src":"17951:9:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":10896,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"17923:37:36","trueExpression":{"hexValue":"30","id":10894,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17947:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":10883,"id":10897,"nodeType":"Return","src":"17916:44:36"}]},"documentation":{"id":10877,"nodeType":"StructuredDocumentation","src":"17748:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"3adc277a","id":10899,"implemented":true,"kind":"function","modifiers":[],"name":"getSchedule","nameLocation":"17792:11:36","nodeType":"FunctionDefinition","parameters":{"id":10880,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10879,"mutability":"mutable","name":"id","nameLocation":"17812:2:36","nodeType":"VariableDeclaration","scope":10899,"src":"17804:10:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10878,"name":"bytes32","nodeType":"ElementaryTypeName","src":"17804:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"17803:12:36"},"returnParameters":{"id":10883,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10882,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10899,"src":"17845:6:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":10881,"name":"uint48","nodeType":"ElementaryTypeName","src":"17845:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"17844:8:36"},"scope":11824,"src":"17783:184:36","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1840],"body":{"id":10912,"nodeType":"Block","src":"18075:44:36","statements":[{"expression":{"expression":{"baseExpression":{"id":10907,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9985,"src":"18092:10:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$9954_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":10909,"indexExpression":{"id":10908,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10902,"src":"18103:2:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18092:14:36","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$9954_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":10910,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18107:5:36","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":9953,"src":"18092:20:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":10906,"id":10911,"nodeType":"Return","src":"18085:27:36"}]},"documentation":{"id":10900,"nodeType":"StructuredDocumentation","src":"17973:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"4136a33c","id":10913,"implemented":true,"kind":"function","modifiers":[],"name":"getNonce","nameLocation":"18017:8:36","nodeType":"FunctionDefinition","parameters":{"id":10903,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10902,"mutability":"mutable","name":"id","nameLocation":"18034:2:36","nodeType":"VariableDeclaration","scope":10913,"src":"18026:10:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10901,"name":"bytes32","nodeType":"ElementaryTypeName","src":"18026:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"18025:12:36"},"returnParameters":{"id":10906,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10905,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10913,"src":"18067:6:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10904,"name":"uint32","nodeType":"ElementaryTypeName","src":"18067:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"18066:8:36"},"scope":11824,"src":"18008:111:36","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1854],"body":{"id":11026,"nodeType":"Block","src":"18317:1216:36","statements":[{"assignments":[10928],"declarations":[{"constant":false,"id":10928,"mutability":"mutable","name":"caller","nameLocation":"18335:6:36","nodeType":"VariableDeclaration","scope":11026,"src":"18327:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10927,"name":"address","nodeType":"ElementaryTypeName","src":"18327:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":10931,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":10929,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3080,"src":"18344:10:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":10930,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18344:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"18327:29:36"},{"assignments":[null,10933],"declarations":[null,{"constant":false,"id":10933,"mutability":"mutable","name":"setback","nameLocation":"18457:7:36","nodeType":"VariableDeclaration","scope":11026,"src":"18450:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10932,"name":"uint32","nodeType":"ElementaryTypeName","src":"18450:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":10939,"initialValue":{"arguments":[{"id":10935,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10928,"src":"18485:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10936,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10916,"src":"18493:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10937,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10918,"src":"18501:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":10934,"name":"_canCallExtended","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11649,"src":"18468:16:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes calldata) view returns (bool,uint32)"}},"id":10938,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18468:38:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"18447:59:36"},{"assignments":[10941],"declarations":[{"constant":false,"id":10941,"mutability":"mutable","name":"minWhen","nameLocation":"18524:7:36","nodeType":"VariableDeclaration","scope":11026,"src":"18517:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":10940,"name":"uint48","nodeType":"ElementaryTypeName","src":"18517:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":10947,"initialValue":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":10946,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":10942,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8706,"src":"18534:4:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$8706_$","typeString":"type(library Time)"}},"id":10943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18539:9:36","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":8454,"src":"18534:14:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":10944,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18534:16:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":10945,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10933,"src":"18553:7:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"18534:26:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"18517:43:36"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":10950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10948,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10933,"src":"18667:7:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":10949,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18678:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18667:12:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10957,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":10953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10951,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10920,"src":"18684:4:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":10952,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18691:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18684:8:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":10956,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10954,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10920,"src":"18696:4:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":10955,"name":"minWhen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10941,"src":"18703:7:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"18696:14:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"18684:26:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":10958,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"18683:28:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"18667:44:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10969,"nodeType":"IfStatement","src":"18663:149:36","trueBody":{"id":10968,"nodeType":"Block","src":"18713:99:36","statements":[{"errorCall":{"arguments":[{"id":10961,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10928,"src":"18764:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10962,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10916,"src":"18772:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":10964,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10918,"src":"18795:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":10963,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11804,"src":"18780:14:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":10965,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18780:20:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":10960,"name":"AccessManagerUnauthorizedCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1617,"src":"18734:29:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$_t_bytes4_$returns$_t_error_$","typeString":"function (address,address,bytes4) pure returns (error)"}},"id":10966,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18734:67:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10967,"nodeType":"RevertStatement","src":"18727:74:36"}]}},{"expression":{"id":10979,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10970,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10920,"src":"18870:4:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":10975,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10920,"src":"18893:4:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":10976,"name":"minWhen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10941,"src":"18899:7:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"expression":{"id":10973,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6523,"src":"18884:4:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$6523_$","typeString":"type(library Math)"}},"id":10974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18889:3:36","memberName":"max","nodeType":"MemberAccess","referencedDeclaration":5133,"src":"18884:8:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":10977,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18884:23:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10972,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18877:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":10971,"name":"uint48","nodeType":"ElementaryTypeName","src":"18877:6:36","typeDescriptions":{}}},"id":10978,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18877:31:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"18870:38:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":10980,"nodeType":"ExpressionStatement","src":"18870:38:36"},{"expression":{"id":10987,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10981,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10923,"src":"19014:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":10983,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10928,"src":"19042:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10984,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10916,"src":"19050:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10985,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10918,"src":"19058:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":10982,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11379,"src":"19028:13:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (address,address,bytes calldata) view returns (bytes32)"}},"id":10986,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19028:35:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"19014:49:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":10988,"nodeType":"ExpressionStatement","src":"19014:49:36"},{"expression":{"arguments":[{"id":10990,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10923,"src":"19093:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":10989,"name":"_checkNotScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11055,"src":"19074:18:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$__$","typeString":"function (bytes32) view"}},"id":10991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19074:31:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10992,"nodeType":"ExpressionStatement","src":"19074:31:36"},{"id":11002,"nodeType":"UncheckedBlock","src":"19116:155:36","statements":[{"expression":{"id":11000,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10993,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10925,"src":"19219:5:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":10999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":10994,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9985,"src":"19227:10:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$9954_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":10996,"indexExpression":{"id":10995,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10923,"src":"19238:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19227:23:36","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$9954_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":10997,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19251:5:36","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":9953,"src":"19227:29:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":10998,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19259:1:36","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"19227:33:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"19219:41:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11001,"nodeType":"ExpressionStatement","src":"19219:41:36"}]},{"expression":{"id":11008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":11003,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9985,"src":"19280:10:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$9954_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":11005,"indexExpression":{"id":11004,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10923,"src":"19291:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19280:23:36","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$9954_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":11006,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"19304:9:36","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":9951,"src":"19280:33:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":11007,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10920,"src":"19316:4:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"19280:40:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":11009,"nodeType":"ExpressionStatement","src":"19280:40:36"},{"expression":{"id":11015,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":11010,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9985,"src":"19330:10:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$9954_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":11012,"indexExpression":{"id":11011,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10923,"src":"19341:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19330:23:36","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$9954_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":11013,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"19354:5:36","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":9953,"src":"19330:29:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":11014,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10925,"src":"19362:5:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"19330:37:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11016,"nodeType":"ExpressionStatement","src":"19330:37:36"},{"eventCall":{"arguments":[{"id":11018,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10923,"src":"19401:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":11019,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10925,"src":"19414:5:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":11020,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10920,"src":"19421:4:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":11021,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10928,"src":"19427:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11022,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10916,"src":"19435:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11023,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10918,"src":"19443:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":11017,"name":"OperationScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1492,"src":"19382:18:36","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint32_$_t_uint48_$_t_address_$_t_address_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes32,uint32,uint48,address,address,bytes memory)"}},"id":11024,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19382:66:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11025,"nodeType":"EmitStatement","src":"19377:71:36"}]},"documentation":{"id":10914,"nodeType":"StructuredDocumentation","src":"18125:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"f801a698","id":11027,"implemented":true,"kind":"function","modifiers":[],"name":"schedule","nameLocation":"18169:8:36","nodeType":"FunctionDefinition","parameters":{"id":10921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10916,"mutability":"mutable","name":"target","nameLocation":"18195:6:36","nodeType":"VariableDeclaration","scope":11027,"src":"18187:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10915,"name":"address","nodeType":"ElementaryTypeName","src":"18187:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10918,"mutability":"mutable","name":"data","nameLocation":"18226:4:36","nodeType":"VariableDeclaration","scope":11027,"src":"18211:19:36","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":10917,"name":"bytes","nodeType":"ElementaryTypeName","src":"18211:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10920,"mutability":"mutable","name":"when","nameLocation":"18247:4:36","nodeType":"VariableDeclaration","scope":11027,"src":"18240:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":10919,"name":"uint48","nodeType":"ElementaryTypeName","src":"18240:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"18177:80:36"},"returnParameters":{"id":10926,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10923,"mutability":"mutable","name":"operationId","nameLocation":"18290:11:36","nodeType":"VariableDeclaration","scope":11027,"src":"18282:19:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10922,"name":"bytes32","nodeType":"ElementaryTypeName","src":"18282:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":10925,"mutability":"mutable","name":"nonce","nameLocation":"18310:5:36","nodeType":"VariableDeclaration","scope":11027,"src":"18303:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10924,"name":"uint32","nodeType":"ElementaryTypeName","src":"18303:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"18281:35:36"},"scope":11824,"src":"18160:1373:36","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":11054,"nodeType":"Block","src":"19789:210:36","statements":[{"assignments":[11034],"declarations":[{"constant":false,"id":11034,"mutability":"mutable","name":"prevTimepoint","nameLocation":"19806:13:36","nodeType":"VariableDeclaration","scope":11054,"src":"19799:20:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":11033,"name":"uint48","nodeType":"ElementaryTypeName","src":"19799:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":11039,"initialValue":{"expression":{"baseExpression":{"id":11035,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9985,"src":"19822:10:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$9954_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":11037,"indexExpression":{"id":11036,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11030,"src":"19833:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19822:23:36","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$9954_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":11038,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19846:9:36","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":9951,"src":"19822:33:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"19799:56:36"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":11042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11040,"name":"prevTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11034,"src":"19869:13:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":11041,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19886:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"19869:18:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":11046,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"19891:26:36","subExpression":{"arguments":[{"id":11044,"name":"prevTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11034,"src":"19903:13:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":11043,"name":"_isExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11787,"src":"19892:10:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint48_$returns$_t_bool_$","typeString":"function (uint48) view returns (bool)"}},"id":11045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19892:25:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"19869:48:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11053,"nodeType":"IfStatement","src":"19865:128:36","trueBody":{"id":11052,"nodeType":"Block","src":"19919:74:36","statements":[{"errorCall":{"arguments":[{"id":11049,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11030,"src":"19970:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":11048,"name":"AccessManagerAlreadyScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1585,"src":"19940:29:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":11050,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19940:42:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11051,"nodeType":"RevertStatement","src":"19933:49:36"}]}}]},"documentation":{"id":11028,"nodeType":"StructuredDocumentation","src":"19539:183:36","text":" @dev Reverts if the operation is currently scheduled and has not expired.\n NOTE: This function was introduced due to stack too deep errors in schedule."},"id":11055,"implemented":true,"kind":"function","modifiers":[],"name":"_checkNotScheduled","nameLocation":"19736:18:36","nodeType":"FunctionDefinition","parameters":{"id":11031,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11030,"mutability":"mutable","name":"operationId","nameLocation":"19763:11:36","nodeType":"VariableDeclaration","scope":11055,"src":"19755:19:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11029,"name":"bytes32","nodeType":"ElementaryTypeName","src":"19755:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"19754:21:36"},"returnParameters":{"id":11032,"nodeType":"ParameterList","parameters":[],"src":"19789:0:36"},"scope":11824,"src":"19727:272:36","stateMutability":"view","virtual":false,"visibility":"private"},{"baseFunctions":[1864],"body":{"id":11152,"nodeType":"Block","src":"20363:1144:36","statements":[{"assignments":[11066],"declarations":[{"constant":false,"id":11066,"mutability":"mutable","name":"caller","nameLocation":"20381:6:36","nodeType":"VariableDeclaration","scope":11152,"src":"20373:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11065,"name":"address","nodeType":"ElementaryTypeName","src":"20373:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":11069,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":11067,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3080,"src":"20390:10:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":11068,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20390:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"20373:29:36"},{"assignments":[11071,11073],"declarations":[{"constant":false,"id":11071,"mutability":"mutable","name":"immediate","nameLocation":"20499:9:36","nodeType":"VariableDeclaration","scope":11152,"src":"20494:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11070,"name":"bool","nodeType":"ElementaryTypeName","src":"20494:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":11073,"mutability":"mutable","name":"setback","nameLocation":"20517:7:36","nodeType":"VariableDeclaration","scope":11152,"src":"20510:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11072,"name":"uint32","nodeType":"ElementaryTypeName","src":"20510:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11079,"initialValue":{"arguments":[{"id":11075,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11066,"src":"20545:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11076,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11058,"src":"20553:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11077,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11060,"src":"20561:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":11074,"name":"_canCallExtended","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11649,"src":"20528:16:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes calldata) view returns (bool,uint32)"}},"id":11078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20528:38:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"20493:73:36"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"20626:10:36","subExpression":{"id":11080,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11071,"src":"20627:9:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11082,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11073,"src":"20640:7:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":11083,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20651:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20640:12:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"20626:26:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11095,"nodeType":"IfStatement","src":"20622:131:36","trueBody":{"id":11094,"nodeType":"Block","src":"20654:99:36","statements":[{"errorCall":{"arguments":[{"id":11087,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11066,"src":"20705:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11088,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11058,"src":"20713:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":11090,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11060,"src":"20736:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":11089,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11804,"src":"20721:14:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":11091,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20721:20:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":11086,"name":"AccessManagerUnauthorizedCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1617,"src":"20675:29:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$_t_bytes4_$returns$_t_error_$","typeString":"function (address,address,bytes4) pure returns (error)"}},"id":11092,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20675:67:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11093,"nodeType":"RevertStatement","src":"20668:74:36"}]}},{"assignments":[11097],"declarations":[{"constant":false,"id":11097,"mutability":"mutable","name":"operationId","nameLocation":"20771:11:36","nodeType":"VariableDeclaration","scope":11152,"src":"20763:19:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11096,"name":"bytes32","nodeType":"ElementaryTypeName","src":"20763:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":11103,"initialValue":{"arguments":[{"id":11099,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11066,"src":"20799:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11100,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11058,"src":"20807:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11101,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11060,"src":"20815:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":11098,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11379,"src":"20785:13:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (address,address,bytes calldata) view returns (bytes32)"}},"id":11102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20785:35:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"20763:57:36"},{"assignments":[11105],"declarations":[{"constant":false,"id":11105,"mutability":"mutable","name":"nonce","nameLocation":"20837:5:36","nodeType":"VariableDeclaration","scope":11152,"src":"20830:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11104,"name":"uint32","nodeType":"ElementaryTypeName","src":"20830:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11106,"nodeType":"VariableDeclarationStatement","src":"20830:12:36"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11107,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11073,"src":"21022:7:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":11108,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21033:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"21022:12:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":11114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11111,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11097,"src":"21050:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":11110,"name":"getSchedule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10899,"src":"21038:11:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_uint48_$","typeString":"function (bytes32) view returns (uint48)"}},"id":11112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21038:24:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":11113,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21066:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"21038:29:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"21022:45:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11123,"nodeType":"IfStatement","src":"21018:116:36","trueBody":{"id":11122,"nodeType":"Block","src":"21069:65:36","statements":[{"expression":{"id":11120,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11116,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11105,"src":"21083:5:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11118,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11097,"src":"21111:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":11117,"name":"_consumeScheduledOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11357,"src":"21091:19:36","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$_t_uint32_$","typeString":"function (bytes32) returns (uint32)"}},"id":11119,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21091:32:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"21083:40:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11121,"nodeType":"ExpressionStatement","src":"21083:40:36"}]}},{"assignments":[11125],"declarations":[{"constant":false,"id":11125,"mutability":"mutable","name":"executionIdBefore","nameLocation":"21206:17:36","nodeType":"VariableDeclaration","scope":11152,"src":"21198:25:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11124,"name":"bytes32","nodeType":"ElementaryTypeName","src":"21198:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":11127,"initialValue":{"id":11126,"name":"_executionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9987,"src":"21226:12:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"21198:40:36"},{"expression":{"id":11135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11128,"name":"_executionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9987,"src":"21248:12:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11130,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11058,"src":"21280:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":11132,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11060,"src":"21303:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":11131,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11804,"src":"21288:14:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":11133,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21288:20:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":11129,"name":"_hashExecutionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11823,"src":"21263:16:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_bytes4_$returns$_t_bytes32_$","typeString":"function (address,bytes4) pure returns (bytes32)"}},"id":11134,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21263:46:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"21248:61:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":11136,"nodeType":"ExpressionStatement","src":"21248:61:36"},{"expression":{"arguments":[{"id":11140,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11058,"src":"21374:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11141,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11060,"src":"21382:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"expression":{"id":11142,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"21388:3:36","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":11143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21392:5:36","memberName":"value","nodeType":"MemberAccess","src":"21388:9:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":11137,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3068,"src":"21344:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$3068_$","typeString":"type(library Address)"}},"id":11139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21352:21:36","memberName":"functionCallWithValue","nodeType":"MemberAccess","referencedDeclaration":2933,"src":"21344:29:36","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256) returns (bytes memory)"}},"id":11144,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21344:54:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11145,"nodeType":"ExpressionStatement","src":"21344:54:36"},{"expression":{"id":11148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11146,"name":"_executionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9987,"src":"21445:12:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":11147,"name":"executionIdBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11125,"src":"21460:17:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"21445:32:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":11149,"nodeType":"ExpressionStatement","src":"21445:32:36"},{"expression":{"id":11150,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11105,"src":"21495:5:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":11064,"id":11151,"nodeType":"Return","src":"21488:12:36"}]},"documentation":{"id":11056,"nodeType":"StructuredDocumentation","src":"20005:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"1cff79cd","id":11153,"implemented":true,"kind":"function","modifiers":[],"name":"execute","nameLocation":"20278:7:36","nodeType":"FunctionDefinition","parameters":{"id":11061,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11058,"mutability":"mutable","name":"target","nameLocation":"20294:6:36","nodeType":"VariableDeclaration","scope":11153,"src":"20286:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11057,"name":"address","nodeType":"ElementaryTypeName","src":"20286:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11060,"mutability":"mutable","name":"data","nameLocation":"20317:4:36","nodeType":"VariableDeclaration","scope":11153,"src":"20302:19:36","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":11059,"name":"bytes","nodeType":"ElementaryTypeName","src":"20302:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"20285:37:36"},"returnParameters":{"id":11064,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11063,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11153,"src":"20355:6:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11062,"name":"uint32","nodeType":"ElementaryTypeName","src":"20355:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"20354:8:36"},"scope":11824,"src":"20269:1238:36","stateMutability":"payable","virtual":true,"visibility":"public"},{"baseFunctions":[1876],"body":{"id":11254,"nodeType":"Block","src":"21649:1007:36","statements":[{"assignments":[11166],"declarations":[{"constant":false,"id":11166,"mutability":"mutable","name":"msgsender","nameLocation":"21667:9:36","nodeType":"VariableDeclaration","scope":11254,"src":"21659:17:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11165,"name":"address","nodeType":"ElementaryTypeName","src":"21659:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":11169,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":11167,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3080,"src":"21679:10:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":11168,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21679:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"21659:32:36"},{"assignments":[11171],"declarations":[{"constant":false,"id":11171,"mutability":"mutable","name":"selector","nameLocation":"21708:8:36","nodeType":"VariableDeclaration","scope":11254,"src":"21701:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":11170,"name":"bytes4","nodeType":"ElementaryTypeName","src":"21701:6:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":11175,"initialValue":{"arguments":[{"id":11173,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11160,"src":"21734:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":11172,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11804,"src":"21719:14:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":11174,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21719:20:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"21701:38:36"},{"assignments":[11177],"declarations":[{"constant":false,"id":11177,"mutability":"mutable","name":"operationId","nameLocation":"21758:11:36","nodeType":"VariableDeclaration","scope":11254,"src":"21750:19:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11176,"name":"bytes32","nodeType":"ElementaryTypeName","src":"21750:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":11183,"initialValue":{"arguments":[{"id":11179,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11156,"src":"21786:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11180,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"21794:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11181,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11160,"src":"21802:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":11178,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11379,"src":"21772:13:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (address,address,bytes calldata) view returns (bytes32)"}},"id":11182,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21772:35:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"21750:57:36"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":11189,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":11184,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9985,"src":"21821:10:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$9954_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":11186,"indexExpression":{"id":11185,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11177,"src":"21832:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21821:23:36","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$9954_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":11187,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21845:9:36","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":9951,"src":"21821:33:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":11188,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21858:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"21821:38:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":11197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11195,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11156,"src":"21941:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11196,"name":"msgsender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11166,"src":"21951:9:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21941:19:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11232,"nodeType":"IfStatement","src":"21937:494:36","trueBody":{"id":11231,"nodeType":"Block","src":"21962:469:36","statements":[{"assignments":[11199,null],"declarations":[{"constant":false,"id":11199,"mutability":"mutable","name":"isAdmin","nameLocation":"22115:7:36","nodeType":"VariableDeclaration","scope":11231,"src":"22110:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11198,"name":"bool","nodeType":"ElementaryTypeName","src":"22110:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":11204,"initialValue":{"arguments":[{"id":11201,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9962,"src":"22136:10:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":11202,"name":"msgsender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11166,"src":"22148:9:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":11200,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10332,"src":"22128:7:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_bool_$_t_uint32_$","typeString":"function (uint64,address) view returns (bool,uint32)"}},"id":11203,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22128:30:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"22109:49:36"},{"assignments":[11206,null],"declarations":[{"constant":false,"id":11206,"mutability":"mutable","name":"isGuardian","nameLocation":"22178:10:36","nodeType":"VariableDeclaration","scope":11231,"src":"22173:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11205,"name":"bool","nodeType":"ElementaryTypeName","src":"22173:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":11216,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":11210,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"22240:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11211,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11171,"src":"22248:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":11209,"name":"getTargetFunctionRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10154,"src":"22218:21:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_uint64_$","typeString":"function (address,bytes4) view returns (uint64)"}},"id":11212,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22218:39:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":11208,"name":"getRoleGuardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10198,"src":"22202:15:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$returns$_t_uint64_$","typeString":"function (uint64) view returns (uint64)"}},"id":11213,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22202:56:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":11214,"name":"msgsender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11166,"src":"22260:9:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":11207,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10332,"src":"22194:7:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_bool_$_t_uint32_$","typeString":"function (uint64,address) view returns (bool,uint32)"}},"id":11215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22194:76:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"22172:98:36"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11221,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"22288:8:36","subExpression":{"id":11217,"name":"isAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11199,"src":"22289:7:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":11220,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"22300:11:36","subExpression":{"id":11219,"name":"isGuardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11206,"src":"22301:10:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"22288:23:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11230,"nodeType":"IfStatement","src":"22284:137:36","trueBody":{"id":11229,"nodeType":"Block","src":"22313:108:36","statements":[{"errorCall":{"arguments":[{"id":11223,"name":"msgsender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11166,"src":"22370:9:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11224,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11156,"src":"22381:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11225,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"22389:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11226,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11171,"src":"22397:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":11222,"name":"AccessManagerUnauthorizedCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"22338:31:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$_t_address_$_t_bytes4_$returns$_t_error_$","typeString":"function (address,address,address,bytes4) pure returns (error)"}},"id":11227,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22338:68:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11228,"nodeType":"RevertStatement","src":"22331:75:36"}]}}]}},"id":11233,"nodeType":"IfStatement","src":"21817:614:36","trueBody":{"id":11194,"nodeType":"Block","src":"21861:70:36","statements":[{"errorCall":{"arguments":[{"id":11191,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11177,"src":"21908:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":11190,"name":"AccessManagerNotScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1589,"src":"21882:25:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":11192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21882:38:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11193,"nodeType":"RevertStatement","src":"21875:45:36"}]}},{"expression":{"id":11238,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"22441:40:36","subExpression":{"expression":{"baseExpression":{"id":11234,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9985,"src":"22448:10:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$9954_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":11236,"indexExpression":{"id":11235,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11177,"src":"22459:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22448:23:36","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$9954_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":11237,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"22472:9:36","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":9951,"src":"22448:33:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11239,"nodeType":"ExpressionStatement","src":"22441:40:36"},{"assignments":[11241],"declarations":[{"constant":false,"id":11241,"mutability":"mutable","name":"nonce","nameLocation":"22537:5:36","nodeType":"VariableDeclaration","scope":11254,"src":"22530:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11240,"name":"uint32","nodeType":"ElementaryTypeName","src":"22530:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11246,"initialValue":{"expression":{"baseExpression":{"id":11242,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9985,"src":"22545:10:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$9954_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":11244,"indexExpression":{"id":11243,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11177,"src":"22556:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22545:23:36","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$9954_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":11245,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22569:5:36","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":9953,"src":"22545:29:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"22530:44:36"},{"eventCall":{"arguments":[{"id":11248,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11177,"src":"22607:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":11249,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11241,"src":"22620:5:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":11247,"name":"OperationCanceled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1506,"src":"22589:17:36","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint32_$returns$__$","typeString":"function (bytes32,uint32)"}},"id":11250,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22589:37:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11251,"nodeType":"EmitStatement","src":"22584:42:36"},{"expression":{"id":11252,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11241,"src":"22644:5:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":11164,"id":11253,"nodeType":"Return","src":"22637:12:36"}]},"documentation":{"id":11154,"nodeType":"StructuredDocumentation","src":"21513:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"d6bb62c6","id":11255,"implemented":true,"kind":"function","modifiers":[],"name":"cancel","nameLocation":"21557:6:36","nodeType":"FunctionDefinition","parameters":{"id":11161,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11156,"mutability":"mutable","name":"caller","nameLocation":"21572:6:36","nodeType":"VariableDeclaration","scope":11255,"src":"21564:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11155,"name":"address","nodeType":"ElementaryTypeName","src":"21564:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11158,"mutability":"mutable","name":"target","nameLocation":"21588:6:36","nodeType":"VariableDeclaration","scope":11255,"src":"21580:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11157,"name":"address","nodeType":"ElementaryTypeName","src":"21580:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11160,"mutability":"mutable","name":"data","nameLocation":"21611:4:36","nodeType":"VariableDeclaration","scope":11255,"src":"21596:19:36","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":11159,"name":"bytes","nodeType":"ElementaryTypeName","src":"21596:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"21563:53:36"},"returnParameters":{"id":11164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11163,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11255,"src":"21641:6:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11162,"name":"uint32","nodeType":"ElementaryTypeName","src":"21641:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"21640:8:36"},"scope":11824,"src":"21548:1108:36","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1884],"body":{"id":11291,"nodeType":"Block","src":"22777:296:36","statements":[{"assignments":[11264],"declarations":[{"constant":false,"id":11264,"mutability":"mutable","name":"target","nameLocation":"22795:6:36","nodeType":"VariableDeclaration","scope":11291,"src":"22787:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11263,"name":"address","nodeType":"ElementaryTypeName","src":"22787:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":11267,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":11265,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3080,"src":"22804:10:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":11266,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22804:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"22787:29:36"},{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":11276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":11269,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11264,"src":"22845:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":11268,"name":"IAccessManaged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1473,"src":"22830:14:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManaged_$1473_$","typeString":"type(contract IAccessManaged)"}},"id":11270,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22830:22:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManaged_$1473","typeString":"contract IAccessManaged"}},"id":11271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22853:22:36","memberName":"isConsumingScheduledOp","nodeType":"MemberAccess","referencedDeclaration":1472,"src":"22830:45:36","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_bytes4_$","typeString":"function () view external returns (bytes4)"}},"id":11272,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22830:47:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"expression":{"id":11273,"name":"IAccessManaged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1473,"src":"22881:14:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManaged_$1473_$","typeString":"type(contract IAccessManaged)"}},"id":11274,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"22896:22:36","memberName":"isConsumingScheduledOp","nodeType":"MemberAccess","referencedDeclaration":1472,"src":"22881:37:36","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$__$returns$_t_bytes4_$","typeString":"function IAccessManaged.isConsumingScheduledOp() view returns (bytes4)"}},"id":11275,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"22919:8:36","memberName":"selector","nodeType":"MemberAccess","src":"22881:46:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"22830:97:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11282,"nodeType":"IfStatement","src":"22826:175:36","trueBody":{"id":11281,"nodeType":"Block","src":"22929:72:36","statements":[{"errorCall":{"arguments":[{"id":11278,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11264,"src":"22983:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":11277,"name":"AccessManagerUnauthorizedConsume","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1621,"src":"22950:32:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":11279,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22950:40:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11280,"nodeType":"RevertStatement","src":"22943:47:36"}]}},{"expression":{"arguments":[{"arguments":[{"id":11285,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11258,"src":"23044:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11286,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11264,"src":"23052:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11287,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11260,"src":"23060:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":11284,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11379,"src":"23030:13:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (address,address,bytes calldata) view returns (bytes32)"}},"id":11288,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23030:35:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":11283,"name":"_consumeScheduledOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11357,"src":"23010:19:36","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$_t_uint32_$","typeString":"function (bytes32) returns (uint32)"}},"id":11289,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23010:56:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11290,"nodeType":"ExpressionStatement","src":"23010:56:36"}]},"documentation":{"id":11256,"nodeType":"StructuredDocumentation","src":"22662:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"94c7d7ee","id":11292,"implemented":true,"kind":"function","modifiers":[],"name":"consumeScheduledOp","nameLocation":"22706:18:36","nodeType":"FunctionDefinition","parameters":{"id":11261,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11258,"mutability":"mutable","name":"caller","nameLocation":"22733:6:36","nodeType":"VariableDeclaration","scope":11292,"src":"22725:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11257,"name":"address","nodeType":"ElementaryTypeName","src":"22725:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11260,"mutability":"mutable","name":"data","nameLocation":"22756:4:36","nodeType":"VariableDeclaration","scope":11292,"src":"22741:19:36","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":11259,"name":"bytes","nodeType":"ElementaryTypeName","src":"22741:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"22724:37:36"},"returnParameters":{"id":11262,"nodeType":"ParameterList","parameters":[],"src":"22777:0:36"},"scope":11824,"src":"22697:376:36","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":11356,"nodeType":"Block","src":"23347:592:36","statements":[{"assignments":[11301],"declarations":[{"constant":false,"id":11301,"mutability":"mutable","name":"timepoint","nameLocation":"23364:9:36","nodeType":"VariableDeclaration","scope":11356,"src":"23357:16:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":11300,"name":"uint48","nodeType":"ElementaryTypeName","src":"23357:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":11306,"initialValue":{"expression":{"baseExpression":{"id":11302,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9985,"src":"23376:10:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$9954_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":11304,"indexExpression":{"id":11303,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11295,"src":"23387:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"23376:23:36","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$9954_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":11305,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23400:9:36","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":9951,"src":"23376:33:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"23357:52:36"},{"assignments":[11308],"declarations":[{"constant":false,"id":11308,"mutability":"mutable","name":"nonce","nameLocation":"23426:5:36","nodeType":"VariableDeclaration","scope":11356,"src":"23419:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11307,"name":"uint32","nodeType":"ElementaryTypeName","src":"23419:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11313,"initialValue":{"expression":{"baseExpression":{"id":11309,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9985,"src":"23434:10:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$9954_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":11311,"indexExpression":{"id":11310,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11295,"src":"23445:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"23434:23:36","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$9954_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":11312,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23458:5:36","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":9953,"src":"23434:29:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"23419:44:36"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":11316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11314,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11301,"src":"23478:9:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":11315,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23491:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23478:14:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":11326,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11322,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11301,"src":"23574:9:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":11323,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8706,"src":"23586:4:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$8706_$","typeString":"type(library Time)"}},"id":11324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23591:9:36","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":8454,"src":"23586:14:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":11325,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23586:16:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"23574:28:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"arguments":[{"id":11333,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11301,"src":"23691:9:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":11332,"name":"_isExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11787,"src":"23680:10:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint48_$returns$_t_bool_$","typeString":"function (uint48) view returns (bool)"}},"id":11334,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23680:21:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11340,"nodeType":"IfStatement","src":"23676:92:36","trueBody":{"id":11339,"nodeType":"Block","src":"23703:65:36","statements":[{"errorCall":{"arguments":[{"id":11336,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11295,"src":"23745:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":11335,"name":"AccessManagerExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1597,"src":"23724:20:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":11337,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23724:33:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11338,"nodeType":"RevertStatement","src":"23717:40:36"}]}},"id":11341,"nodeType":"IfStatement","src":"23570:198:36","trueBody":{"id":11331,"nodeType":"Block","src":"23604:66:36","statements":[{"errorCall":{"arguments":[{"id":11328,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11295,"src":"23647:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":11327,"name":"AccessManagerNotReady","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1593,"src":"23625:21:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":11329,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23625:34:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11330,"nodeType":"RevertStatement","src":"23618:41:36"}]}},"id":11342,"nodeType":"IfStatement","src":"23474:294:36","trueBody":{"id":11321,"nodeType":"Block","src":"23494:70:36","statements":[{"errorCall":{"arguments":[{"id":11318,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11295,"src":"23541:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":11317,"name":"AccessManagerNotScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1589,"src":"23515:25:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":11319,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23515:38:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11320,"nodeType":"RevertStatement","src":"23508:45:36"}]}},{"expression":{"id":11347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"23778:40:36","subExpression":{"expression":{"baseExpression":{"id":11343,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9985,"src":"23785:10:36","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$9954_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":11345,"indexExpression":{"id":11344,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11295,"src":"23796:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"23785:23:36","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$9954_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":11346,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"23809:9:36","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":9951,"src":"23785:33:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11348,"nodeType":"ExpressionStatement","src":"23778:40:36"},{"eventCall":{"arguments":[{"id":11350,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11295,"src":"23890:11:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":11351,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11308,"src":"23903:5:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":11349,"name":"OperationExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1499,"src":"23872:17:36","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint32_$returns$__$","typeString":"function (bytes32,uint32)"}},"id":11352,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23872:37:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11353,"nodeType":"EmitStatement","src":"23867:42:36"},{"expression":{"id":11354,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11308,"src":"23927:5:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":11299,"id":11355,"nodeType":"Return","src":"23920:12:36"}]},"documentation":{"id":11293,"nodeType":"StructuredDocumentation","src":"23079:179:36","text":" @dev Internal variant of {consumeScheduledOp} that operates on bytes32 operationId.\n Returns the nonce of the scheduled operation that is consumed."},"id":11357,"implemented":true,"kind":"function","modifiers":[],"name":"_consumeScheduledOp","nameLocation":"23272:19:36","nodeType":"FunctionDefinition","parameters":{"id":11296,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11295,"mutability":"mutable","name":"operationId","nameLocation":"23300:11:36","nodeType":"VariableDeclaration","scope":11357,"src":"23292:19:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11294,"name":"bytes32","nodeType":"ElementaryTypeName","src":"23292:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"23291:21:36"},"returnParameters":{"id":11299,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11298,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11357,"src":"23339:6:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11297,"name":"uint32","nodeType":"ElementaryTypeName","src":"23339:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"23338:8:36"},"scope":11824,"src":"23263:676:36","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[1896],"body":{"id":11378,"nodeType":"Block","src":"24094:67:36","statements":[{"expression":{"arguments":[{"arguments":[{"id":11372,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11360,"src":"24132:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11373,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11362,"src":"24140:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11374,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11364,"src":"24148:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":11370,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"24121:3:36","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":11371,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"24125:6:36","memberName":"encode","nodeType":"MemberAccess","src":"24121:10:36","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":11375,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24121:32:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11369,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"24111:9:36","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":11376,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24111:43:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":11368,"id":11377,"nodeType":"Return","src":"24104:50:36"}]},"documentation":{"id":11358,"nodeType":"StructuredDocumentation","src":"23945:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"abd9bd2a","id":11379,"implemented":true,"kind":"function","modifiers":[],"name":"hashOperation","nameLocation":"23989:13:36","nodeType":"FunctionDefinition","parameters":{"id":11365,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11360,"mutability":"mutable","name":"caller","nameLocation":"24011:6:36","nodeType":"VariableDeclaration","scope":11379,"src":"24003:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11359,"name":"address","nodeType":"ElementaryTypeName","src":"24003:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11362,"mutability":"mutable","name":"target","nameLocation":"24027:6:36","nodeType":"VariableDeclaration","scope":11379,"src":"24019:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11361,"name":"address","nodeType":"ElementaryTypeName","src":"24019:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11364,"mutability":"mutable","name":"data","nameLocation":"24050:4:36","nodeType":"VariableDeclaration","scope":11379,"src":"24035:19:36","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":11363,"name":"bytes","nodeType":"ElementaryTypeName","src":"24035:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"24002:53:36"},"returnParameters":{"id":11368,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11367,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11379,"src":"24085:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11366,"name":"bytes32","nodeType":"ElementaryTypeName","src":"24085:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"24084:9:36"},"scope":11824,"src":"23980:181:36","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1904],"body":{"id":11396,"nodeType":"Block","src":"24415:66:36","statements":[{"expression":{"arguments":[{"id":11393,"name":"newAuthority","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11384,"src":"24461:12:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"id":11390,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11382,"src":"24440:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":11389,"name":"IAccessManaged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1473,"src":"24425:14:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManaged_$1473_$","typeString":"type(contract IAccessManaged)"}},"id":11391,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24425:22:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManaged_$1473","typeString":"contract IAccessManaged"}},"id":11392,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24448:12:36","memberName":"setAuthority","nodeType":"MemberAccess","referencedDeclaration":1466,"src":"24425:35:36","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$returns$__$","typeString":"function (address) external"}},"id":11394,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24425:49:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11395,"nodeType":"ExpressionStatement","src":"24425:49:36"}]},"documentation":{"id":11380,"nodeType":"StructuredDocumentation","src":"24287:30:36","text":"@inheritdoc IAccessManager"},"functionSelector":"18ff183c","id":11397,"implemented":true,"kind":"function","modifiers":[{"id":11387,"kind":"modifierInvocation","modifierName":{"id":11386,"name":"onlyAuthorized","nameLocations":["24400:14:36"],"nodeType":"IdentifierPath","referencedDeclaration":9997,"src":"24400:14:36"},"nodeType":"ModifierInvocation","src":"24400:14:36"}],"name":"updateAuthority","nameLocation":"24331:15:36","nodeType":"FunctionDefinition","parameters":{"id":11385,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11382,"mutability":"mutable","name":"target","nameLocation":"24355:6:36","nodeType":"VariableDeclaration","scope":11397,"src":"24347:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11381,"name":"address","nodeType":"ElementaryTypeName","src":"24347:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11384,"mutability":"mutable","name":"newAuthority","nameLocation":"24371:12:36","nodeType":"VariableDeclaration","scope":11397,"src":"24363:20:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11383,"name":"address","nodeType":"ElementaryTypeName","src":"24363:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"24346:38:36"},"returnParameters":{"id":11388,"nodeType":"ParameterList","parameters":[],"src":"24415:0:36"},"scope":11824,"src":"24322:159:36","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":11450,"nodeType":"Block","src":"24871:467:36","statements":[{"assignments":[11402],"declarations":[{"constant":false,"id":11402,"mutability":"mutable","name":"caller","nameLocation":"24889:6:36","nodeType":"VariableDeclaration","scope":11450,"src":"24881:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11401,"name":"address","nodeType":"ElementaryTypeName","src":"24881:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":11405,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":11403,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3080,"src":"24898:10:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":11404,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24898:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"24881:29:36"},{"assignments":[11407,11409],"declarations":[{"constant":false,"id":11407,"mutability":"mutable","name":"immediate","nameLocation":"24926:9:36","nodeType":"VariableDeclaration","scope":11450,"src":"24921:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11406,"name":"bool","nodeType":"ElementaryTypeName","src":"24921:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":11409,"mutability":"mutable","name":"delay","nameLocation":"24944:5:36","nodeType":"VariableDeclaration","scope":11450,"src":"24937:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11408,"name":"uint32","nodeType":"ElementaryTypeName","src":"24937:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11415,"initialValue":{"arguments":[{"id":11411,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11402,"src":"24966:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":11412,"name":"_msgData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3089,"src":"24974:8:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":11413,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24974:10:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":11410,"name":"_canCallSelf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11751,"src":"24953:12:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,bytes calldata) view returns (bool,uint32)"}},"id":11414,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24953:32:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"24920:65:36"},{"condition":{"id":11417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"24999:10:36","subExpression":{"id":11416,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11407,"src":"25000:9:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11449,"nodeType":"IfStatement","src":"24995:337:36","trueBody":{"id":11448,"nodeType":"Block","src":"25011:321:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11418,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11409,"src":"25029:5:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":11419,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25038:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"25029:10:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":11446,"nodeType":"Block","src":"25220:102:36","statements":[{"expression":{"arguments":[{"arguments":[{"id":11436,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11402,"src":"25272:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":11439,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25288:4:36","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}],"id":11438,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25280:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11437,"name":"address","nodeType":"ElementaryTypeName","src":"25280:7:36","typeDescriptions":{}}},"id":11440,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25280:13:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":11441,"name":"_msgData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3089,"src":"25295:8:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":11442,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25295:10:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":11435,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11379,"src":"25258:13:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (address,address,bytes calldata) view returns (bytes32)"}},"id":11443,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25258:48:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":11434,"name":"_consumeScheduledOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11357,"src":"25238:19:36","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$_t_uint32_$","typeString":"function (bytes32) returns (uint32)"}},"id":11444,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25238:69:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11445,"nodeType":"ExpressionStatement","src":"25238:69:36"}]},"id":11447,"nodeType":"IfStatement","src":"25025:297:36","trueBody":{"id":11433,"nodeType":"Block","src":"25041:173:36","statements":[{"assignments":[null,11422,null],"declarations":[null,{"constant":false,"id":11422,"mutability":"mutable","name":"requiredRole","nameLocation":"25069:12:36","nodeType":"VariableDeclaration","scope":11433,"src":"25062:19:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":11421,"name":"uint64","nodeType":"ElementaryTypeName","src":"25062:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},null],"id":11427,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":11424,"name":"_msgData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3089,"src":"25109:8:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":11425,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25109:10:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":11423,"name":"_getAdminRestrictions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11604,"src":"25087:21:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"function (bytes calldata) view returns (bool,uint64,uint32)"}},"id":11426,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25087:33:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"tuple(bool,uint64,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"25059:61:36"},{"errorCall":{"arguments":[{"id":11429,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11402,"src":"25178:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11430,"name":"requiredRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11422,"src":"25186:12:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":11428,"name":"AccessManagerUnauthorizedAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1609,"src":"25145:32:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint64_$returns$_t_error_$","typeString":"function (address,uint64) pure returns (error)"}},"id":11431,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25145:54:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11432,"nodeType":"RevertStatement","src":"25138:61:36"}]}}]}}]},"documentation":{"id":11398,"nodeType":"StructuredDocumentation","src":"24607:223:36","text":" @dev Check if the current call is authorized according to admin and roles logic.\n WARNING: Carefully review the considerations of {AccessManaged-restricted} since they apply to this modifier."},"id":11451,"implemented":true,"kind":"function","modifiers":[],"name":"_checkAuthorized","nameLocation":"24844:16:36","nodeType":"FunctionDefinition","parameters":{"id":11399,"nodeType":"ParameterList","parameters":[],"src":"24860:2:36"},"returnParameters":{"id":11400,"nodeType":"ParameterList","parameters":[],"src":"24871:0:36"},"scope":11824,"src":"24835:503:36","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":11603,"nodeType":"Block","src":"25897:1525:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11466,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11463,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11454,"src":"25911:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":11464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25916:6:36","memberName":"length","nodeType":"MemberAccess","src":"25911:11:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"34","id":11465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25925:1:36","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25911:15:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11473,"nodeType":"IfStatement","src":"25907:66:36","trueBody":{"id":11472,"nodeType":"Block","src":"25928:45:36","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":11467,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"25950:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":11468,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25957:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":11469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25960:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":11470,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"25949:13:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0,int_const 0)"}},"functionReturnParameters":11462,"id":11471,"nodeType":"Return","src":"25942:20:36"}]}},{"assignments":[11475],"declarations":[{"constant":false,"id":11475,"mutability":"mutable","name":"selector","nameLocation":"25990:8:36","nodeType":"VariableDeclaration","scope":11603,"src":"25983:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":11474,"name":"bytes4","nodeType":"ElementaryTypeName","src":"25983:6:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":11479,"initialValue":{"arguments":[{"id":11477,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11454,"src":"26016:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":11476,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11804,"src":"26001:14:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":11478,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26001:20:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"25983:38:36"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11508,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11502,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11496,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11490,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":11484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11480,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11475,"src":"26141:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":11481,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26153:4:36","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}},"id":11482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26158:9:36","memberName":"labelRole","nodeType":"MemberAccess","referencedDeclaration":10361,"src":"26153:14:36","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_string_memory_ptr_$returns$__$","typeString":"function (uint64,string memory) external"}},"id":11483,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26168:8:36","memberName":"selector","nodeType":"MemberAccess","src":"26153:23:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26141:35:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":11489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11485,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11475,"src":"26192:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":11486,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26204:4:36","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}},"id":11487,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26209:12:36","memberName":"setRoleAdmin","nodeType":"MemberAccess","referencedDeclaration":10438,"src":"26204:17:36","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64) external"}},"id":11488,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26222:8:36","memberName":"selector","nodeType":"MemberAccess","src":"26204:26:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26192:38:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26141:89:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":11495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11491,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11475,"src":"26246:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":11492,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26258:4:36","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}},"id":11493,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26263:15:36","memberName":"setRoleGuardian","nodeType":"MemberAccess","referencedDeclaration":10454,"src":"26258:20:36","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64) external"}},"id":11494,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26279:8:36","memberName":"selector","nodeType":"MemberAccess","src":"26258:29:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26246:41:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26141:146:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":11501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11497,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11475,"src":"26303:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":11498,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26315:4:36","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}},"id":11499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26320:13:36","memberName":"setGrantDelay","nodeType":"MemberAccess","referencedDeclaration":10470,"src":"26315:18:36","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_uint32_$returns$__$","typeString":"function (uint64,uint32) external"}},"id":11500,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26334:8:36","memberName":"selector","nodeType":"MemberAccess","src":"26315:27:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26303:39:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26141:201:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":11507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11503,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11475,"src":"26358:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":11504,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26370:4:36","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}},"id":11505,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26375:19:36","memberName":"setTargetAdminDelay","nodeType":"MemberAccess","referencedDeclaration":10804,"src":"26370:24:36","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint32_$returns$__$","typeString":"function (address,uint32) external"}},"id":11506,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26395:8:36","memberName":"selector","nodeType":"MemberAccess","src":"26370:33:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26358:45:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26141:262:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11515,"nodeType":"IfStatement","src":"26124:343:36","trueBody":{"id":11514,"nodeType":"Block","src":"26414:53:36","statements":[{"expression":{"components":[{"hexValue":"74727565","id":11509,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"26436:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":11510,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9962,"src":"26442:10:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"hexValue":"30","id":11511,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26454:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":11512,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"26435:21:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_rational_0_by_1_$","typeString":"tuple(bool,uint64,int_const 0)"}},"functionReturnParameters":11462,"id":11513,"nodeType":"Return","src":"26428:28:36"}]}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11532,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":11520,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11516,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11475,"src":"26574:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":11517,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26586:4:36","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}},"id":11518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26591:15:36","memberName":"updateAuthority","nodeType":"MemberAccess","referencedDeclaration":11397,"src":"26586:20:36","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address) external"}},"id":11519,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26607:8:36","memberName":"selector","nodeType":"MemberAccess","src":"26586:29:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26574:41:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":11525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11521,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11475,"src":"26631:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":11522,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26643:4:36","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}},"id":11523,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26648:15:36","memberName":"setTargetClosed","nodeType":"MemberAccess","referencedDeclaration":10855,"src":"26643:20:36","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_bool_$returns$__$","typeString":"function (address,bool) external"}},"id":11524,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26664:8:36","memberName":"selector","nodeType":"MemberAccess","src":"26643:29:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26631:41:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26574:98:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":11531,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11527,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11475,"src":"26688:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":11528,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26700:4:36","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}},"id":11529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26705:21:36","memberName":"setTargetFunctionRole","nodeType":"MemberAccess","referencedDeclaration":10762,"src":"26700:26:36","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_array$_t_bytes4_$dyn_memory_ptr_$_t_uint64_$returns$__$","typeString":"function (address,bytes4[] memory,uint64) external"}},"id":11530,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26727:8:36","memberName":"selector","nodeType":"MemberAccess","src":"26700:35:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26688:47:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26574:161:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11558,"nodeType":"IfStatement","src":"26557:414:36","trueBody":{"id":11557,"nodeType":"Block","src":"26746:225:36","statements":[{"assignments":[11534],"declarations":[{"constant":false,"id":11534,"mutability":"mutable","name":"target","nameLocation":"26811:6:36","nodeType":"VariableDeclaration","scope":11557,"src":"26803:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11533,"name":"address","nodeType":"ElementaryTypeName","src":"26803:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":11545,"initialValue":{"arguments":[{"baseExpression":{"id":11537,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11454,"src":"26831:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"30783234","id":11539,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26841:4:36","typeDescriptions":{"typeIdentifier":"t_rational_36_by_1","typeString":"int_const 36"},"value":"0x24"},"id":11540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"26831:15:36","startExpression":{"hexValue":"30783034","id":11538,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26836:4:36","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"0x04"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"id":11542,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26849:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11541,"name":"address","nodeType":"ElementaryTypeName","src":"26849:7:36","typeDescriptions":{}}}],"id":11543,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"26848:9:36","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}],"expression":{"id":11535,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"26820:3:36","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":11536,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26824:6:36","memberName":"decode","nodeType":"MemberAccess","src":"26820:10:36","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":11544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26820:38:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"nodeType":"VariableDeclarationStatement","src":"26803:55:36"},{"assignments":[11547],"declarations":[{"constant":false,"id":11547,"mutability":"mutable","name":"delay","nameLocation":"26879:5:36","nodeType":"VariableDeclaration","scope":11557,"src":"26872:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11546,"name":"uint32","nodeType":"ElementaryTypeName","src":"26872:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11551,"initialValue":{"arguments":[{"id":11549,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11534,"src":"26907:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":11548,"name":"getTargetAdminDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10170,"src":"26887:19:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint32_$","typeString":"function (address) view returns (uint32)"}},"id":11550,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26887:27:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"26872:42:36"},{"expression":{"components":[{"hexValue":"74727565","id":11552,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"26936:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":11553,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9962,"src":"26942:10:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":11554,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11547,"src":"26954:5:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":11555,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26935:25:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"tuple(bool,uint64,uint32)"}},"functionReturnParameters":11462,"id":11556,"nodeType":"Return","src":"26928:32:36"}]}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":11563,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11559,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11475,"src":"27090:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":11560,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"27102:4:36","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}},"id":11561,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27107:9:36","memberName":"grantRole","nodeType":"MemberAccess","referencedDeclaration":10383,"src":"27102:14:36","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_address_$_t_uint32_$returns$__$","typeString":"function (uint64,address,uint32) external"}},"id":11562,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"27117:8:36","memberName":"selector","nodeType":"MemberAccess","src":"27102:23:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"27090:35:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":11568,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11564,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11475,"src":"27129:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":11565,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"27141:4:36","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}},"id":11566,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27146:10:36","memberName":"revokeRole","nodeType":"MemberAccess","referencedDeclaration":10399,"src":"27141:15:36","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_address_$returns$__$","typeString":"function (uint64,address) external"}},"id":11567,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"27157:8:36","memberName":"selector","nodeType":"MemberAccess","src":"27141:24:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"27129:36:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"27090:75:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11591,"nodeType":"IfStatement","src":"27086:254:36","trueBody":{"id":11590,"nodeType":"Block","src":"27167:173:36","statements":[{"assignments":[11571],"declarations":[{"constant":false,"id":11571,"mutability":"mutable","name":"roleId","nameLocation":"27231:6:36","nodeType":"VariableDeclaration","scope":11590,"src":"27224:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":11570,"name":"uint64","nodeType":"ElementaryTypeName","src":"27224:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":11582,"initialValue":{"arguments":[{"baseExpression":{"id":11574,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11454,"src":"27251:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"30783234","id":11576,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27261:4:36","typeDescriptions":{"typeIdentifier":"t_rational_36_by_1","typeString":"int_const 36"},"value":"0x24"},"id":11577,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"27251:15:36","startExpression":{"hexValue":"30783034","id":11575,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27256:4:36","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"0x04"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"id":11579,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27269:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":11578,"name":"uint64","nodeType":"ElementaryTypeName","src":"27269:6:36","typeDescriptions":{}}}],"id":11580,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27268:8:36","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"expression":{"id":11572,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"27240:3:36","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":11573,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"27244:6:36","memberName":"decode","nodeType":"MemberAccess","src":"27240:10:36","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":11581,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27240:37:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"27224:53:36"},{"expression":{"components":[{"hexValue":"74727565","id":11583,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"27299:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"arguments":[{"id":11585,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11571,"src":"27318:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":11584,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10184,"src":"27305:12:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$returns$_t_uint64_$","typeString":"function (uint64) view returns (uint64)"}},"id":11586,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27305:20:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"hexValue":"30","id":11587,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27327:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":11588,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"27298:31:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_rational_0_by_1_$","typeString":"tuple(bool,uint64,int_const 0)"}},"functionReturnParameters":11462,"id":11589,"nodeType":"Return","src":"27291:38:36"}]}},{"expression":{"components":[{"hexValue":"66616c7365","id":11592,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"27358:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"arguments":[{"id":11596,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"27395:4:36","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}],"id":11595,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27387:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11594,"name":"address","nodeType":"ElementaryTypeName","src":"27387:7:36","typeDescriptions":{}}},"id":11597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27387:13:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11598,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11475,"src":"27402:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":11593,"name":"getTargetFunctionRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10154,"src":"27365:21:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_uint64_$","typeString":"function (address,bytes4) view returns (uint64)"}},"id":11599,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27365:46:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"hexValue":"30","id":11600,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27413:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":11601,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"27357:58:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_rational_0_by_1_$","typeString":"tuple(bool,uint64,int_const 0)"}},"functionReturnParameters":11462,"id":11602,"nodeType":"Return","src":"27350:65:36"}]},"documentation":{"id":11452,"nodeType":"StructuredDocumentation","src":"25344:395:36","text":" @dev Get the admin restrictions of a given function call based on the function and arguments involved.\n Returns:\n - bool restricted: does this data match a restricted operation\n - uint64: which role is this operation restricted to\n - uint32: minimum delay to enforce for that operation (max between operation's delay and admin's execution delay)"},"id":11604,"implemented":true,"kind":"function","modifiers":[],"name":"_getAdminRestrictions","nameLocation":"25753:21:36","nodeType":"FunctionDefinition","parameters":{"id":11455,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11454,"mutability":"mutable","name":"data","nameLocation":"25799:4:36","nodeType":"VariableDeclaration","scope":11604,"src":"25784:19:36","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":11453,"name":"bytes","nodeType":"ElementaryTypeName","src":"25784:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"25774:35:36"},"returnParameters":{"id":11462,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11457,"mutability":"mutable","name":"adminRestricted","nameLocation":"25837:15:36","nodeType":"VariableDeclaration","scope":11604,"src":"25832:20:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11456,"name":"bool","nodeType":"ElementaryTypeName","src":"25832:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":11459,"mutability":"mutable","name":"roleAdminId","nameLocation":"25861:11:36","nodeType":"VariableDeclaration","scope":11604,"src":"25854:18:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":11458,"name":"uint64","nodeType":"ElementaryTypeName","src":"25854:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":11461,"mutability":"mutable","name":"executionDelay","nameLocation":"25881:14:36","nodeType":"VariableDeclaration","scope":11604,"src":"25874:21:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11460,"name":"uint32","nodeType":"ElementaryTypeName","src":"25874:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"25831:65:36"},"scope":11824,"src":"25744:1678:36","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":11648,"nodeType":"Block","src":"28014:217:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":11623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11618,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11609,"src":"28028:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":11621,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28046:4:36","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}],"id":11620,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28038:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11619,"name":"address","nodeType":"ElementaryTypeName","src":"28038:7:36","typeDescriptions":{}}},"id":11622,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28038:13:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"28028:23:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":11646,"nodeType":"Block","src":"28117:108:36","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11633,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11630,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11611,"src":"28138:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":11631,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28143:6:36","memberName":"length","nodeType":"MemberAccess","src":"28138:11:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"34","id":11632,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28152:1:36","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"28138:15:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":11638,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11607,"src":"28177:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11639,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11609,"src":"28185:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":11641,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11611,"src":"28208:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":11640,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11804,"src":"28193:14:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":11642,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28193:20:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":11637,"name":"canCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10104,"src":"28169:7:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes4) view returns (bool,uint32)"}},"id":11643,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28169:45:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"id":11644,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"28138:76:36","trueExpression":{"components":[{"hexValue":"66616c7365","id":11634,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"28157:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":11635,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28164:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":11636,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"28156:10:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":11617,"id":11645,"nodeType":"Return","src":"28131:83:36"}]},"id":11647,"nodeType":"IfStatement","src":"28024:201:36","trueBody":{"id":11629,"nodeType":"Block","src":"28053:58:36","statements":[{"expression":{"arguments":[{"id":11625,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11607,"src":"28087:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11626,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11611,"src":"28095:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":11624,"name":"_canCallSelf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11751,"src":"28074:12:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,bytes calldata) view returns (bool,uint32)"}},"id":11627,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28074:26:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":11617,"id":11628,"nodeType":"Return","src":"28067:33:36"}]}}]},"documentation":{"id":11605,"nodeType":"StructuredDocumentation","src":"27548:300:36","text":" @dev An extended version of {canCall} for internal usage that checks {_canCallSelf}\n when the target is this contract.\n Returns:\n - bool immediate: whether the operation can be executed immediately (with no delay)\n - uint32 delay: the execution delay"},"id":11649,"implemented":true,"kind":"function","modifiers":[],"name":"_canCallExtended","nameLocation":"27862:16:36","nodeType":"FunctionDefinition","parameters":{"id":11612,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11607,"mutability":"mutable","name":"caller","nameLocation":"27896:6:36","nodeType":"VariableDeclaration","scope":11649,"src":"27888:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11606,"name":"address","nodeType":"ElementaryTypeName","src":"27888:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11609,"mutability":"mutable","name":"target","nameLocation":"27920:6:36","nodeType":"VariableDeclaration","scope":11649,"src":"27912:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11608,"name":"address","nodeType":"ElementaryTypeName","src":"27912:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11611,"mutability":"mutable","name":"data","nameLocation":"27951:4:36","nodeType":"VariableDeclaration","scope":11649,"src":"27936:19:36","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":11610,"name":"bytes","nodeType":"ElementaryTypeName","src":"27936:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"27878:83:36"},"returnParameters":{"id":11617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11614,"mutability":"mutable","name":"immediate","nameLocation":"27989:9:36","nodeType":"VariableDeclaration","scope":11649,"src":"27984:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11613,"name":"bool","nodeType":"ElementaryTypeName","src":"27984:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":11616,"mutability":"mutable","name":"delay","nameLocation":"28007:5:36","nodeType":"VariableDeclaration","scope":11649,"src":"28000:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11615,"name":"uint32","nodeType":"ElementaryTypeName","src":"28000:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"27983:30:36"},"scope":11824,"src":"27853:378:36","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":11750,"nodeType":"Block","src":"28446:996:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11661,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11654,"src":"28460:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":11662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28465:6:36","memberName":"length","nodeType":"MemberAccess","src":"28460:11:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"34","id":11663,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28474:1:36","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"28460:15:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11670,"nodeType":"IfStatement","src":"28456:63:36","trueBody":{"id":11669,"nodeType":"Block","src":"28477:42:36","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":11665,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"28499:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":11666,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28506:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":11667,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"28498:10:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":11660,"id":11668,"nodeType":"Return","src":"28491:17:36"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":11676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11671,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11652,"src":"28533:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":11674,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28551:4:36","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}],"id":11673,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28543:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11672,"name":"address","nodeType":"ElementaryTypeName","src":"28543:7:36","typeDescriptions":{}}},"id":11675,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28543:13:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"28533:23:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11690,"nodeType":"IfStatement","src":"28529:334:36","trueBody":{"id":11689,"nodeType":"Block","src":"28558:305:36","statements":[{"expression":{"components":[{"arguments":[{"arguments":[{"id":11680,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28820:4:36","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}],"id":11679,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28812:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11678,"name":"address","nodeType":"ElementaryTypeName","src":"28812:7:36","typeDescriptions":{}}},"id":11681,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28812:13:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":11683,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11654,"src":"28842:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":11682,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11804,"src":"28827:14:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":11684,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28827:20:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":11677,"name":"_isExecuting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11769,"src":"28799:12:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":11685,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28799:49:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"30","id":11686,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28850:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":11687,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"28798:54:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":11660,"id":11688,"nodeType":"Return","src":"28791:61:36"}]}},{"assignments":[11692,11694,11696],"declarations":[{"constant":false,"id":11692,"mutability":"mutable","name":"adminRestricted","nameLocation":"28879:15:36","nodeType":"VariableDeclaration","scope":11750,"src":"28874:20:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11691,"name":"bool","nodeType":"ElementaryTypeName","src":"28874:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":11694,"mutability":"mutable","name":"roleId","nameLocation":"28903:6:36","nodeType":"VariableDeclaration","scope":11750,"src":"28896:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":11693,"name":"uint64","nodeType":"ElementaryTypeName","src":"28896:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":11696,"mutability":"mutable","name":"operationDelay","nameLocation":"28918:14:36","nodeType":"VariableDeclaration","scope":11750,"src":"28911:21:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11695,"name":"uint32","nodeType":"ElementaryTypeName","src":"28911:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11700,"initialValue":{"arguments":[{"id":11698,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11654,"src":"28958:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":11697,"name":"_getAdminRestrictions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11604,"src":"28936:21:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"function (bytes calldata) view returns (bool,uint64,uint32)"}},"id":11699,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28936:27:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"tuple(bool,uint64,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"28873:90:36"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"29043:16:36","subExpression":{"id":11701,"name":"adminRestricted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11692,"src":"29044:15:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"arguments":[{"arguments":[{"id":11706,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"29086:4:36","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$11824","typeString":"contract AccessManager"}],"id":11705,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29078:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11704,"name":"address","nodeType":"ElementaryTypeName","src":"29078:7:36","typeDescriptions":{}}},"id":11707,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29078:13:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":11703,"name":"isTargetClosed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10136,"src":"29063:14:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":11708,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29063:29:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"29043:49:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11715,"nodeType":"IfStatement","src":"29039:97:36","trueBody":{"id":11714,"nodeType":"Block","src":"29094:42:36","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":11710,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"29116:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":11711,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29123:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":11712,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"29115:10:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":11660,"id":11713,"nodeType":"Return","src":"29108:17:36"}]}},{"assignments":[11717,11719],"declarations":[{"constant":false,"id":11717,"mutability":"mutable","name":"inRole","nameLocation":"29152:6:36","nodeType":"VariableDeclaration","scope":11750,"src":"29147:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11716,"name":"bool","nodeType":"ElementaryTypeName","src":"29147:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":11719,"mutability":"mutable","name":"executionDelay","nameLocation":"29167:14:36","nodeType":"VariableDeclaration","scope":11750,"src":"29160:21:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11718,"name":"uint32","nodeType":"ElementaryTypeName","src":"29160:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11724,"initialValue":{"arguments":[{"id":11721,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11694,"src":"29193:6:36","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":11722,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11652,"src":"29201:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":11720,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10332,"src":"29185:7:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_bool_$_t_uint32_$","typeString":"function (uint64,address) view returns (bool,uint32)"}},"id":11723,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29185:23:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"29146:62:36"},{"condition":{"id":11726,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"29222:7:36","subExpression":{"id":11725,"name":"inRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11717,"src":"29223:6:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11732,"nodeType":"IfStatement","src":"29218:55:36","trueBody":{"id":11731,"nodeType":"Block","src":"29231:42:36","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":11727,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"29253:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":11728,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29260:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":11729,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"29252:10:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":11660,"id":11730,"nodeType":"Return","src":"29245:17:36"}]}},{"expression":{"id":11742,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11733,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11659,"src":"29343:5:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":11738,"name":"operationDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11696,"src":"29367:14:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":11739,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11719,"src":"29383:14:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":11736,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6523,"src":"29358:4:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$6523_$","typeString":"type(library Math)"}},"id":11737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29363:3:36","memberName":"max","nodeType":"MemberAccess","referencedDeclaration":5133,"src":"29358:8:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":11740,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29358:40:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11735,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29351:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":11734,"name":"uint32","nodeType":"ElementaryTypeName","src":"29351:6:36","typeDescriptions":{}}},"id":11741,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29351:48:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"29343:56:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11743,"nodeType":"ExpressionStatement","src":"29343:56:36"},{"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11744,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11659,"src":"29417:5:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":11745,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29426:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"29417:10:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":11747,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11659,"src":"29429:5:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":11748,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"29416:19:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":11660,"id":11749,"nodeType":"Return","src":"29409:26:36"}]},"documentation":{"id":11650,"nodeType":"StructuredDocumentation","src":"28237:93:36","text":" @dev A version of {canCall} that checks for restrictions in this contract."},"id":11751,"implemented":true,"kind":"function","modifiers":[],"name":"_canCallSelf","nameLocation":"28344:12:36","nodeType":"FunctionDefinition","parameters":{"id":11655,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11652,"mutability":"mutable","name":"caller","nameLocation":"28365:6:36","nodeType":"VariableDeclaration","scope":11751,"src":"28357:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11651,"name":"address","nodeType":"ElementaryTypeName","src":"28357:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11654,"mutability":"mutable","name":"data","nameLocation":"28388:4:36","nodeType":"VariableDeclaration","scope":11751,"src":"28373:19:36","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":11653,"name":"bytes","nodeType":"ElementaryTypeName","src":"28373:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"28356:37:36"},"returnParameters":{"id":11660,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11657,"mutability":"mutable","name":"immediate","nameLocation":"28421:9:36","nodeType":"VariableDeclaration","scope":11751,"src":"28416:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11656,"name":"bool","nodeType":"ElementaryTypeName","src":"28416:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":11659,"mutability":"mutable","name":"delay","nameLocation":"28439:5:36","nodeType":"VariableDeclaration","scope":11751,"src":"28432:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11658,"name":"uint32","nodeType":"ElementaryTypeName","src":"28432:6:36","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"28415:30:36"},"scope":11824,"src":"28335:1107:36","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":11768,"nodeType":"Block","src":"29645:74:36","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":11766,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11761,"name":"_executionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9987,"src":"29662:12:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":11763,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11754,"src":"29695:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11764,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11756,"src":"29703:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":11762,"name":"_hashExecutionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11823,"src":"29678:16:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_bytes4_$returns$_t_bytes32_$","typeString":"function (address,bytes4) pure returns (bytes32)"}},"id":11765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29678:34:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"29662:50:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":11760,"id":11767,"nodeType":"Return","src":"29655:57:36"}]},"documentation":{"id":11752,"nodeType":"StructuredDocumentation","src":"29448:109:36","text":" @dev Returns true if a call with `target` and `selector` is being executed via {executed}."},"id":11769,"implemented":true,"kind":"function","modifiers":[],"name":"_isExecuting","nameLocation":"29571:12:36","nodeType":"FunctionDefinition","parameters":{"id":11757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11754,"mutability":"mutable","name":"target","nameLocation":"29592:6:36","nodeType":"VariableDeclaration","scope":11769,"src":"29584:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11753,"name":"address","nodeType":"ElementaryTypeName","src":"29584:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11756,"mutability":"mutable","name":"selector","nameLocation":"29607:8:36","nodeType":"VariableDeclaration","scope":11769,"src":"29600:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":11755,"name":"bytes4","nodeType":"ElementaryTypeName","src":"29600:6:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"29583:33:36"},"returnParameters":{"id":11760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11759,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11769,"src":"29639:4:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11758,"name":"bool","nodeType":"ElementaryTypeName","src":"29639:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"29638:6:36"},"scope":11824,"src":"29562:157:36","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":11786,"nodeType":"Block","src":"29889:68:36","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":11784,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":11780,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11777,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11772,"src":"29906:9:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":11778,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10113,"src":"29918:10:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint32_$","typeString":"function () view returns (uint32)"}},"id":11779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29918:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"29906:24:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":11781,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8706,"src":"29934:4:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$8706_$","typeString":"type(library Time)"}},"id":11782,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29939:9:36","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":8454,"src":"29934:14:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":11783,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29934:16:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"29906:44:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":11776,"id":11785,"nodeType":"Return","src":"29899:51:36"}]},"documentation":{"id":11770,"nodeType":"StructuredDocumentation","src":"29725:93:36","text":" @dev Returns true if a schedule timepoint is past its expiration deadline."},"id":11787,"implemented":true,"kind":"function","modifiers":[],"name":"_isExpired","nameLocation":"29832:10:36","nodeType":"FunctionDefinition","parameters":{"id":11773,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11772,"mutability":"mutable","name":"timepoint","nameLocation":"29850:9:36","nodeType":"VariableDeclaration","scope":11787,"src":"29843:16:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":11771,"name":"uint48","nodeType":"ElementaryTypeName","src":"29843:6:36","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"29842:18:36"},"returnParameters":{"id":11776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11775,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11787,"src":"29883:4:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11774,"name":"bool","nodeType":"ElementaryTypeName","src":"29883:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"29882:6:36"},"scope":11824,"src":"29823:134:36","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":11803,"nodeType":"Block","src":"30142:41:36","statements":[{"expression":{"arguments":[{"baseExpression":{"id":11797,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11790,"src":"30166:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":11799,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30173:1:36","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":11800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"30166:9:36","startExpression":{"hexValue":"30","id":11798,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30171:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":11796,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30159:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":11795,"name":"bytes4","nodeType":"ElementaryTypeName","src":"30159:6:36","typeDescriptions":{}}},"id":11801,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30159:17:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":11794,"id":11802,"nodeType":"Return","src":"30152:24:36"}]},"documentation":{"id":11788,"nodeType":"StructuredDocumentation","src":"29963:99:36","text":" @dev Extracts the selector from calldata. Panics if data is not at least 4 bytes"},"id":11804,"implemented":true,"kind":"function","modifiers":[],"name":"_checkSelector","nameLocation":"30076:14:36","nodeType":"FunctionDefinition","parameters":{"id":11791,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11790,"mutability":"mutable","name":"data","nameLocation":"30106:4:36","nodeType":"VariableDeclaration","scope":11804,"src":"30091:19:36","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":11789,"name":"bytes","nodeType":"ElementaryTypeName","src":"30091:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"30090:21:36"},"returnParameters":{"id":11794,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11793,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11804,"src":"30134:6:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":11792,"name":"bytes4","nodeType":"ElementaryTypeName","src":"30134:6:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"30133:8:36"},"scope":11824,"src":"30067:116:36","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":11822,"nodeType":"Block","src":"30347:63:36","statements":[{"expression":{"arguments":[{"arguments":[{"id":11817,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11807,"src":"30385:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11818,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11809,"src":"30393:8:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":11815,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"30374:3:36","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":11816,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"30378:6:36","memberName":"encode","nodeType":"MemberAccess","src":"30374:10:36","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":11819,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30374:28:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11814,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"30364:9:36","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":11820,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30364:39:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":11813,"id":11821,"nodeType":"Return","src":"30357:46:36"}]},"documentation":{"id":11805,"nodeType":"StructuredDocumentation","src":"30189:63:36","text":" @dev Hashing function for execute protection"},"id":11823,"implemented":true,"kind":"function","modifiers":[],"name":"_hashExecutionId","nameLocation":"30266:16:36","nodeType":"FunctionDefinition","parameters":{"id":11810,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11807,"mutability":"mutable","name":"target","nameLocation":"30291:6:36","nodeType":"VariableDeclaration","scope":11823,"src":"30283:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11806,"name":"address","nodeType":"ElementaryTypeName","src":"30283:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11809,"mutability":"mutable","name":"selector","nameLocation":"30306:8:36","nodeType":"VariableDeclaration","scope":11823,"src":"30299:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":11808,"name":"bytes4","nodeType":"ElementaryTypeName","src":"30299:6:36","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"30282:33:36"},"returnParameters":{"id":11813,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11812,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11823,"src":"30338:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11811,"name":"bytes32","nodeType":"ElementaryTypeName","src":"30338:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"30337:9:36"},"scope":11824,"src":"30257:153:36","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":11825,"src":"3931:26481:36","usedErrors":[1585,1589,1593,1597,1601,1603,1609,1617,1621,1631,1635,2818,3108,3111,6533],"usedEvents":[1492,1499,1506,1513,1526,1533,1540,1547,1556,1563,1572,1581]}],"src":"116:30297:36"},"id":36},"contracts/dependencies/FrozenTime.sol":{"ast":{"absolutePath":"contracts/dependencies/FrozenTime.sol","exportedSymbols":{"FrozenTime":[12098],"Math":[6523],"SafeCast":[8288]},"id":12099,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":11826,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"104:24:37"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"@openzeppelin/contracts/utils/math/Math.sol","id":11828,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12099,"sourceUnit":6524,"src":"130:65:37","symbolAliases":[{"foreign":{"id":11827,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6523,"src":"138:4:37","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"@openzeppelin/contracts/utils/math/SafeCast.sol","id":11830,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12099,"sourceUnit":8289,"src":"196:73:37","symbolAliases":[{"foreign":{"id":11829,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"204:8:37","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"FrozenTime","contractDependencies":[],"contractKind":"library","documentation":{"id":11831,"nodeType":"StructuredDocumentation","src":"271:422:37","text":" @dev This library provides helpers for manipulating time-related objects.\n It uses the following types:\n - `uint48` for timepoints\n - `uint32` for durations\n While the library doesn't provide specific types for timepoints and duration, it does provide:\n - a `Delay` type to represent duration that can be programmed to change value automatically at a given point\n - additional helper functions"},"fullyImplemented":true,"id":12098,"linearizedBaseContracts":[12098],"name":"FrozenTime","nameLocation":"702:10:37","nodeType":"ContractDefinition","nodes":[{"global":false,"id":11833,"libraryName":{"id":11832,"name":"FrozenTime","nameLocations":["725:10:37"],"nodeType":"IdentifierPath","referencedDeclaration":12098,"src":"725:10:37"},"nodeType":"UsingForDirective","src":"719:23:37"},{"body":{"id":11844,"nodeType":"Block","src":"868:122:37","statements":[{"expression":{"arguments":[{"hexValue":"3332353033363830303030","id":11841,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"957:11:37","typeDescriptions":{"typeIdentifier":"t_rational_32503680000_by_1","typeString":"int_const 32503680000"},"value":"32503680000"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32503680000_by_1","typeString":"int_const 32503680000"}],"expression":{"id":11839,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"939:8:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":11840,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"948:8:37","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":7278,"src":"939:17:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":11842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"939:30:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":11838,"id":11843,"nodeType":"Return","src":"932:37:37"}]},"documentation":{"id":11834,"nodeType":"StructuredDocumentation","src":"748:63:37","text":" @dev Get the block timestamp as a Timepoint."},"id":11845,"implemented":true,"kind":"function","modifiers":[],"name":"timestamp","nameLocation":"825:9:37","nodeType":"FunctionDefinition","parameters":{"id":11835,"nodeType":"ParameterList","parameters":[],"src":"834:2:37"},"returnParameters":{"id":11838,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11837,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11845,"src":"860:6:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":11836,"name":"uint48","nodeType":"ElementaryTypeName","src":"860:6:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"859:8:37"},"scope":12098,"src":"816:174:37","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11857,"nodeType":"Block","src":"1115:55:37","statements":[{"expression":{"arguments":[{"expression":{"id":11853,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"1150:5:37","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":11854,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1156:6:37","memberName":"number","nodeType":"MemberAccess","src":"1150:12:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":11851,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"1132:8:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$8288_$","typeString":"type(library SafeCast)"}},"id":11852,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1141:8:37","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":7278,"src":"1132:17:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":11855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1132:31:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":11850,"id":11856,"nodeType":"Return","src":"1125:38:37"}]},"documentation":{"id":11846,"nodeType":"StructuredDocumentation","src":"996:60:37","text":" @dev Get the block number as a Timepoint."},"id":11858,"implemented":true,"kind":"function","modifiers":[],"name":"blockNumber","nameLocation":"1070:11:37","nodeType":"FunctionDefinition","parameters":{"id":11847,"nodeType":"ParameterList","parameters":[],"src":"1081:2:37"},"returnParameters":{"id":11850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11849,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11858,"src":"1107:6:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":11848,"name":"uint48","nodeType":"ElementaryTypeName","src":"1107:6:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"1106:8:37"},"scope":12098,"src":"1061:109:37","stateMutability":"view","virtual":false,"visibility":"internal"},{"canonicalName":"FrozenTime.Delay","id":11860,"name":"Delay","nameLocation":"2507:5:37","nodeType":"UserDefinedValueTypeDefinition","src":"2502:22:37","underlyingType":{"id":11859,"name":"uint112","nodeType":"ElementaryTypeName","src":"2516:7:37","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}},{"body":{"id":11874,"nodeType":"Block","src":"2702:44:37","statements":[{"expression":{"arguments":[{"id":11871,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11863,"src":"2730:8:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":11869,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11860,"src":"2719:5:37","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$11860_$","typeString":"type(FrozenTime.Delay)"}},"id":11870,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2725:4:37","memberName":"wrap","nodeType":"MemberAccess","src":"2719:10:37","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint112_$returns$_t_userDefinedValueType$_Delay_$11860_$","typeString":"function (uint112) pure returns (FrozenTime.Delay)"}},"id":11872,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2719:20:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}},"functionReturnParameters":11868,"id":11873,"nodeType":"Return","src":"2712:27:37"}]},"documentation":{"id":11861,"nodeType":"StructuredDocumentation","src":"2530:103:37","text":" @dev Wrap a duration into a Delay to add the one-step \"update in the future\" feature"},"id":11875,"implemented":true,"kind":"function","modifiers":[],"name":"toDelay","nameLocation":"2647:7:37","nodeType":"FunctionDefinition","parameters":{"id":11864,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11863,"mutability":"mutable","name":"duration","nameLocation":"2662:8:37","nodeType":"VariableDeclaration","scope":11875,"src":"2655:15:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11862,"name":"uint32","nodeType":"ElementaryTypeName","src":"2655:6:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2654:17:37"},"returnParameters":{"id":11868,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11867,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11875,"src":"2695:5:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"},"typeName":{"id":11866,"nodeType":"UserDefinedTypeName","pathNode":{"id":11865,"name":"Delay","nameLocations":["2695:5:37"],"nodeType":"IdentifierPath","referencedDeclaration":11860,"src":"2695:5:37"},"referencedDeclaration":11860,"src":"2695:5:37","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}},"visibility":"internal"}],"src":"2694:7:37"},"scope":12098,"src":"2638:108:37","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11913,"nodeType":"Block","src":"3094:180:37","statements":[{"assignments":[11891,11893,11895],"declarations":[{"constant":false,"id":11891,"mutability":"mutable","name":"valueBefore","nameLocation":"3112:11:37","nodeType":"VariableDeclaration","scope":11913,"src":"3105:18:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11890,"name":"uint32","nodeType":"ElementaryTypeName","src":"3105:6:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":11893,"mutability":"mutable","name":"valueAfter","nameLocation":"3132:10:37","nodeType":"VariableDeclaration","scope":11913,"src":"3125:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11892,"name":"uint32","nodeType":"ElementaryTypeName","src":"3125:6:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":11895,"mutability":"mutable","name":"effect","nameLocation":"3151:6:37","nodeType":"VariableDeclaration","scope":11913,"src":"3144:13:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":11894,"name":"uint48","nodeType":"ElementaryTypeName","src":"3144:6:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":11899,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":11896,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11879,"src":"3161:4:37","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}},"id":11897,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3166:6:37","memberName":"unpack","nodeType":"MemberAccess","referencedDeclaration":12059,"src":"3161:11:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$11860_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$11860_$","typeString":"function (FrozenTime.Delay) pure returns (uint32,uint32,uint48)"}},"id":11898,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3161:13:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"VariableDeclarationStatement","src":"3104:70:37"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":11902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11900,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11895,"src":"3191:6:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":11901,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11881,"src":"3201:9:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"3191:19:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"id":11907,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11891,"src":"3235:11:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":11908,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11893,"src":"3248:10:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":11909,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11895,"src":"3260:6:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":11910,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3234:33:37","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"id":11911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3191:76:37","trueExpression":{"components":[{"id":11903,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11893,"src":"3214:10:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":11904,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3226:1:37","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":11905,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3229:1:37","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":11906,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3213:18:37","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_rational_0_by_1_$_t_rational_0_by_1_$","typeString":"tuple(uint32,int_const 0,int_const 0)"}},"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":11889,"id":11912,"nodeType":"Return","src":"3184:83:37"}]},"documentation":{"id":11876,"nodeType":"StructuredDocumentation","src":"2752:241:37","text":" @dev Get the value at a given timepoint plus the pending value and effect timepoint if there is a scheduled\n change after this timepoint. If the effect timepoint is 0, then the pending value should not be considered."},"id":11914,"implemented":true,"kind":"function","modifiers":[],"name":"_getFullAt","nameLocation":"3007:10:37","nodeType":"FunctionDefinition","parameters":{"id":11882,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11879,"mutability":"mutable","name":"self","nameLocation":"3024:4:37","nodeType":"VariableDeclaration","scope":11914,"src":"3018:10:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"},"typeName":{"id":11878,"nodeType":"UserDefinedTypeName","pathNode":{"id":11877,"name":"Delay","nameLocations":["3018:5:37"],"nodeType":"IdentifierPath","referencedDeclaration":11860,"src":"3018:5:37"},"referencedDeclaration":11860,"src":"3018:5:37","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}},"visibility":"internal"},{"constant":false,"id":11881,"mutability":"mutable","name":"timepoint","nameLocation":"3037:9:37","nodeType":"VariableDeclaration","scope":11914,"src":"3030:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":11880,"name":"uint48","nodeType":"ElementaryTypeName","src":"3030:6:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"3017:30:37"},"returnParameters":{"id":11889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11884,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11914,"src":"3070:6:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11883,"name":"uint32","nodeType":"ElementaryTypeName","src":"3070:6:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":11886,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11914,"src":"3078:6:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11885,"name":"uint32","nodeType":"ElementaryTypeName","src":"3078:6:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":11888,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11914,"src":"3086:6:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":11887,"name":"uint48","nodeType":"ElementaryTypeName","src":"3086:6:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"3069:24:37"},"scope":12098,"src":"2998:276:37","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":11933,"nodeType":"Block","src":"3568:53:37","statements":[{"expression":{"arguments":[{"id":11928,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11918,"src":"3596:4:37","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}},{"arguments":[],"expression":{"argumentTypes":[],"id":11929,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11845,"src":"3602:9:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint48_$","typeString":"function () pure returns (uint48)"}},"id":11930,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3602:11:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":11927,"name":"_getFullAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11914,"src":"3585:10:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$11860_$_t_uint48_$returns$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"function (FrozenTime.Delay,uint48) pure returns (uint32,uint32,uint48)"}},"id":11931,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3585:29:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":11926,"id":11932,"nodeType":"Return","src":"3578:36:37"}]},"documentation":{"id":11915,"nodeType":"StructuredDocumentation","src":"3280:207:37","text":" @dev Get the current value plus the pending value and effect timepoint if there is a scheduled change. If the\n effect timepoint is 0, then the pending value should not be considered."},"id":11934,"implemented":true,"kind":"function","modifiers":[],"name":"getFull","nameLocation":"3501:7:37","nodeType":"FunctionDefinition","parameters":{"id":11919,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11918,"mutability":"mutable","name":"self","nameLocation":"3515:4:37","nodeType":"VariableDeclaration","scope":11934,"src":"3509:10:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"},"typeName":{"id":11917,"nodeType":"UserDefinedTypeName","pathNode":{"id":11916,"name":"Delay","nameLocations":["3509:5:37"],"nodeType":"IdentifierPath","referencedDeclaration":11860,"src":"3509:5:37"},"referencedDeclaration":11860,"src":"3509:5:37","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}},"visibility":"internal"}],"src":"3508:12:37"},"returnParameters":{"id":11926,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11921,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11934,"src":"3544:6:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11920,"name":"uint32","nodeType":"ElementaryTypeName","src":"3544:6:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":11923,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11934,"src":"3552:6:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11922,"name":"uint32","nodeType":"ElementaryTypeName","src":"3552:6:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":11925,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11934,"src":"3560:6:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":11924,"name":"uint48","nodeType":"ElementaryTypeName","src":"3560:6:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"3543:24:37"},"scope":12098,"src":"3492:129:37","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11951,"nodeType":"Block","src":"3734:74:37","statements":[{"assignments":[11944,null,null],"declarations":[{"constant":false,"id":11944,"mutability":"mutable","name":"delay","nameLocation":"3752:5:37","nodeType":"VariableDeclaration","scope":11951,"src":"3745:12:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11943,"name":"uint32","nodeType":"ElementaryTypeName","src":"3745:6:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},null,null],"id":11948,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":11945,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11938,"src":"3765:4:37","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}},"id":11946,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3770:7:37","memberName":"getFull","nodeType":"MemberAccess","referencedDeclaration":11934,"src":"3765:12:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$11860_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$11860_$","typeString":"function (FrozenTime.Delay) pure returns (uint32,uint32,uint48)"}},"id":11947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3765:14:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"VariableDeclarationStatement","src":"3744:35:37"},{"expression":{"id":11949,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11944,"src":"3796:5:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":11942,"id":11950,"nodeType":"Return","src":"3789:12:37"}]},"documentation":{"id":11935,"nodeType":"StructuredDocumentation","src":"3627:46:37","text":" @dev Get the current value."},"id":11952,"implemented":true,"kind":"function","modifiers":[],"name":"get","nameLocation":"3687:3:37","nodeType":"FunctionDefinition","parameters":{"id":11939,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11938,"mutability":"mutable","name":"self","nameLocation":"3697:4:37","nodeType":"VariableDeclaration","scope":11952,"src":"3691:10:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"},"typeName":{"id":11937,"nodeType":"UserDefinedTypeName","pathNode":{"id":11936,"name":"Delay","nameLocations":["3691:5:37"],"nodeType":"IdentifierPath","referencedDeclaration":11860,"src":"3691:5:37"},"referencedDeclaration":11860,"src":"3691:5:37","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}},"visibility":"internal"}],"src":"3690:12:37"},"returnParameters":{"id":11942,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11941,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11952,"src":"3726:6:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11940,"name":"uint32","nodeType":"ElementaryTypeName","src":"3726:6:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"3725:8:37"},"scope":12098,"src":"3678:130:37","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12007,"nodeType":"Block","src":"4258:234:37","statements":[{"assignments":[11969],"declarations":[{"constant":false,"id":11969,"mutability":"mutable","name":"value","nameLocation":"4275:5:37","nodeType":"VariableDeclaration","scope":12007,"src":"4268:12:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11968,"name":"uint32","nodeType":"ElementaryTypeName","src":"4268:6:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11973,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":11970,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11956,"src":"4283:4:37","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}},"id":11971,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4288:3:37","memberName":"get","nodeType":"MemberAccess","referencedDeclaration":11952,"src":"4283:8:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$11860_$returns$_t_uint32_$attached_to$_t_userDefinedValueType$_Delay_$11860_$","typeString":"function (FrozenTime.Delay) pure returns (uint32)"}},"id":11972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4283:10:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"4268:25:37"},{"assignments":[11975],"declarations":[{"constant":false,"id":11975,"mutability":"mutable","name":"setback","nameLocation":"4310:7:37","nodeType":"VariableDeclaration","scope":12007,"src":"4303:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11974,"name":"uint32","nodeType":"ElementaryTypeName","src":"4303:6:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11991,"initialValue":{"arguments":[{"arguments":[{"id":11980,"name":"minSetback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11960,"src":"4336:10:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11981,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11969,"src":"4348:5:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":11982,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11958,"src":"4356:8:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4348:16:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":11987,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4386:1:37","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":11988,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4348:39:37","trueExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11986,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11984,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11969,"src":"4367:5:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":11985,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11958,"src":"4375:8:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4367:16:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":11978,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6523,"src":"4327:4:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$6523_$","typeString":"type(library Math)"}},"id":11979,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4332:3:37","memberName":"max","nodeType":"MemberAccess","referencedDeclaration":5133,"src":"4327:8:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":11989,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4327:61:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11977,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4320:6:37","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":11976,"name":"uint32","nodeType":"ElementaryTypeName","src":"4320:6:37","typeDescriptions":{}}},"id":11990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4320:69:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"4303:86:37"},{"expression":{"id":11997,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11992,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11966,"src":"4399:6:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":11996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":11993,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11845,"src":"4408:9:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint48_$","typeString":"function () pure returns (uint48)"}},"id":11994,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4408:11:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":11995,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11975,"src":"4422:7:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4408:21:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"4399:30:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":11998,"nodeType":"ExpressionStatement","src":"4399:30:37"},{"expression":{"components":[{"arguments":[{"id":12000,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11969,"src":"4452:5:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":12001,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11958,"src":"4459:8:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":12002,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11966,"src":"4469:6:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":11999,"name":"pack","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12097,"src":"4447:4:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint48_$returns$_t_userDefinedValueType$_Delay_$11860_$","typeString":"function (uint32,uint32,uint48) pure returns (FrozenTime.Delay)"}},"id":12003,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4447:29:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}},{"id":12004,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11966,"src":"4478:6:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":12005,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4446:39:37","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$11860_$_t_uint48_$","typeString":"tuple(FrozenTime.Delay,uint48)"}},"functionReturnParameters":11967,"id":12006,"nodeType":"Return","src":"4439:46:37"}]},"documentation":{"id":11953,"nodeType":"StructuredDocumentation","src":"3814:283:37","text":" @dev Update a Delay object so that it takes a new duration after a timepoint that is automatically computed to\n enforce the old delay at the moment of the update. Returns the updated Delay object and the timestamp when the\n new delay becomes effective."},"id":12008,"implemented":true,"kind":"function","modifiers":[],"name":"withUpdate","nameLocation":"4111:10:37","nodeType":"FunctionDefinition","parameters":{"id":11961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11956,"mutability":"mutable","name":"self","nameLocation":"4137:4:37","nodeType":"VariableDeclaration","scope":12008,"src":"4131:10:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"},"typeName":{"id":11955,"nodeType":"UserDefinedTypeName","pathNode":{"id":11954,"name":"Delay","nameLocations":["4131:5:37"],"nodeType":"IdentifierPath","referencedDeclaration":11860,"src":"4131:5:37"},"referencedDeclaration":11860,"src":"4131:5:37","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}},"visibility":"internal"},{"constant":false,"id":11958,"mutability":"mutable","name":"newValue","nameLocation":"4158:8:37","nodeType":"VariableDeclaration","scope":12008,"src":"4151:15:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11957,"name":"uint32","nodeType":"ElementaryTypeName","src":"4151:6:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":11960,"mutability":"mutable","name":"minSetback","nameLocation":"4183:10:37","nodeType":"VariableDeclaration","scope":12008,"src":"4176:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11959,"name":"uint32","nodeType":"ElementaryTypeName","src":"4176:6:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"4121:78:37"},"returnParameters":{"id":11967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11964,"mutability":"mutable","name":"updatedDelay","nameLocation":"4229:12:37","nodeType":"VariableDeclaration","scope":12008,"src":"4223:18:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"},"typeName":{"id":11963,"nodeType":"UserDefinedTypeName","pathNode":{"id":11962,"name":"Delay","nameLocations":["4223:5:37"],"nodeType":"IdentifierPath","referencedDeclaration":11860,"src":"4223:5:37"},"referencedDeclaration":11860,"src":"4223:5:37","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}},"visibility":"internal"},{"constant":false,"id":11966,"mutability":"mutable","name":"effect","nameLocation":"4250:6:37","nodeType":"VariableDeclaration","scope":12008,"src":"4243:13:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":11965,"name":"uint48","nodeType":"ElementaryTypeName","src":"4243:6:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4222:35:37"},"scope":12098,"src":"4102:390:37","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12058,"nodeType":"Block","src":"4725:212:37","statements":[{"assignments":[12022],"declarations":[{"constant":false,"id":12022,"mutability":"mutable","name":"raw","nameLocation":"4743:3:37","nodeType":"VariableDeclaration","scope":12058,"src":"4735:11:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":12021,"name":"uint112","nodeType":"ElementaryTypeName","src":"4735:7:37","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"}],"id":12027,"initialValue":{"arguments":[{"id":12025,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12012,"src":"4762:4:37","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}],"expression":{"id":12023,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11860,"src":"4749:5:37","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$11860_$","typeString":"type(FrozenTime.Delay)"}},"id":12024,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4755:6:37","memberName":"unwrap","nodeType":"MemberAccess","src":"4749:12:37","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Delay_$11860_$returns$_t_uint112_$","typeString":"function (FrozenTime.Delay) pure returns (uint112)"}},"id":12026,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4749:18:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"VariableDeclarationStatement","src":"4735:32:37"},{"expression":{"id":12033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12028,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12017,"src":"4778:10:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12031,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12022,"src":"4798:3:37","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":12030,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4791:6:37","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":12029,"name":"uint32","nodeType":"ElementaryTypeName","src":"4791:6:37","typeDescriptions":{}}},"id":12032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4791:11:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4778:24:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":12034,"nodeType":"ExpressionStatement","src":"4778:24:37"},{"expression":{"id":12042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12035,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12015,"src":"4812:11:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":12040,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12038,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12022,"src":"4833:3:37","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":12039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4840:2:37","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"4833:9:37","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":12037,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4826:6:37","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":12036,"name":"uint32","nodeType":"ElementaryTypeName","src":"4826:6:37","typeDescriptions":{}}},"id":12041,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4826:17:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4812:31:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":12043,"nodeType":"ExpressionStatement","src":"4812:31:37"},{"expression":{"id":12051,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12044,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12019,"src":"4853:6:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":12049,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12047,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12022,"src":"4869:3:37","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":12048,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4876:2:37","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"4869:9:37","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":12046,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4862:6:37","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":12045,"name":"uint48","nodeType":"ElementaryTypeName","src":"4862:6:37","typeDescriptions":{}}},"id":12050,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4862:17:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"4853:26:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":12052,"nodeType":"ExpressionStatement","src":"4853:26:37"},{"expression":{"components":[{"id":12053,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12015,"src":"4898:11:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":12054,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12017,"src":"4911:10:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":12055,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12019,"src":"4923:6:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":12056,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4897:33:37","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":12020,"id":12057,"nodeType":"Return","src":"4890:40:37"}]},"documentation":{"id":12009,"nodeType":"StructuredDocumentation","src":"4498:117:37","text":" @dev Split a delay into its components: valueBefore, valueAfter and effect (transition timepoint)."},"id":12059,"implemented":true,"kind":"function","modifiers":[],"name":"unpack","nameLocation":"4629:6:37","nodeType":"FunctionDefinition","parameters":{"id":12013,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12012,"mutability":"mutable","name":"self","nameLocation":"4642:4:37","nodeType":"VariableDeclaration","scope":12059,"src":"4636:10:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"},"typeName":{"id":12011,"nodeType":"UserDefinedTypeName","pathNode":{"id":12010,"name":"Delay","nameLocations":["4636:5:37"],"nodeType":"IdentifierPath","referencedDeclaration":11860,"src":"4636:5:37"},"referencedDeclaration":11860,"src":"4636:5:37","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}},"visibility":"internal"}],"src":"4635:12:37"},"returnParameters":{"id":12020,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12015,"mutability":"mutable","name":"valueBefore","nameLocation":"4678:11:37","nodeType":"VariableDeclaration","scope":12059,"src":"4671:18:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12014,"name":"uint32","nodeType":"ElementaryTypeName","src":"4671:6:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":12017,"mutability":"mutable","name":"valueAfter","nameLocation":"4698:10:37","nodeType":"VariableDeclaration","scope":12059,"src":"4691:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12016,"name":"uint32","nodeType":"ElementaryTypeName","src":"4691:6:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":12019,"mutability":"mutable","name":"effect","nameLocation":"4717:6:37","nodeType":"VariableDeclaration","scope":12059,"src":"4710:13:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":12018,"name":"uint48","nodeType":"ElementaryTypeName","src":"4710:6:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4670:54:37"},"scope":12098,"src":"4620:317:37","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12096,"nodeType":"Block","src":"5110:112:37","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":12093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":12088,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":12079,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":12076,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12066,"src":"5147:6:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":12075,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5139:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":12074,"name":"uint112","nodeType":"ElementaryTypeName","src":"5139:7:37","typeDescriptions":{}}},"id":12077,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5139:15:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":12078,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5158:2:37","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"5139:21:37","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"id":12080,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5138:23:37","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":12086,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":12083,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12062,"src":"5173:11:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":12082,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5165:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":12081,"name":"uint112","nodeType":"ElementaryTypeName","src":"5165:7:37","typeDescriptions":{}}},"id":12084,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5165:20:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":12085,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5189:2:37","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"5165:26:37","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"id":12087,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5164:28:37","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"5138:54:37","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"id":12091,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12064,"src":"5203:10:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":12090,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5195:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":12089,"name":"uint112","nodeType":"ElementaryTypeName","src":"5195:7:37","typeDescriptions":{}}},"id":12092,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5195:19:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"5138:76:37","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"expression":{"id":12072,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11860,"src":"5127:5:37","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$11860_$","typeString":"type(FrozenTime.Delay)"}},"id":12073,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5133:4:37","memberName":"wrap","nodeType":"MemberAccess","src":"5127:10:37","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint112_$returns$_t_userDefinedValueType$_Delay_$11860_$","typeString":"function (uint112) pure returns (FrozenTime.Delay)"}},"id":12094,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5127:88:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}},"functionReturnParameters":12071,"id":12095,"nodeType":"Return","src":"5120:95:37"}]},"documentation":{"id":12060,"nodeType":"StructuredDocumentation","src":"4943:64:37","text":" @dev pack the components into a Delay object."},"id":12097,"implemented":true,"kind":"function","modifiers":[],"name":"pack","nameLocation":"5021:4:37","nodeType":"FunctionDefinition","parameters":{"id":12067,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12062,"mutability":"mutable","name":"valueBefore","nameLocation":"5033:11:37","nodeType":"VariableDeclaration","scope":12097,"src":"5026:18:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12061,"name":"uint32","nodeType":"ElementaryTypeName","src":"5026:6:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":12064,"mutability":"mutable","name":"valueAfter","nameLocation":"5053:10:37","nodeType":"VariableDeclaration","scope":12097,"src":"5046:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12063,"name":"uint32","nodeType":"ElementaryTypeName","src":"5046:6:37","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":12066,"mutability":"mutable","name":"effect","nameLocation":"5072:6:37","nodeType":"VariableDeclaration","scope":12097,"src":"5065:13:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":12065,"name":"uint48","nodeType":"ElementaryTypeName","src":"5065:6:37","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"5025:54:37"},"returnParameters":{"id":12071,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12070,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12097,"src":"5103:5:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"},"typeName":{"id":12069,"nodeType":"UserDefinedTypeName","pathNode":{"id":12068,"name":"Delay","nameLocations":["5103:5:37"],"nodeType":"IdentifierPath","referencedDeclaration":11860,"src":"5103:5:37"},"referencedDeclaration":11860,"src":"5103:5:37","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$11860","typeString":"FrozenTime.Delay"}},"visibility":"internal"}],"src":"5102:7:37"},"scope":12098,"src":"5012:210:37","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":12099,"src":"694:4530:37","usedErrors":[],"usedEvents":[]}],"src":"104:5121:37"},"id":37},"contracts/hardhat-dependency-compiler/@openzeppelin/contracts/interfaces/IERC20.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@openzeppelin/contracts/interfaces/IERC20.sol","exportedSymbols":{"IERC20":[2782]},"id":12102,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":12100,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:38"},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","file":"@openzeppelin/contracts/interfaces/IERC20.sol","id":12101,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12102,"sourceUnit":1910,"src":"63:55:38","symbolAliases":[],"unitAlias":""}],"src":"39:80:38"},"id":38},"contracts/mock/ERC20With2771.sol":{"ast":{"absolutePath":"contracts/mock/ERC20With2771.sol","exportedSymbols":{"Context":[3098],"ERC20":[2704],"ERC20With2771":[12198],"ERC2771Context":[2189]},"id":12199,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":12103,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"38:23:39"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":12105,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12199,"sourceUnit":2705,"src":"63:68:39","symbolAliases":[{"foreign":{"id":12104,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2704,"src":"71:5:39","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/metatx/ERC2771Context.sol","file":"@openzeppelin/contracts/metatx/ERC2771Context.sol","id":12107,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12199,"sourceUnit":2190,"src":"132:81:39","symbolAliases":[{"foreign":{"id":12106,"name":"ERC2771Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2189,"src":"140:14:39","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"@openzeppelin/contracts/utils/Context.sol","id":12109,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12199,"sourceUnit":3099,"src":"214:66:39","symbolAliases":[{"foreign":{"id":12108,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3098,"src":"222:7:39","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":12110,"name":"ERC20","nameLocations":["308:5:39"],"nodeType":"IdentifierPath","referencedDeclaration":2704,"src":"308:5:39"},"id":12111,"nodeType":"InheritanceSpecifier","src":"308:5:39"},{"baseName":{"id":12112,"name":"ERC2771Context","nameLocations":["315:14:39"],"nodeType":"IdentifierPath","referencedDeclaration":2189,"src":"315:14:39"},"id":12113,"nodeType":"InheritanceSpecifier","src":"315:14:39"}],"canonicalName":"ERC20With2771","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":12198,"linearizedBaseContracts":[12198,2189,2704,1951,2808,2782,3098],"name":"ERC20With2771","nameLocation":"291:13:39","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":12115,"mutability":"immutable","name":"_decimals","nameLocation":"359:9:39","nodeType":"VariableDeclaration","scope":12198,"src":"334:34:39","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":12114,"name":"uint8","nodeType":"ElementaryTypeName","src":"334:5:39","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"body":{"id":12145,"nodeType":"Block","src":"574:70:39","statements":[{"expression":{"id":12137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12135,"name":"_decimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12115,"src":"580:9:39","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":12136,"name":"decimals_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12123,"src":"592:9:39","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"580:21:39","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":12138,"nodeType":"ExpressionStatement","src":"580:21:39"},{"expression":{"arguments":[{"expression":{"id":12140,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"613:3:39","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":12141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"617:6:39","memberName":"sender","nodeType":"MemberAccess","src":"613:10:39","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12142,"name":"initialSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12121,"src":"625:13:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12139,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"607:5:39","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":12143,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"607:32:39","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12144,"nodeType":"ExpressionStatement","src":"607:32:39"}]},"id":12146,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":12128,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12117,"src":"525:5:39","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":12129,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12119,"src":"532:7:39","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":12130,"kind":"baseConstructorSpecifier","modifierName":{"id":12127,"name":"ERC20","nameLocations":["519:5:39"],"nodeType":"IdentifierPath","referencedDeclaration":2704,"src":"519:5:39"},"nodeType":"ModifierInvocation","src":"519:21:39"},{"arguments":[{"id":12132,"name":"trustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12125,"src":"556:16:39","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":12133,"kind":"baseConstructorSpecifier","modifierName":{"id":12131,"name":"ERC2771Context","nameLocations":["541:14:39"],"nodeType":"IdentifierPath","referencedDeclaration":2189,"src":"541:14:39"},"nodeType":"ModifierInvocation","src":"541:32:39"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":12126,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12117,"mutability":"mutable","name":"name_","nameLocation":"404:5:39","nodeType":"VariableDeclaration","scope":12146,"src":"390:19:39","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12116,"name":"string","nodeType":"ElementaryTypeName","src":"390:6:39","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":12119,"mutability":"mutable","name":"symbol_","nameLocation":"429:7:39","nodeType":"VariableDeclaration","scope":12146,"src":"415:21:39","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12118,"name":"string","nodeType":"ElementaryTypeName","src":"415:6:39","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":12121,"mutability":"mutable","name":"initialSupply","nameLocation":"450:13:39","nodeType":"VariableDeclaration","scope":12146,"src":"442:21:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12120,"name":"uint256","nodeType":"ElementaryTypeName","src":"442:7:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12123,"mutability":"mutable","name":"decimals_","nameLocation":"475:9:39","nodeType":"VariableDeclaration","scope":12146,"src":"469:15:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":12122,"name":"uint8","nodeType":"ElementaryTypeName","src":"469:5:39","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":12125,"mutability":"mutable","name":"trustedForwarder","nameLocation":"498:16:39","nodeType":"VariableDeclaration","scope":12146,"src":"490:24:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12124,"name":"address","nodeType":"ElementaryTypeName","src":"490:7:39","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"384:134:39"},"returnParameters":{"id":12134,"nodeType":"ParameterList","parameters":[],"src":"574:0:39"},"scope":12198,"src":"373:271:39","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[2268],"body":{"id":12154,"nodeType":"Block","src":"713:27:39","statements":[{"expression":{"id":12152,"name":"_decimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12115,"src":"726:9:39","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":12151,"id":12153,"nodeType":"Return","src":"719:16:39"}]},"functionSelector":"313ce567","id":12155,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"657:8:39","nodeType":"FunctionDefinition","overrides":{"id":12148,"nodeType":"OverrideSpecifier","overrides":[],"src":"688:8:39"},"parameters":{"id":12147,"nodeType":"ParameterList","parameters":[],"src":"665:2:39"},"returnParameters":{"id":12151,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12150,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12155,"src":"706:5:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":12149,"name":"uint8","nodeType":"ElementaryTypeName","src":"706:5:39","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"705:7:39"},"scope":12198,"src":"648:92:39","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2188,3097],"body":{"id":12168,"nodeType":"Block","src":"875:55:39","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12164,"name":"ERC2771Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2189,"src":"888:14:39","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC2771Context_$2189_$","typeString":"type(contract ERC2771Context)"}},"id":12165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"903:20:39","memberName":"_contextSuffixLength","nodeType":"MemberAccess","referencedDeclaration":2188,"src":"888:35:39","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":12166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"888:37:39","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":12163,"id":12167,"nodeType":"Return","src":"881:44:39"}]},"documentation":{"id":12156,"nodeType":"StructuredDocumentation","src":"744:30:39","text":"@inheritdoc ERC2771Context"},"id":12169,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"786:20:39","nodeType":"FunctionDefinition","overrides":{"id":12160,"nodeType":"OverrideSpecifier","overrides":[{"id":12158,"name":"Context","nameLocations":["832:7:39"],"nodeType":"IdentifierPath","referencedDeclaration":3098,"src":"832:7:39"},{"id":12159,"name":"ERC2771Context","nameLocations":["841:14:39"],"nodeType":"IdentifierPath","referencedDeclaration":2189,"src":"841:14:39"}],"src":"823:33:39"},"parameters":{"id":12157,"nodeType":"ParameterList","parameters":[],"src":"806:2:39"},"returnParameters":{"id":12163,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12162,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12169,"src":"866:7:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12161,"name":"uint256","nodeType":"ElementaryTypeName","src":"866:7:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"865:9:39"},"scope":12198,"src":"777:153:39","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[2137,3080],"body":{"id":12182,"nodeType":"Block","src":"1055:45:39","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12178,"name":"ERC2771Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2189,"src":"1068:14:39","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC2771Context_$2189_$","typeString":"type(contract ERC2771Context)"}},"id":12179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1083:10:39","memberName":"_msgSender","nodeType":"MemberAccess","referencedDeclaration":2137,"src":"1068:25:39","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":12180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1068:27:39","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":12177,"id":12181,"nodeType":"Return","src":"1061:34:39"}]},"documentation":{"id":12170,"nodeType":"StructuredDocumentation","src":"934:30:39","text":"@inheritdoc ERC2771Context"},"id":12183,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"976:10:39","nodeType":"FunctionDefinition","overrides":{"id":12174,"nodeType":"OverrideSpecifier","overrides":[{"id":12172,"name":"Context","nameLocations":["1012:7:39"],"nodeType":"IdentifierPath","referencedDeclaration":3098,"src":"1012:7:39"},{"id":12173,"name":"ERC2771Context","nameLocations":["1021:14:39"],"nodeType":"IdentifierPath","referencedDeclaration":2189,"src":"1021:14:39"}],"src":"1003:33:39"},"parameters":{"id":12171,"nodeType":"ParameterList","parameters":[],"src":"986:2:39"},"returnParameters":{"id":12177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12176,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12183,"src":"1046:7:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12175,"name":"address","nodeType":"ElementaryTypeName","src":"1046:7:39","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1045:9:39"},"scope":12198,"src":"967:133:39","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[2178,3089],"body":{"id":12196,"nodeType":"Block","src":"1230:43:39","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12192,"name":"ERC2771Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2189,"src":"1243:14:39","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC2771Context_$2189_$","typeString":"type(contract ERC2771Context)"}},"id":12193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1258:8:39","memberName":"_msgData","nodeType":"MemberAccess","referencedDeclaration":2178,"src":"1243:23:39","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":12194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1243:25:39","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":12191,"id":12195,"nodeType":"Return","src":"1236:32:39"}]},"documentation":{"id":12184,"nodeType":"StructuredDocumentation","src":"1104:30:39","text":"@inheritdoc ERC2771Context"},"id":12197,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"1146:8:39","nodeType":"FunctionDefinition","overrides":{"id":12188,"nodeType":"OverrideSpecifier","overrides":[{"id":12186,"name":"Context","nameLocations":["1180:7:39"],"nodeType":"IdentifierPath","referencedDeclaration":3098,"src":"1180:7:39"},{"id":12187,"name":"ERC2771Context","nameLocations":["1189:14:39"],"nodeType":"IdentifierPath","referencedDeclaration":2189,"src":"1189:14:39"}],"src":"1171:33:39"},"parameters":{"id":12185,"nodeType":"ParameterList","parameters":[],"src":"1154:2:39"},"returnParameters":{"id":12191,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12190,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12197,"src":"1214:14:39","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":12189,"name":"bytes","nodeType":"ElementaryTypeName","src":"1214:5:39","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1213:16:39"},"scope":12198,"src":"1137:136:39","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":12199,"src":"282:993:39","usedErrors":[1921,1926,1931,1940,1945,1950],"usedEvents":[2716,2725]}],"src":"38:1238:39"},"id":39},"solidity-bytes-utils/contracts/BytesLib.sol":{"ast":{"absolutePath":"solidity-bytes-utils/contracts/BytesLib.sol","exportedSymbols":{"BytesLib":[12531]},"id":12532,"license":"Unlicense","nodeType":"SourceUnit","nodes":[{"id":12200,"literals":["solidity",">=","0.8",".0","<","0.9",".0"],"nodeType":"PragmaDirective","src":"336:31:40"},{"abstract":false,"baseContracts":[],"canonicalName":"BytesLib","contractDependencies":[],"contractKind":"library","fullyImplemented":true,"id":12531,"linearizedBaseContracts":[12531],"name":"BytesLib","nameLocation":"378:8:40","nodeType":"ContractDefinition","nodes":[{"body":{"id":12215,"nodeType":"Block","src":"545:2803:40","statements":[{"assignments":[12210],"declarations":[{"constant":false,"id":12210,"mutability":"mutable","name":"tempBytes","nameLocation":"568:9:40","nodeType":"VariableDeclaration","scope":12215,"src":"555:22:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12209,"name":"bytes","nodeType":"ElementaryTypeName","src":"555:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":12211,"nodeType":"VariableDeclarationStatement","src":"555:22:40"},{"AST":{"nativeSrc":"597:2718:40","nodeType":"YulBlock","src":"597:2718:40","statements":[{"nativeSrc":"741:24:40","nodeType":"YulAssignment","src":"741:24:40","value":{"arguments":[{"kind":"number","nativeSrc":"760:4:40","nodeType":"YulLiteral","src":"760:4:40","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"754:5:40","nodeType":"YulIdentifier","src":"754:5:40"},"nativeSrc":"754:11:40","nodeType":"YulFunctionCall","src":"754:11:40"},"variableNames":[{"name":"tempBytes","nativeSrc":"741:9:40","nodeType":"YulIdentifier","src":"741:9:40"}]},{"nativeSrc":"897:30:40","nodeType":"YulVariableDeclaration","src":"897:30:40","value":{"arguments":[{"name":"_preBytes","nativeSrc":"917:9:40","nodeType":"YulIdentifier","src":"917:9:40"}],"functionName":{"name":"mload","nativeSrc":"911:5:40","nodeType":"YulIdentifier","src":"911:5:40"},"nativeSrc":"911:16:40","nodeType":"YulFunctionCall","src":"911:16:40"},"variables":[{"name":"length","nativeSrc":"901:6:40","nodeType":"YulTypedName","src":"901:6:40","type":""}]},{"expression":{"arguments":[{"name":"tempBytes","nativeSrc":"947:9:40","nodeType":"YulIdentifier","src":"947:9:40"},{"name":"length","nativeSrc":"958:6:40","nodeType":"YulIdentifier","src":"958:6:40"}],"functionName":{"name":"mstore","nativeSrc":"940:6:40","nodeType":"YulIdentifier","src":"940:6:40"},"nativeSrc":"940:25:40","nodeType":"YulFunctionCall","src":"940:25:40"},"nativeSrc":"940:25:40","nodeType":"YulExpressionStatement","src":"940:25:40"},{"nativeSrc":"1175:30:40","nodeType":"YulVariableDeclaration","src":"1175:30:40","value":{"arguments":[{"name":"tempBytes","nativeSrc":"1189:9:40","nodeType":"YulIdentifier","src":"1189:9:40"},{"kind":"number","nativeSrc":"1200:4:40","nodeType":"YulLiteral","src":"1200:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1185:3:40","nodeType":"YulIdentifier","src":"1185:3:40"},"nativeSrc":"1185:20:40","nodeType":"YulFunctionCall","src":"1185:20:40"},"variables":[{"name":"mc","nativeSrc":"1179:2:40","nodeType":"YulTypedName","src":"1179:2:40","type":""}]},{"nativeSrc":"1330:26:40","nodeType":"YulVariableDeclaration","src":"1330:26:40","value":{"arguments":[{"name":"mc","nativeSrc":"1345:2:40","nodeType":"YulIdentifier","src":"1345:2:40"},{"name":"length","nativeSrc":"1349:6:40","nodeType":"YulIdentifier","src":"1349:6:40"}],"functionName":{"name":"add","nativeSrc":"1341:3:40","nodeType":"YulIdentifier","src":"1341:3:40"},"nativeSrc":"1341:15:40","nodeType":"YulFunctionCall","src":"1341:15:40"},"variables":[{"name":"end","nativeSrc":"1334:3:40","nodeType":"YulTypedName","src":"1334:3:40","type":""}]},{"body":{"nativeSrc":"1733:162:40","nodeType":"YulBlock","src":"1733:162:40","statements":[{"expression":{"arguments":[{"name":"mc","nativeSrc":"1867:2:40","nodeType":"YulIdentifier","src":"1867:2:40"},{"arguments":[{"name":"cc","nativeSrc":"1877:2:40","nodeType":"YulIdentifier","src":"1877:2:40"}],"functionName":{"name":"mload","nativeSrc":"1871:5:40","nodeType":"YulIdentifier","src":"1871:5:40"},"nativeSrc":"1871:9:40","nodeType":"YulFunctionCall","src":"1871:9:40"}],"functionName":{"name":"mstore","nativeSrc":"1860:6:40","nodeType":"YulIdentifier","src":"1860:6:40"},"nativeSrc":"1860:21:40","nodeType":"YulFunctionCall","src":"1860:21:40"},"nativeSrc":"1860:21:40","nodeType":"YulExpressionStatement","src":"1860:21:40"}]},"condition":{"arguments":[{"name":"mc","nativeSrc":"1566:2:40","nodeType":"YulIdentifier","src":"1566:2:40"},{"name":"end","nativeSrc":"1570:3:40","nodeType":"YulIdentifier","src":"1570:3:40"}],"functionName":{"name":"lt","nativeSrc":"1563:2:40","nodeType":"YulIdentifier","src":"1563:2:40"},"nativeSrc":"1563:11:40","nodeType":"YulFunctionCall","src":"1563:11:40"},"nativeSrc":"1370:525:40","nodeType":"YulForLoop","post":{"nativeSrc":"1575:157:40","nodeType":"YulBlock","src":"1575:157:40","statements":[{"nativeSrc":"1663:19:40","nodeType":"YulAssignment","src":"1663:19:40","value":{"arguments":[{"name":"mc","nativeSrc":"1673:2:40","nodeType":"YulIdentifier","src":"1673:2:40"},{"kind":"number","nativeSrc":"1677:4:40","nodeType":"YulLiteral","src":"1677:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1669:3:40","nodeType":"YulIdentifier","src":"1669:3:40"},"nativeSrc":"1669:13:40","nodeType":"YulFunctionCall","src":"1669:13:40"},"variableNames":[{"name":"mc","nativeSrc":"1663:2:40","nodeType":"YulIdentifier","src":"1663:2:40"}]},{"nativeSrc":"1699:19:40","nodeType":"YulAssignment","src":"1699:19:40","value":{"arguments":[{"name":"cc","nativeSrc":"1709:2:40","nodeType":"YulIdentifier","src":"1709:2:40"},{"kind":"number","nativeSrc":"1713:4:40","nodeType":"YulLiteral","src":"1713:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1705:3:40","nodeType":"YulIdentifier","src":"1705:3:40"},"nativeSrc":"1705:13:40","nodeType":"YulFunctionCall","src":"1705:13:40"},"variableNames":[{"name":"cc","nativeSrc":"1699:2:40","nodeType":"YulIdentifier","src":"1699:2:40"}]}]},"pre":{"nativeSrc":"1374:188:40","nodeType":"YulBlock","src":"1374:188:40","statements":[{"nativeSrc":"1518:30:40","nodeType":"YulVariableDeclaration","src":"1518:30:40","value":{"arguments":[{"name":"_preBytes","nativeSrc":"1532:9:40","nodeType":"YulIdentifier","src":"1532:9:40"},{"kind":"number","nativeSrc":"1543:4:40","nodeType":"YulLiteral","src":"1543:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1528:3:40","nodeType":"YulIdentifier","src":"1528:3:40"},"nativeSrc":"1528:20:40","nodeType":"YulFunctionCall","src":"1528:20:40"},"variables":[{"name":"cc","nativeSrc":"1522:2:40","nodeType":"YulTypedName","src":"1522:2:40","type":""}]}]},"src":"1370:525:40"},{"nativeSrc":"2096:27:40","nodeType":"YulAssignment","src":"2096:27:40","value":{"arguments":[{"name":"_postBytes","nativeSrc":"2112:10:40","nodeType":"YulIdentifier","src":"2112:10:40"}],"functionName":{"name":"mload","nativeSrc":"2106:5:40","nodeType":"YulIdentifier","src":"2106:5:40"},"nativeSrc":"2106:17:40","nodeType":"YulFunctionCall","src":"2106:17:40"},"variableNames":[{"name":"length","nativeSrc":"2096:6:40","nodeType":"YulIdentifier","src":"2096:6:40"}]},{"expression":{"arguments":[{"name":"tempBytes","nativeSrc":"2143:9:40","nodeType":"YulIdentifier","src":"2143:9:40"},{"arguments":[{"name":"length","nativeSrc":"2158:6:40","nodeType":"YulIdentifier","src":"2158:6:40"},{"arguments":[{"name":"tempBytes","nativeSrc":"2172:9:40","nodeType":"YulIdentifier","src":"2172:9:40"}],"functionName":{"name":"mload","nativeSrc":"2166:5:40","nodeType":"YulIdentifier","src":"2166:5:40"},"nativeSrc":"2166:16:40","nodeType":"YulFunctionCall","src":"2166:16:40"}],"functionName":{"name":"add","nativeSrc":"2154:3:40","nodeType":"YulIdentifier","src":"2154:3:40"},"nativeSrc":"2154:29:40","nodeType":"YulFunctionCall","src":"2154:29:40"}],"functionName":{"name":"mstore","nativeSrc":"2136:6:40","nodeType":"YulIdentifier","src":"2136:6:40"},"nativeSrc":"2136:48:40","nodeType":"YulFunctionCall","src":"2136:48:40"},"nativeSrc":"2136:48:40","nodeType":"YulExpressionStatement","src":"2136:48:40"},{"nativeSrc":"2322:9:40","nodeType":"YulAssignment","src":"2322:9:40","value":{"name":"end","nativeSrc":"2328:3:40","nodeType":"YulIdentifier","src":"2328:3:40"},"variableNames":[{"name":"mc","nativeSrc":"2322:2:40","nodeType":"YulIdentifier","src":"2322:2:40"}]},{"nativeSrc":"2458:22:40","nodeType":"YulAssignment","src":"2458:22:40","value":{"arguments":[{"name":"mc","nativeSrc":"2469:2:40","nodeType":"YulIdentifier","src":"2469:2:40"},{"name":"length","nativeSrc":"2473:6:40","nodeType":"YulIdentifier","src":"2473:6:40"}],"functionName":{"name":"add","nativeSrc":"2465:3:40","nodeType":"YulIdentifier","src":"2465:3:40"},"nativeSrc":"2465:15:40","nodeType":"YulFunctionCall","src":"2465:15:40"},"variableNames":[{"name":"end","nativeSrc":"2458:3:40","nodeType":"YulIdentifier","src":"2458:3:40"}]},{"body":{"nativeSrc":"2662:53:40","nodeType":"YulBlock","src":"2662:53:40","statements":[{"expression":{"arguments":[{"name":"mc","nativeSrc":"2687:2:40","nodeType":"YulIdentifier","src":"2687:2:40"},{"arguments":[{"name":"cc","nativeSrc":"2697:2:40","nodeType":"YulIdentifier","src":"2697:2:40"}],"functionName":{"name":"mload","nativeSrc":"2691:5:40","nodeType":"YulIdentifier","src":"2691:5:40"},"nativeSrc":"2691:9:40","nodeType":"YulFunctionCall","src":"2691:9:40"}],"functionName":{"name":"mstore","nativeSrc":"2680:6:40","nodeType":"YulIdentifier","src":"2680:6:40"},"nativeSrc":"2680:21:40","nodeType":"YulFunctionCall","src":"2680:21:40"},"nativeSrc":"2680:21:40","nodeType":"YulExpressionStatement","src":"2680:21:40"}]},"condition":{"arguments":[{"name":"mc","nativeSrc":"2565:2:40","nodeType":"YulIdentifier","src":"2565:2:40"},{"name":"end","nativeSrc":"2569:3:40","nodeType":"YulIdentifier","src":"2569:3:40"}],"functionName":{"name":"lt","nativeSrc":"2562:2:40","nodeType":"YulIdentifier","src":"2562:2:40"},"nativeSrc":"2562:11:40","nodeType":"YulFunctionCall","src":"2562:11:40"},"nativeSrc":"2494:221:40","nodeType":"YulForLoop","post":{"nativeSrc":"2574:87:40","nodeType":"YulBlock","src":"2574:87:40","statements":[{"nativeSrc":"2592:19:40","nodeType":"YulAssignment","src":"2592:19:40","value":{"arguments":[{"name":"mc","nativeSrc":"2602:2:40","nodeType":"YulIdentifier","src":"2602:2:40"},{"kind":"number","nativeSrc":"2606:4:40","nodeType":"YulLiteral","src":"2606:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2598:3:40","nodeType":"YulIdentifier","src":"2598:3:40"},"nativeSrc":"2598:13:40","nodeType":"YulFunctionCall","src":"2598:13:40"},"variableNames":[{"name":"mc","nativeSrc":"2592:2:40","nodeType":"YulIdentifier","src":"2592:2:40"}]},{"nativeSrc":"2628:19:40","nodeType":"YulAssignment","src":"2628:19:40","value":{"arguments":[{"name":"cc","nativeSrc":"2638:2:40","nodeType":"YulIdentifier","src":"2638:2:40"},{"kind":"number","nativeSrc":"2642:4:40","nodeType":"YulLiteral","src":"2642:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2634:3:40","nodeType":"YulIdentifier","src":"2634:3:40"},"nativeSrc":"2634:13:40","nodeType":"YulFunctionCall","src":"2634:13:40"},"variableNames":[{"name":"cc","nativeSrc":"2628:2:40","nodeType":"YulIdentifier","src":"2628:2:40"}]}]},"pre":{"nativeSrc":"2498:63:40","nodeType":"YulBlock","src":"2498:63:40","statements":[{"nativeSrc":"2516:31:40","nodeType":"YulVariableDeclaration","src":"2516:31:40","value":{"arguments":[{"name":"_postBytes","nativeSrc":"2530:10:40","nodeType":"YulIdentifier","src":"2530:10:40"},{"kind":"number","nativeSrc":"2542:4:40","nodeType":"YulLiteral","src":"2542:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2526:3:40","nodeType":"YulIdentifier","src":"2526:3:40"},"nativeSrc":"2526:21:40","nodeType":"YulFunctionCall","src":"2526:21:40"},"variables":[{"name":"cc","nativeSrc":"2520:2:40","nodeType":"YulTypedName","src":"2520:2:40","type":""}]}]},"src":"2494:221:40"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3147:4:40","nodeType":"YulLiteral","src":"3147:4:40","type":"","value":"0x40"},{"arguments":[{"arguments":[{"arguments":[{"name":"end","nativeSrc":"3180:3:40","nodeType":"YulIdentifier","src":"3180:3:40"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"3196:6:40","nodeType":"YulIdentifier","src":"3196:6:40"},{"arguments":[{"name":"_preBytes","nativeSrc":"3210:9:40","nodeType":"YulIdentifier","src":"3210:9:40"}],"functionName":{"name":"mload","nativeSrc":"3204:5:40","nodeType":"YulIdentifier","src":"3204:5:40"},"nativeSrc":"3204:16:40","nodeType":"YulFunctionCall","src":"3204:16:40"}],"functionName":{"name":"add","nativeSrc":"3192:3:40","nodeType":"YulIdentifier","src":"3192:3:40"},"nativeSrc":"3192:29:40","nodeType":"YulFunctionCall","src":"3192:29:40"}],"functionName":{"name":"iszero","nativeSrc":"3185:6:40","nodeType":"YulIdentifier","src":"3185:6:40"},"nativeSrc":"3185:37:40","nodeType":"YulFunctionCall","src":"3185:37:40"}],"functionName":{"name":"add","nativeSrc":"3176:3:40","nodeType":"YulIdentifier","src":"3176:3:40"},"nativeSrc":"3176:47:40","nodeType":"YulFunctionCall","src":"3176:47:40"},{"kind":"number","nativeSrc":"3225:2:40","nodeType":"YulLiteral","src":"3225:2:40","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"3172:3:40","nodeType":"YulIdentifier","src":"3172:3:40"},"nativeSrc":"3172:56:40","nodeType":"YulFunctionCall","src":"3172:56:40"},{"arguments":[{"kind":"number","nativeSrc":"3248:2:40","nodeType":"YulLiteral","src":"3248:2:40","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"3244:3:40","nodeType":"YulIdentifier","src":"3244:3:40"},"nativeSrc":"3244:7:40","nodeType":"YulFunctionCall","src":"3244:7:40"}],"functionName":{"name":"and","nativeSrc":"3153:3:40","nodeType":"YulIdentifier","src":"3153:3:40"},"nativeSrc":"3153:151:40","nodeType":"YulFunctionCall","src":"3153:151:40"}],"functionName":{"name":"mstore","nativeSrc":"3140:6:40","nodeType":"YulIdentifier","src":"3140:6:40"},"nativeSrc":"3140:165:40","nodeType":"YulFunctionCall","src":"3140:165:40"},"nativeSrc":"3140:165:40","nodeType":"YulExpressionStatement","src":"3140:165:40"}]},"evmVersion":"cancun","externalReferences":[{"declaration":12204,"isOffset":false,"isSlot":false,"src":"2112:10:40","valueSize":1},{"declaration":12204,"isOffset":false,"isSlot":false,"src":"2530:10:40","valueSize":1},{"declaration":12202,"isOffset":false,"isSlot":false,"src":"1532:9:40","valueSize":1},{"declaration":12202,"isOffset":false,"isSlot":false,"src":"3210:9:40","valueSize":1},{"declaration":12202,"isOffset":false,"isSlot":false,"src":"917:9:40","valueSize":1},{"declaration":12210,"isOffset":false,"isSlot":false,"src":"1189:9:40","valueSize":1},{"declaration":12210,"isOffset":false,"isSlot":false,"src":"2143:9:40","valueSize":1},{"declaration":12210,"isOffset":false,"isSlot":false,"src":"2172:9:40","valueSize":1},{"declaration":12210,"isOffset":false,"isSlot":false,"src":"741:9:40","valueSize":1},{"declaration":12210,"isOffset":false,"isSlot":false,"src":"947:9:40","valueSize":1}],"id":12212,"nodeType":"InlineAssembly","src":"588:2727:40"},{"expression":{"id":12213,"name":"tempBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12210,"src":"3332:9:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":12208,"id":12214,"nodeType":"Return","src":"3325:16:40"}]},"id":12216,"implemented":true,"kind":"function","modifiers":[],"name":"concat","nameLocation":"402:6:40","nodeType":"FunctionDefinition","parameters":{"id":12205,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12202,"mutability":"mutable","name":"_preBytes","nameLocation":"431:9:40","nodeType":"VariableDeclaration","scope":12216,"src":"418:22:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12201,"name":"bytes","nodeType":"ElementaryTypeName","src":"418:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":12204,"mutability":"mutable","name":"_postBytes","nameLocation":"463:10:40","nodeType":"VariableDeclaration","scope":12216,"src":"450:23:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12203,"name":"bytes","nodeType":"ElementaryTypeName","src":"450:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"408:71:40"},"returnParameters":{"id":12208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12207,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12216,"src":"527:12:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12206,"name":"bytes","nodeType":"ElementaryTypeName","src":"527:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"526:14:40"},"scope":12531,"src":"393:2955:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12224,"nodeType":"Block","src":"3436:6015:40","statements":[{"AST":{"nativeSrc":"3455:5990:40","nodeType":"YulBlock","src":"3455:5990:40","statements":[{"nativeSrc":"3678:34:40","nodeType":"YulVariableDeclaration","src":"3678:34:40","value":{"arguments":[{"name":"_preBytes.slot","nativeSrc":"3697:14:40","nodeType":"YulIdentifier","src":"3697:14:40"}],"functionName":{"name":"sload","nativeSrc":"3691:5:40","nodeType":"YulIdentifier","src":"3691:5:40"},"nativeSrc":"3691:21:40","nodeType":"YulFunctionCall","src":"3691:21:40"},"variables":[{"name":"fslot","nativeSrc":"3682:5:40","nodeType":"YulTypedName","src":"3682:5:40","type":""}]},{"nativeSrc":"4205:76:40","nodeType":"YulVariableDeclaration","src":"4205:76:40","value":{"arguments":[{"arguments":[{"name":"fslot","nativeSrc":"4228:5:40","nodeType":"YulIdentifier","src":"4228:5:40"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4243:5:40","nodeType":"YulLiteral","src":"4243:5:40","type":"","value":"0x100"},{"arguments":[{"arguments":[{"name":"fslot","nativeSrc":"4261:5:40","nodeType":"YulIdentifier","src":"4261:5:40"},{"kind":"number","nativeSrc":"4268:1:40","nodeType":"YulLiteral","src":"4268:1:40","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"4257:3:40","nodeType":"YulIdentifier","src":"4257:3:40"},"nativeSrc":"4257:13:40","nodeType":"YulFunctionCall","src":"4257:13:40"}],"functionName":{"name":"iszero","nativeSrc":"4250:6:40","nodeType":"YulIdentifier","src":"4250:6:40"},"nativeSrc":"4250:21:40","nodeType":"YulFunctionCall","src":"4250:21:40"}],"functionName":{"name":"mul","nativeSrc":"4239:3:40","nodeType":"YulIdentifier","src":"4239:3:40"},"nativeSrc":"4239:33:40","nodeType":"YulFunctionCall","src":"4239:33:40"},{"kind":"number","nativeSrc":"4274:1:40","nodeType":"YulLiteral","src":"4274:1:40","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4235:3:40","nodeType":"YulIdentifier","src":"4235:3:40"},"nativeSrc":"4235:41:40","nodeType":"YulFunctionCall","src":"4235:41:40"}],"functionName":{"name":"and","nativeSrc":"4224:3:40","nodeType":"YulIdentifier","src":"4224:3:40"},"nativeSrc":"4224:53:40","nodeType":"YulFunctionCall","src":"4224:53:40"},{"kind":"number","nativeSrc":"4279:1:40","nodeType":"YulLiteral","src":"4279:1:40","type":"","value":"2"}],"functionName":{"name":"div","nativeSrc":"4220:3:40","nodeType":"YulIdentifier","src":"4220:3:40"},"nativeSrc":"4220:61:40","nodeType":"YulFunctionCall","src":"4220:61:40"},"variables":[{"name":"slength","nativeSrc":"4209:7:40","nodeType":"YulTypedName","src":"4209:7:40","type":""}]},{"nativeSrc":"4294:32:40","nodeType":"YulVariableDeclaration","src":"4294:32:40","value":{"arguments":[{"name":"_postBytes","nativeSrc":"4315:10:40","nodeType":"YulIdentifier","src":"4315:10:40"}],"functionName":{"name":"mload","nativeSrc":"4309:5:40","nodeType":"YulIdentifier","src":"4309:5:40"},"nativeSrc":"4309:17:40","nodeType":"YulFunctionCall","src":"4309:17:40"},"variables":[{"name":"mlength","nativeSrc":"4298:7:40","nodeType":"YulTypedName","src":"4298:7:40","type":""}]},{"nativeSrc":"4339:38:40","nodeType":"YulVariableDeclaration","src":"4339:38:40","value":{"arguments":[{"name":"slength","nativeSrc":"4360:7:40","nodeType":"YulIdentifier","src":"4360:7:40"},{"name":"mlength","nativeSrc":"4369:7:40","nodeType":"YulIdentifier","src":"4369:7:40"}],"functionName":{"name":"add","nativeSrc":"4356:3:40","nodeType":"YulIdentifier","src":"4356:3:40"},"nativeSrc":"4356:21:40","nodeType":"YulFunctionCall","src":"4356:21:40"},"variables":[{"name":"newlength","nativeSrc":"4343:9:40","nodeType":"YulTypedName","src":"4343:9:40","type":""}]},{"cases":[{"body":{"nativeSrc":"4710:1485:40","nodeType":"YulBlock","src":"4710:1485:40","statements":[{"expression":{"arguments":[{"name":"_preBytes.slot","nativeSrc":"4991:14:40","nodeType":"YulIdentifier","src":"4991:14:40"},{"arguments":[{"name":"fslot","nativeSrc":"5303:5:40","nodeType":"YulIdentifier","src":"5303:5:40"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_postBytes","nativeSrc":"5521:10:40","nodeType":"YulIdentifier","src":"5521:10:40"},{"kind":"number","nativeSrc":"5533:4:40","nodeType":"YulLiteral","src":"5533:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5517:3:40","nodeType":"YulIdentifier","src":"5517:3:40"},"nativeSrc":"5517:21:40","nodeType":"YulFunctionCall","src":"5517:21:40"}],"functionName":{"name":"mload","nativeSrc":"5511:5:40","nodeType":"YulIdentifier","src":"5511:5:40"},"nativeSrc":"5511:28:40","nodeType":"YulFunctionCall","src":"5511:28:40"},{"arguments":[{"kind":"number","nativeSrc":"5648:5:40","nodeType":"YulLiteral","src":"5648:5:40","type":"","value":"0x100"},{"arguments":[{"kind":"number","nativeSrc":"5659:2:40","nodeType":"YulLiteral","src":"5659:2:40","type":"","value":"32"},{"name":"mlength","nativeSrc":"5663:7:40","nodeType":"YulIdentifier","src":"5663:7:40"}],"functionName":{"name":"sub","nativeSrc":"5655:3:40","nodeType":"YulIdentifier","src":"5655:3:40"},"nativeSrc":"5655:16:40","nodeType":"YulFunctionCall","src":"5655:16:40"}],"functionName":{"name":"exp","nativeSrc":"5644:3:40","nodeType":"YulIdentifier","src":"5644:3:40"},"nativeSrc":"5644:28:40","nodeType":"YulFunctionCall","src":"5644:28:40"}],"functionName":{"name":"div","nativeSrc":"5404:3:40","nodeType":"YulIdentifier","src":"5404:3:40"},"nativeSrc":"5404:302:40","nodeType":"YulFunctionCall","src":"5404:302:40"},{"arguments":[{"kind":"number","nativeSrc":"5895:5:40","nodeType":"YulLiteral","src":"5895:5:40","type":"","value":"0x100"},{"arguments":[{"kind":"number","nativeSrc":"5906:2:40","nodeType":"YulLiteral","src":"5906:2:40","type":"","value":"32"},{"name":"newlength","nativeSrc":"5910:9:40","nodeType":"YulIdentifier","src":"5910:9:40"}],"functionName":{"name":"sub","nativeSrc":"5902:3:40","nodeType":"YulIdentifier","src":"5902:3:40"},"nativeSrc":"5902:18:40","nodeType":"YulFunctionCall","src":"5902:18:40"}],"functionName":{"name":"exp","nativeSrc":"5891:3:40","nodeType":"YulIdentifier","src":"5891:3:40"},"nativeSrc":"5891:30:40","nodeType":"YulFunctionCall","src":"5891:30:40"}],"functionName":{"name":"mul","nativeSrc":"5367:3:40","nodeType":"YulIdentifier","src":"5367:3:40"},"nativeSrc":"5367:584:40","nodeType":"YulFunctionCall","src":"5367:584:40"},{"arguments":[{"name":"mlength","nativeSrc":"6104:7:40","nodeType":"YulIdentifier","src":"6104:7:40"},{"kind":"number","nativeSrc":"6113:1:40","nodeType":"YulLiteral","src":"6113:1:40","type":"","value":"2"}],"functionName":{"name":"mul","nativeSrc":"6100:3:40","nodeType":"YulIdentifier","src":"6100:3:40"},"nativeSrc":"6100:15:40","nodeType":"YulFunctionCall","src":"6100:15:40"}],"functionName":{"name":"add","nativeSrc":"5334:3:40","nodeType":"YulIdentifier","src":"5334:3:40"},"nativeSrc":"5334:807:40","nodeType":"YulFunctionCall","src":"5334:807:40"}],"functionName":{"name":"add","nativeSrc":"5134:3:40","nodeType":"YulIdentifier","src":"5134:3:40"},"nativeSrc":"5134:1029:40","nodeType":"YulFunctionCall","src":"5134:1029:40"}],"functionName":{"name":"sstore","nativeSrc":"4963:6:40","nodeType":"YulIdentifier","src":"4963:6:40"},"nativeSrc":"4963:1218:40","nodeType":"YulFunctionCall","src":"4963:1218:40"},"nativeSrc":"4963:1218:40","nodeType":"YulExpressionStatement","src":"4963:1218:40"}]},"nativeSrc":"4703:1492:40","nodeType":"YulCase","src":"4703:1492:40","value":{"kind":"number","nativeSrc":"4708:1:40","nodeType":"YulLiteral","src":"4708:1:40","type":"","value":"2"}},{"body":{"nativeSrc":"6215:1935:40","nodeType":"YulBlock","src":"6215:1935:40","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6424:3:40","nodeType":"YulLiteral","src":"6424:3:40","type":"","value":"0x0"},{"name":"_preBytes.slot","nativeSrc":"6429:14:40","nodeType":"YulIdentifier","src":"6429:14:40"}],"functionName":{"name":"mstore","nativeSrc":"6417:6:40","nodeType":"YulIdentifier","src":"6417:6:40"},"nativeSrc":"6417:27:40","nodeType":"YulFunctionCall","src":"6417:27:40"},"nativeSrc":"6417:27:40","nodeType":"YulExpressionStatement","src":"6417:27:40"},{"nativeSrc":"6461:53:40","nodeType":"YulVariableDeclaration","src":"6461:53:40","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6485:3:40","nodeType":"YulLiteral","src":"6485:3:40","type":"","value":"0x0"},{"kind":"number","nativeSrc":"6490:4:40","nodeType":"YulLiteral","src":"6490:4:40","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"6475:9:40","nodeType":"YulIdentifier","src":"6475:9:40"},"nativeSrc":"6475:20:40","nodeType":"YulFunctionCall","src":"6475:20:40"},{"arguments":[{"name":"slength","nativeSrc":"6501:7:40","nodeType":"YulIdentifier","src":"6501:7:40"},{"kind":"number","nativeSrc":"6510:2:40","nodeType":"YulLiteral","src":"6510:2:40","type":"","value":"32"}],"functionName":{"name":"div","nativeSrc":"6497:3:40","nodeType":"YulIdentifier","src":"6497:3:40"},"nativeSrc":"6497:16:40","nodeType":"YulFunctionCall","src":"6497:16:40"}],"functionName":{"name":"add","nativeSrc":"6471:3:40","nodeType":"YulIdentifier","src":"6471:3:40"},"nativeSrc":"6471:43:40","nodeType":"YulFunctionCall","src":"6471:43:40"},"variables":[{"name":"sc","nativeSrc":"6465:2:40","nodeType":"YulTypedName","src":"6465:2:40","type":""}]},{"expression":{"arguments":[{"name":"_preBytes.slot","nativeSrc":"6574:14:40","nodeType":"YulIdentifier","src":"6574:14:40"},{"arguments":[{"arguments":[{"name":"newlength","nativeSrc":"6598:9:40","nodeType":"YulIdentifier","src":"6598:9:40"},{"kind":"number","nativeSrc":"6609:1:40","nodeType":"YulLiteral","src":"6609:1:40","type":"","value":"2"}],"functionName":{"name":"mul","nativeSrc":"6594:3:40","nodeType":"YulIdentifier","src":"6594:3:40"},"nativeSrc":"6594:17:40","nodeType":"YulFunctionCall","src":"6594:17:40"},{"kind":"number","nativeSrc":"6613:1:40","nodeType":"YulLiteral","src":"6613:1:40","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"6590:3:40","nodeType":"YulIdentifier","src":"6590:3:40"},"nativeSrc":"6590:25:40","nodeType":"YulFunctionCall","src":"6590:25:40"}],"functionName":{"name":"sstore","nativeSrc":"6567:6:40","nodeType":"YulIdentifier","src":"6567:6:40"},"nativeSrc":"6567:49:40","nodeType":"YulFunctionCall","src":"6567:49:40"},"nativeSrc":"6567:49:40","nodeType":"YulExpressionStatement","src":"6567:49:40"},{"nativeSrc":"7204:30:40","nodeType":"YulVariableDeclaration","src":"7204:30:40","value":{"arguments":[{"kind":"number","nativeSrc":"7222:2:40","nodeType":"YulLiteral","src":"7222:2:40","type":"","value":"32"},{"name":"slength","nativeSrc":"7226:7:40","nodeType":"YulIdentifier","src":"7226:7:40"}],"functionName":{"name":"sub","nativeSrc":"7218:3:40","nodeType":"YulIdentifier","src":"7218:3:40"},"nativeSrc":"7218:16:40","nodeType":"YulFunctionCall","src":"7218:16:40"},"variables":[{"name":"submod","nativeSrc":"7208:6:40","nodeType":"YulTypedName","src":"7208:6:40","type":""}]},{"nativeSrc":"7251:33:40","nodeType":"YulVariableDeclaration","src":"7251:33:40","value":{"arguments":[{"name":"_postBytes","nativeSrc":"7265:10:40","nodeType":"YulIdentifier","src":"7265:10:40"},{"name":"submod","nativeSrc":"7277:6:40","nodeType":"YulIdentifier","src":"7277:6:40"}],"functionName":{"name":"add","nativeSrc":"7261:3:40","nodeType":"YulIdentifier","src":"7261:3:40"},"nativeSrc":"7261:23:40","nodeType":"YulFunctionCall","src":"7261:23:40"},"variables":[{"name":"mc","nativeSrc":"7255:2:40","nodeType":"YulTypedName","src":"7255:2:40","type":""}]},{"nativeSrc":"7301:35:40","nodeType":"YulVariableDeclaration","src":"7301:35:40","value":{"arguments":[{"name":"_postBytes","nativeSrc":"7316:10:40","nodeType":"YulIdentifier","src":"7316:10:40"},{"name":"mlength","nativeSrc":"7328:7:40","nodeType":"YulIdentifier","src":"7328:7:40"}],"functionName":{"name":"add","nativeSrc":"7312:3:40","nodeType":"YulIdentifier","src":"7312:3:40"},"nativeSrc":"7312:24:40","nodeType":"YulFunctionCall","src":"7312:24:40"},"variables":[{"name":"end","nativeSrc":"7305:3:40","nodeType":"YulTypedName","src":"7305:3:40","type":""}]},{"nativeSrc":"7353:38:40","nodeType":"YulVariableDeclaration","src":"7353:38:40","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7373:5:40","nodeType":"YulLiteral","src":"7373:5:40","type":"","value":"0x100"},{"name":"submod","nativeSrc":"7380:6:40","nodeType":"YulIdentifier","src":"7380:6:40"}],"functionName":{"name":"exp","nativeSrc":"7369:3:40","nodeType":"YulIdentifier","src":"7369:3:40"},"nativeSrc":"7369:18:40","nodeType":"YulFunctionCall","src":"7369:18:40"},{"kind":"number","nativeSrc":"7389:1:40","nodeType":"YulLiteral","src":"7389:1:40","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7365:3:40","nodeType":"YulIdentifier","src":"7365:3:40"},"nativeSrc":"7365:26:40","nodeType":"YulFunctionCall","src":"7365:26:40"},"variables":[{"name":"mask","nativeSrc":"7357:4:40","nodeType":"YulTypedName","src":"7357:4:40","type":""}]},{"expression":{"arguments":[{"name":"sc","nativeSrc":"7437:2:40","nodeType":"YulIdentifier","src":"7437:2:40"},{"arguments":[{"arguments":[{"name":"fslot","nativeSrc":"7523:5:40","nodeType":"YulIdentifier","src":"7523:5:40"},{"kind":"number","nativeSrc":"7558:66:40","nodeType":"YulLiteral","src":"7558:66:40","type":"","value":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00"}],"functionName":{"name":"and","nativeSrc":"7490:3:40","nodeType":"YulIdentifier","src":"7490:3:40"},"nativeSrc":"7490:160:40","nodeType":"YulFunctionCall","src":"7490:160:40"},{"arguments":[{"arguments":[{"name":"mc","nativeSrc":"7686:2:40","nodeType":"YulIdentifier","src":"7686:2:40"}],"functionName":{"name":"mload","nativeSrc":"7680:5:40","nodeType":"YulIdentifier","src":"7680:5:40"},"nativeSrc":"7680:9:40","nodeType":"YulFunctionCall","src":"7680:9:40"},{"name":"mask","nativeSrc":"7691:4:40","nodeType":"YulIdentifier","src":"7691:4:40"}],"functionName":{"name":"and","nativeSrc":"7676:3:40","nodeType":"YulIdentifier","src":"7676:3:40"},"nativeSrc":"7676:20:40","nodeType":"YulFunctionCall","src":"7676:20:40"}],"functionName":{"name":"add","nativeSrc":"7461:3:40","nodeType":"YulIdentifier","src":"7461:3:40"},"nativeSrc":"7461:257:40","nodeType":"YulFunctionCall","src":"7461:257:40"}],"functionName":{"name":"sstore","nativeSrc":"7409:6:40","nodeType":"YulIdentifier","src":"7409:6:40"},"nativeSrc":"7409:327:40","nodeType":"YulFunctionCall","src":"7409:327:40"},"nativeSrc":"7409:327:40","nodeType":"YulExpressionStatement","src":"7409:327:40"},{"body":{"nativeSrc":"7964:61:40","nodeType":"YulBlock","src":"7964:61:40","statements":[{"expression":{"arguments":[{"name":"sc","nativeSrc":"7993:2:40","nodeType":"YulIdentifier","src":"7993:2:40"},{"arguments":[{"name":"mc","nativeSrc":"8003:2:40","nodeType":"YulIdentifier","src":"8003:2:40"}],"functionName":{"name":"mload","nativeSrc":"7997:5:40","nodeType":"YulIdentifier","src":"7997:5:40"},"nativeSrc":"7997:9:40","nodeType":"YulFunctionCall","src":"7997:9:40"}],"functionName":{"name":"sstore","nativeSrc":"7986:6:40","nodeType":"YulIdentifier","src":"7986:6:40"},"nativeSrc":"7986:21:40","nodeType":"YulFunctionCall","src":"7986:21:40"},"nativeSrc":"7986:21:40","nodeType":"YulExpressionStatement","src":"7986:21:40"}]},"condition":{"arguments":[{"name":"mc","nativeSrc":"7858:2:40","nodeType":"YulIdentifier","src":"7858:2:40"},{"name":"end","nativeSrc":"7862:3:40","nodeType":"YulIdentifier","src":"7862:3:40"}],"functionName":{"name":"lt","nativeSrc":"7855:2:40","nodeType":"YulIdentifier","src":"7855:2:40"},"nativeSrc":"7855:11:40","nodeType":"YulFunctionCall","src":"7855:11:40"},"nativeSrc":"7754:271:40","nodeType":"YulForLoop","post":{"nativeSrc":"7867:96:40","nodeType":"YulBlock","src":"7867:96:40","statements":[{"nativeSrc":"7889:16:40","nodeType":"YulAssignment","src":"7889:16:40","value":{"arguments":[{"name":"sc","nativeSrc":"7899:2:40","nodeType":"YulIdentifier","src":"7899:2:40"},{"kind":"number","nativeSrc":"7903:1:40","nodeType":"YulLiteral","src":"7903:1:40","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"7895:3:40","nodeType":"YulIdentifier","src":"7895:3:40"},"nativeSrc":"7895:10:40","nodeType":"YulFunctionCall","src":"7895:10:40"},"variableNames":[{"name":"sc","nativeSrc":"7889:2:40","nodeType":"YulIdentifier","src":"7889:2:40"}]},{"nativeSrc":"7926:19:40","nodeType":"YulAssignment","src":"7926:19:40","value":{"arguments":[{"name":"mc","nativeSrc":"7936:2:40","nodeType":"YulIdentifier","src":"7936:2:40"},{"kind":"number","nativeSrc":"7940:4:40","nodeType":"YulLiteral","src":"7940:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7932:3:40","nodeType":"YulIdentifier","src":"7932:3:40"},"nativeSrc":"7932:13:40","nodeType":"YulFunctionCall","src":"7932:13:40"},"variableNames":[{"name":"mc","nativeSrc":"7926:2:40","nodeType":"YulIdentifier","src":"7926:2:40"}]}]},"pre":{"nativeSrc":"7758:96:40","nodeType":"YulBlock","src":"7758:96:40","statements":[{"nativeSrc":"7780:19:40","nodeType":"YulAssignment","src":"7780:19:40","value":{"arguments":[{"name":"mc","nativeSrc":"7790:2:40","nodeType":"YulIdentifier","src":"7790:2:40"},{"kind":"number","nativeSrc":"7794:4:40","nodeType":"YulLiteral","src":"7794:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7786:3:40","nodeType":"YulIdentifier","src":"7786:3:40"},"nativeSrc":"7786:13:40","nodeType":"YulFunctionCall","src":"7786:13:40"},"variableNames":[{"name":"mc","nativeSrc":"7780:2:40","nodeType":"YulIdentifier","src":"7780:2:40"}]},{"nativeSrc":"7820:16:40","nodeType":"YulAssignment","src":"7820:16:40","value":{"arguments":[{"name":"sc","nativeSrc":"7830:2:40","nodeType":"YulIdentifier","src":"7830:2:40"},{"kind":"number","nativeSrc":"7834:1:40","nodeType":"YulLiteral","src":"7834:1:40","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"7826:3:40","nodeType":"YulIdentifier","src":"7826:3:40"},"nativeSrc":"7826:10:40","nodeType":"YulFunctionCall","src":"7826:10:40"},"variableNames":[{"name":"sc","nativeSrc":"7820:2:40","nodeType":"YulIdentifier","src":"7820:2:40"}]}]},"src":"7754:271:40"},{"nativeSrc":"8043:32:40","nodeType":"YulAssignment","src":"8043:32:40","value":{"arguments":[{"kind":"number","nativeSrc":"8055:5:40","nodeType":"YulLiteral","src":"8055:5:40","type":"","value":"0x100"},{"arguments":[{"name":"mc","nativeSrc":"8066:2:40","nodeType":"YulIdentifier","src":"8066:2:40"},{"name":"end","nativeSrc":"8070:3:40","nodeType":"YulIdentifier","src":"8070:3:40"}],"functionName":{"name":"sub","nativeSrc":"8062:3:40","nodeType":"YulIdentifier","src":"8062:3:40"},"nativeSrc":"8062:12:40","nodeType":"YulFunctionCall","src":"8062:12:40"}],"functionName":{"name":"exp","nativeSrc":"8051:3:40","nodeType":"YulIdentifier","src":"8051:3:40"},"nativeSrc":"8051:24:40","nodeType":"YulFunctionCall","src":"8051:24:40"},"variableNames":[{"name":"mask","nativeSrc":"8043:4:40","nodeType":"YulIdentifier","src":"8043:4:40"}]},{"expression":{"arguments":[{"name":"sc","nativeSrc":"8100:2:40","nodeType":"YulIdentifier","src":"8100:2:40"},{"arguments":[{"arguments":[{"arguments":[{"name":"mc","nativeSrc":"8118:2:40","nodeType":"YulIdentifier","src":"8118:2:40"}],"functionName":{"name":"mload","nativeSrc":"8112:5:40","nodeType":"YulIdentifier","src":"8112:5:40"},"nativeSrc":"8112:9:40","nodeType":"YulFunctionCall","src":"8112:9:40"},{"name":"mask","nativeSrc":"8123:4:40","nodeType":"YulIdentifier","src":"8123:4:40"}],"functionName":{"name":"div","nativeSrc":"8108:3:40","nodeType":"YulIdentifier","src":"8108:3:40"},"nativeSrc":"8108:20:40","nodeType":"YulFunctionCall","src":"8108:20:40"},{"name":"mask","nativeSrc":"8130:4:40","nodeType":"YulIdentifier","src":"8130:4:40"}],"functionName":{"name":"mul","nativeSrc":"8104:3:40","nodeType":"YulIdentifier","src":"8104:3:40"},"nativeSrc":"8104:31:40","nodeType":"YulFunctionCall","src":"8104:31:40"}],"functionName":{"name":"sstore","nativeSrc":"8093:6:40","nodeType":"YulIdentifier","src":"8093:6:40"},"nativeSrc":"8093:43:40","nodeType":"YulFunctionCall","src":"8093:43:40"},"nativeSrc":"8093:43:40","nodeType":"YulExpressionStatement","src":"8093:43:40"}]},"nativeSrc":"6208:1942:40","nodeType":"YulCase","src":"6208:1942:40","value":{"kind":"number","nativeSrc":"6213:1:40","nodeType":"YulLiteral","src":"6213:1:40","type":"","value":"1"}},{"body":{"nativeSrc":"8171:1264:40","nodeType":"YulBlock","src":"8171:1264:40","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8268:3:40","nodeType":"YulLiteral","src":"8268:3:40","type":"","value":"0x0"},{"name":"_preBytes.slot","nativeSrc":"8273:14:40","nodeType":"YulIdentifier","src":"8273:14:40"}],"functionName":{"name":"mstore","nativeSrc":"8261:6:40","nodeType":"YulIdentifier","src":"8261:6:40"},"nativeSrc":"8261:27:40","nodeType":"YulFunctionCall","src":"8261:27:40"},"nativeSrc":"8261:27:40","nodeType":"YulExpressionStatement","src":"8261:27:40"},{"nativeSrc":"8381:53:40","nodeType":"YulVariableDeclaration","src":"8381:53:40","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"8405:3:40","nodeType":"YulLiteral","src":"8405:3:40","type":"","value":"0x0"},{"kind":"number","nativeSrc":"8410:4:40","nodeType":"YulLiteral","src":"8410:4:40","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"8395:9:40","nodeType":"YulIdentifier","src":"8395:9:40"},"nativeSrc":"8395:20:40","nodeType":"YulFunctionCall","src":"8395:20:40"},{"arguments":[{"name":"slength","nativeSrc":"8421:7:40","nodeType":"YulIdentifier","src":"8421:7:40"},{"kind":"number","nativeSrc":"8430:2:40","nodeType":"YulLiteral","src":"8430:2:40","type":"","value":"32"}],"functionName":{"name":"div","nativeSrc":"8417:3:40","nodeType":"YulIdentifier","src":"8417:3:40"},"nativeSrc":"8417:16:40","nodeType":"YulFunctionCall","src":"8417:16:40"}],"functionName":{"name":"add","nativeSrc":"8391:3:40","nodeType":"YulIdentifier","src":"8391:3:40"},"nativeSrc":"8391:43:40","nodeType":"YulFunctionCall","src":"8391:43:40"},"variables":[{"name":"sc","nativeSrc":"8385:2:40","nodeType":"YulTypedName","src":"8385:2:40","type":""}]},{"expression":{"arguments":[{"name":"_preBytes.slot","nativeSrc":"8494:14:40","nodeType":"YulIdentifier","src":"8494:14:40"},{"arguments":[{"arguments":[{"name":"newlength","nativeSrc":"8518:9:40","nodeType":"YulIdentifier","src":"8518:9:40"},{"kind":"number","nativeSrc":"8529:1:40","nodeType":"YulLiteral","src":"8529:1:40","type":"","value":"2"}],"functionName":{"name":"mul","nativeSrc":"8514:3:40","nodeType":"YulIdentifier","src":"8514:3:40"},"nativeSrc":"8514:17:40","nodeType":"YulFunctionCall","src":"8514:17:40"},{"kind":"number","nativeSrc":"8533:1:40","nodeType":"YulLiteral","src":"8533:1:40","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"8510:3:40","nodeType":"YulIdentifier","src":"8510:3:40"},"nativeSrc":"8510:25:40","nodeType":"YulFunctionCall","src":"8510:25:40"}],"functionName":{"name":"sstore","nativeSrc":"8487:6:40","nodeType":"YulIdentifier","src":"8487:6:40"},"nativeSrc":"8487:49:40","nodeType":"YulFunctionCall","src":"8487:49:40"},"nativeSrc":"8487:49:40","nodeType":"YulExpressionStatement","src":"8487:49:40"},{"nativeSrc":"8663:34:40","nodeType":"YulVariableDeclaration","src":"8663:34:40","value":{"arguments":[{"name":"slength","nativeSrc":"8685:7:40","nodeType":"YulIdentifier","src":"8685:7:40"},{"kind":"number","nativeSrc":"8694:2:40","nodeType":"YulLiteral","src":"8694:2:40","type":"","value":"32"}],"functionName":{"name":"mod","nativeSrc":"8681:3:40","nodeType":"YulIdentifier","src":"8681:3:40"},"nativeSrc":"8681:16:40","nodeType":"YulFunctionCall","src":"8681:16:40"},"variables":[{"name":"slengthmod","nativeSrc":"8667:10:40","nodeType":"YulTypedName","src":"8667:10:40","type":""}]},{"nativeSrc":"8714:34:40","nodeType":"YulVariableDeclaration","src":"8714:34:40","value":{"arguments":[{"name":"mlength","nativeSrc":"8736:7:40","nodeType":"YulIdentifier","src":"8736:7:40"},{"kind":"number","nativeSrc":"8745:2:40","nodeType":"YulLiteral","src":"8745:2:40","type":"","value":"32"}],"functionName":{"name":"mod","nativeSrc":"8732:3:40","nodeType":"YulIdentifier","src":"8732:3:40"},"nativeSrc":"8732:16:40","nodeType":"YulFunctionCall","src":"8732:16:40"},"variables":[{"name":"mlengthmod","nativeSrc":"8718:10:40","nodeType":"YulTypedName","src":"8718:10:40","type":""}]},{"nativeSrc":"8765:33:40","nodeType":"YulVariableDeclaration","src":"8765:33:40","value":{"arguments":[{"kind":"number","nativeSrc":"8783:2:40","nodeType":"YulLiteral","src":"8783:2:40","type":"","value":"32"},{"name":"slengthmod","nativeSrc":"8787:10:40","nodeType":"YulIdentifier","src":"8787:10:40"}],"functionName":{"name":"sub","nativeSrc":"8779:3:40","nodeType":"YulIdentifier","src":"8779:3:40"},"nativeSrc":"8779:19:40","nodeType":"YulFunctionCall","src":"8779:19:40"},"variables":[{"name":"submod","nativeSrc":"8769:6:40","nodeType":"YulTypedName","src":"8769:6:40","type":""}]},{"nativeSrc":"8815:33:40","nodeType":"YulVariableDeclaration","src":"8815:33:40","value":{"arguments":[{"name":"_postBytes","nativeSrc":"8829:10:40","nodeType":"YulIdentifier","src":"8829:10:40"},{"name":"submod","nativeSrc":"8841:6:40","nodeType":"YulIdentifier","src":"8841:6:40"}],"functionName":{"name":"add","nativeSrc":"8825:3:40","nodeType":"YulIdentifier","src":"8825:3:40"},"nativeSrc":"8825:23:40","nodeType":"YulFunctionCall","src":"8825:23:40"},"variables":[{"name":"mc","nativeSrc":"8819:2:40","nodeType":"YulTypedName","src":"8819:2:40","type":""}]},{"nativeSrc":"8865:35:40","nodeType":"YulVariableDeclaration","src":"8865:35:40","value":{"arguments":[{"name":"_postBytes","nativeSrc":"8880:10:40","nodeType":"YulIdentifier","src":"8880:10:40"},{"name":"mlength","nativeSrc":"8892:7:40","nodeType":"YulIdentifier","src":"8892:7:40"}],"functionName":{"name":"add","nativeSrc":"8876:3:40","nodeType":"YulIdentifier","src":"8876:3:40"},"nativeSrc":"8876:24:40","nodeType":"YulFunctionCall","src":"8876:24:40"},"variables":[{"name":"end","nativeSrc":"8869:3:40","nodeType":"YulTypedName","src":"8869:3:40","type":""}]},{"nativeSrc":"8917:38:40","nodeType":"YulVariableDeclaration","src":"8917:38:40","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"8937:5:40","nodeType":"YulLiteral","src":"8937:5:40","type":"","value":"0x100"},{"name":"submod","nativeSrc":"8944:6:40","nodeType":"YulIdentifier","src":"8944:6:40"}],"functionName":{"name":"exp","nativeSrc":"8933:3:40","nodeType":"YulIdentifier","src":"8933:3:40"},"nativeSrc":"8933:18:40","nodeType":"YulFunctionCall","src":"8933:18:40"},{"kind":"number","nativeSrc":"8953:1:40","nodeType":"YulLiteral","src":"8953:1:40","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"8929:3:40","nodeType":"YulIdentifier","src":"8929:3:40"},"nativeSrc":"8929:26:40","nodeType":"YulFunctionCall","src":"8929:26:40"},"variables":[{"name":"mask","nativeSrc":"8921:4:40","nodeType":"YulTypedName","src":"8921:4:40","type":""}]},{"expression":{"arguments":[{"name":"sc","nativeSrc":"8980:2:40","nodeType":"YulIdentifier","src":"8980:2:40"},{"arguments":[{"arguments":[{"name":"sc","nativeSrc":"8994:2:40","nodeType":"YulIdentifier","src":"8994:2:40"}],"functionName":{"name":"sload","nativeSrc":"8988:5:40","nodeType":"YulIdentifier","src":"8988:5:40"},"nativeSrc":"8988:9:40","nodeType":"YulFunctionCall","src":"8988:9:40"},{"arguments":[{"arguments":[{"name":"mc","nativeSrc":"9009:2:40","nodeType":"YulIdentifier","src":"9009:2:40"}],"functionName":{"name":"mload","nativeSrc":"9003:5:40","nodeType":"YulIdentifier","src":"9003:5:40"},"nativeSrc":"9003:9:40","nodeType":"YulFunctionCall","src":"9003:9:40"},{"name":"mask","nativeSrc":"9014:4:40","nodeType":"YulIdentifier","src":"9014:4:40"}],"functionName":{"name":"and","nativeSrc":"8999:3:40","nodeType":"YulIdentifier","src":"8999:3:40"},"nativeSrc":"8999:20:40","nodeType":"YulFunctionCall","src":"8999:20:40"}],"functionName":{"name":"add","nativeSrc":"8984:3:40","nodeType":"YulIdentifier","src":"8984:3:40"},"nativeSrc":"8984:36:40","nodeType":"YulFunctionCall","src":"8984:36:40"}],"functionName":{"name":"sstore","nativeSrc":"8973:6:40","nodeType":"YulIdentifier","src":"8973:6:40"},"nativeSrc":"8973:48:40","nodeType":"YulFunctionCall","src":"8973:48:40"},"nativeSrc":"8973:48:40","nodeType":"YulExpressionStatement","src":"8973:48:40"},{"body":{"nativeSrc":"9249:61:40","nodeType":"YulBlock","src":"9249:61:40","statements":[{"expression":{"arguments":[{"name":"sc","nativeSrc":"9278:2:40","nodeType":"YulIdentifier","src":"9278:2:40"},{"arguments":[{"name":"mc","nativeSrc":"9288:2:40","nodeType":"YulIdentifier","src":"9288:2:40"}],"functionName":{"name":"mload","nativeSrc":"9282:5:40","nodeType":"YulIdentifier","src":"9282:5:40"},"nativeSrc":"9282:9:40","nodeType":"YulFunctionCall","src":"9282:9:40"}],"functionName":{"name":"sstore","nativeSrc":"9271:6:40","nodeType":"YulIdentifier","src":"9271:6:40"},"nativeSrc":"9271:21:40","nodeType":"YulFunctionCall","src":"9271:21:40"},"nativeSrc":"9271:21:40","nodeType":"YulExpressionStatement","src":"9271:21:40"}]},"condition":{"arguments":[{"name":"mc","nativeSrc":"9143:2:40","nodeType":"YulIdentifier","src":"9143:2:40"},{"name":"end","nativeSrc":"9147:3:40","nodeType":"YulIdentifier","src":"9147:3:40"}],"functionName":{"name":"lt","nativeSrc":"9140:2:40","nodeType":"YulIdentifier","src":"9140:2:40"},"nativeSrc":"9140:11:40","nodeType":"YulFunctionCall","src":"9140:11:40"},"nativeSrc":"9039:271:40","nodeType":"YulForLoop","post":{"nativeSrc":"9152:96:40","nodeType":"YulBlock","src":"9152:96:40","statements":[{"nativeSrc":"9174:16:40","nodeType":"YulAssignment","src":"9174:16:40","value":{"arguments":[{"name":"sc","nativeSrc":"9184:2:40","nodeType":"YulIdentifier","src":"9184:2:40"},{"kind":"number","nativeSrc":"9188:1:40","nodeType":"YulLiteral","src":"9188:1:40","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"9180:3:40","nodeType":"YulIdentifier","src":"9180:3:40"},"nativeSrc":"9180:10:40","nodeType":"YulFunctionCall","src":"9180:10:40"},"variableNames":[{"name":"sc","nativeSrc":"9174:2:40","nodeType":"YulIdentifier","src":"9174:2:40"}]},{"nativeSrc":"9211:19:40","nodeType":"YulAssignment","src":"9211:19:40","value":{"arguments":[{"name":"mc","nativeSrc":"9221:2:40","nodeType":"YulIdentifier","src":"9221:2:40"},{"kind":"number","nativeSrc":"9225:4:40","nodeType":"YulLiteral","src":"9225:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"9217:3:40","nodeType":"YulIdentifier","src":"9217:3:40"},"nativeSrc":"9217:13:40","nodeType":"YulFunctionCall","src":"9217:13:40"},"variableNames":[{"name":"mc","nativeSrc":"9211:2:40","nodeType":"YulIdentifier","src":"9211:2:40"}]}]},"pre":{"nativeSrc":"9043:96:40","nodeType":"YulBlock","src":"9043:96:40","statements":[{"nativeSrc":"9065:16:40","nodeType":"YulAssignment","src":"9065:16:40","value":{"arguments":[{"name":"sc","nativeSrc":"9075:2:40","nodeType":"YulIdentifier","src":"9075:2:40"},{"kind":"number","nativeSrc":"9079:1:40","nodeType":"YulLiteral","src":"9079:1:40","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"9071:3:40","nodeType":"YulIdentifier","src":"9071:3:40"},"nativeSrc":"9071:10:40","nodeType":"YulFunctionCall","src":"9071:10:40"},"variableNames":[{"name":"sc","nativeSrc":"9065:2:40","nodeType":"YulIdentifier","src":"9065:2:40"}]},{"nativeSrc":"9102:19:40","nodeType":"YulAssignment","src":"9102:19:40","value":{"arguments":[{"name":"mc","nativeSrc":"9112:2:40","nodeType":"YulIdentifier","src":"9112:2:40"},{"kind":"number","nativeSrc":"9116:4:40","nodeType":"YulLiteral","src":"9116:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"9108:3:40","nodeType":"YulIdentifier","src":"9108:3:40"},"nativeSrc":"9108:13:40","nodeType":"YulFunctionCall","src":"9108:13:40"},"variableNames":[{"name":"mc","nativeSrc":"9102:2:40","nodeType":"YulIdentifier","src":"9102:2:40"}]}]},"src":"9039:271:40"},{"nativeSrc":"9328:32:40","nodeType":"YulAssignment","src":"9328:32:40","value":{"arguments":[{"kind":"number","nativeSrc":"9340:5:40","nodeType":"YulLiteral","src":"9340:5:40","type":"","value":"0x100"},{"arguments":[{"name":"mc","nativeSrc":"9351:2:40","nodeType":"YulIdentifier","src":"9351:2:40"},{"name":"end","nativeSrc":"9355:3:40","nodeType":"YulIdentifier","src":"9355:3:40"}],"functionName":{"name":"sub","nativeSrc":"9347:3:40","nodeType":"YulIdentifier","src":"9347:3:40"},"nativeSrc":"9347:12:40","nodeType":"YulFunctionCall","src":"9347:12:40"}],"functionName":{"name":"exp","nativeSrc":"9336:3:40","nodeType":"YulIdentifier","src":"9336:3:40"},"nativeSrc":"9336:24:40","nodeType":"YulFunctionCall","src":"9336:24:40"},"variableNames":[{"name":"mask","nativeSrc":"9328:4:40","nodeType":"YulIdentifier","src":"9328:4:40"}]},{"expression":{"arguments":[{"name":"sc","nativeSrc":"9385:2:40","nodeType":"YulIdentifier","src":"9385:2:40"},{"arguments":[{"arguments":[{"arguments":[{"name":"mc","nativeSrc":"9403:2:40","nodeType":"YulIdentifier","src":"9403:2:40"}],"functionName":{"name":"mload","nativeSrc":"9397:5:40","nodeType":"YulIdentifier","src":"9397:5:40"},"nativeSrc":"9397:9:40","nodeType":"YulFunctionCall","src":"9397:9:40"},{"name":"mask","nativeSrc":"9408:4:40","nodeType":"YulIdentifier","src":"9408:4:40"}],"functionName":{"name":"div","nativeSrc":"9393:3:40","nodeType":"YulIdentifier","src":"9393:3:40"},"nativeSrc":"9393:20:40","nodeType":"YulFunctionCall","src":"9393:20:40"},{"name":"mask","nativeSrc":"9415:4:40","nodeType":"YulIdentifier","src":"9415:4:40"}],"functionName":{"name":"mul","nativeSrc":"9389:3:40","nodeType":"YulIdentifier","src":"9389:3:40"},"nativeSrc":"9389:31:40","nodeType":"YulFunctionCall","src":"9389:31:40"}],"functionName":{"name":"sstore","nativeSrc":"9378:6:40","nodeType":"YulIdentifier","src":"9378:6:40"},"nativeSrc":"9378:43:40","nodeType":"YulFunctionCall","src":"9378:43:40"},"nativeSrc":"9378:43:40","nodeType":"YulExpressionStatement","src":"9378:43:40"}]},"nativeSrc":"8163:1272:40","nodeType":"YulCase","src":"8163:1272:40","value":"default"}],"expression":{"arguments":[{"arguments":[{"name":"slength","nativeSrc":"4658:7:40","nodeType":"YulIdentifier","src":"4658:7:40"},{"kind":"number","nativeSrc":"4667:2:40","nodeType":"YulLiteral","src":"4667:2:40","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"4655:2:40","nodeType":"YulIdentifier","src":"4655:2:40"},"nativeSrc":"4655:15:40","nodeType":"YulFunctionCall","src":"4655:15:40"},{"arguments":[{"name":"newlength","nativeSrc":"4675:9:40","nodeType":"YulIdentifier","src":"4675:9:40"},{"kind":"number","nativeSrc":"4686:2:40","nodeType":"YulLiteral","src":"4686:2:40","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"4672:2:40","nodeType":"YulIdentifier","src":"4672:2:40"},"nativeSrc":"4672:17:40","nodeType":"YulFunctionCall","src":"4672:17:40"}],"functionName":{"name":"add","nativeSrc":"4651:3:40","nodeType":"YulIdentifier","src":"4651:3:40"},"nativeSrc":"4651:39:40","nodeType":"YulFunctionCall","src":"4651:39:40"},"nativeSrc":"4644:4791:40","nodeType":"YulSwitch","src":"4644:4791:40"}]},"evmVersion":"cancun","externalReferences":[{"declaration":12220,"isOffset":false,"isSlot":false,"src":"4315:10:40","valueSize":1},{"declaration":12220,"isOffset":false,"isSlot":false,"src":"5521:10:40","valueSize":1},{"declaration":12220,"isOffset":false,"isSlot":false,"src":"7265:10:40","valueSize":1},{"declaration":12220,"isOffset":false,"isSlot":false,"src":"7316:10:40","valueSize":1},{"declaration":12220,"isOffset":false,"isSlot":false,"src":"8829:10:40","valueSize":1},{"declaration":12220,"isOffset":false,"isSlot":false,"src":"8880:10:40","valueSize":1},{"declaration":12218,"isOffset":false,"isSlot":true,"src":"3697:14:40","suffix":"slot","valueSize":1},{"declaration":12218,"isOffset":false,"isSlot":true,"src":"4991:14:40","suffix":"slot","valueSize":1},{"declaration":12218,"isOffset":false,"isSlot":true,"src":"6429:14:40","suffix":"slot","valueSize":1},{"declaration":12218,"isOffset":false,"isSlot":true,"src":"6574:14:40","suffix":"slot","valueSize":1},{"declaration":12218,"isOffset":false,"isSlot":true,"src":"8273:14:40","suffix":"slot","valueSize":1},{"declaration":12218,"isOffset":false,"isSlot":true,"src":"8494:14:40","suffix":"slot","valueSize":1}],"id":12223,"nodeType":"InlineAssembly","src":"3446:5999:40"}]},"id":12225,"implemented":true,"kind":"function","modifiers":[],"name":"concatStorage","nameLocation":"3363:13:40","nodeType":"FunctionDefinition","parameters":{"id":12221,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12218,"mutability":"mutable","name":"_preBytes","nameLocation":"3391:9:40","nodeType":"VariableDeclaration","scope":12225,"src":"3377:23:40","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":12217,"name":"bytes","nodeType":"ElementaryTypeName","src":"3377:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":12220,"mutability":"mutable","name":"_postBytes","nameLocation":"3415:10:40","nodeType":"VariableDeclaration","scope":12225,"src":"3402:23:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12219,"name":"bytes","nodeType":"ElementaryTypeName","src":"3402:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3376:50:40"},"returnParameters":{"id":12222,"nodeType":"ParameterList","parameters":[],"src":"3436:0:40"},"scope":12531,"src":"3354:6097:40","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":12261,"nodeType":"Block","src":"9621:2640:40","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12237,"name":"_length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12231,"src":"9639:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3331","id":12238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9649:2:40","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"31"},"src":"9639:12:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":12240,"name":"_length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12231,"src":"9655:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9639:23:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"736c6963655f6f766572666c6f77","id":12242,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9664:16:40","typeDescriptions":{"typeIdentifier":"t_stringliteral_5d3d629f76473d94377d221b1f1c8f2161f7b65cab69e095662ec5d0e026c17e","typeString":"literal_string \"slice_overflow\""},"value":"slice_overflow"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5d3d629f76473d94377d221b1f1c8f2161f7b65cab69e095662ec5d0e026c17e","typeString":"literal_string \"slice_overflow\""}],"id":12236,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"9631:7:40","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":12243,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9631:50:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12244,"nodeType":"ExpressionStatement","src":"9631:50:40"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12246,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12227,"src":"9699:6:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9706:6:40","memberName":"length","nodeType":"MemberAccess","src":"9699:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12248,"name":"_start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12229,"src":"9716:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":12249,"name":"_length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12231,"src":"9725:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9716:16:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9699:33:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"736c6963655f6f75744f66426f756e6473","id":12252,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9734:19:40","typeDescriptions":{"typeIdentifier":"t_stringliteral_cca2258dcc0d08c244435525255fbef9116c9a31b4c29471218f002bbbceb7a0","typeString":"literal_string \"slice_outOfBounds\""},"value":"slice_outOfBounds"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cca2258dcc0d08c244435525255fbef9116c9a31b4c29471218f002bbbceb7a0","typeString":"literal_string \"slice_outOfBounds\""}],"id":12245,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"9691:7:40","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":12253,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9691:63:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12254,"nodeType":"ExpressionStatement","src":"9691:63:40"},{"assignments":[12256],"declarations":[{"constant":false,"id":12256,"mutability":"mutable","name":"tempBytes","nameLocation":"9778:9:40","nodeType":"VariableDeclaration","scope":12261,"src":"9765:22:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12255,"name":"bytes","nodeType":"ElementaryTypeName","src":"9765:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":12257,"nodeType":"VariableDeclarationStatement","src":"9765:22:40"},{"AST":{"nativeSrc":"9807:2421:40","nodeType":"YulBlock","src":"9807:2421:40","statements":[{"cases":[{"body":{"nativeSrc":"9863:1960:40","nodeType":"YulBlock","src":"9863:1960:40","statements":[{"nativeSrc":"10019:24:40","nodeType":"YulAssignment","src":"10019:24:40","value":{"arguments":[{"kind":"number","nativeSrc":"10038:4:40","nodeType":"YulLiteral","src":"10038:4:40","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"10032:5:40","nodeType":"YulIdentifier","src":"10032:5:40"},"nativeSrc":"10032:11:40","nodeType":"YulFunctionCall","src":"10032:11:40"},"variableNames":[{"name":"tempBytes","nativeSrc":"10019:9:40","nodeType":"YulIdentifier","src":"10019:9:40"}]},{"nativeSrc":"10667:33:40","nodeType":"YulVariableDeclaration","src":"10667:33:40","value":{"arguments":[{"name":"_length","nativeSrc":"10688:7:40","nodeType":"YulIdentifier","src":"10688:7:40"},{"kind":"number","nativeSrc":"10697:2:40","nodeType":"YulLiteral","src":"10697:2:40","type":"","value":"31"}],"functionName":{"name":"and","nativeSrc":"10684:3:40","nodeType":"YulIdentifier","src":"10684:3:40"},"nativeSrc":"10684:16:40","nodeType":"YulFunctionCall","src":"10684:16:40"},"variables":[{"name":"lengthmod","nativeSrc":"10671:9:40","nodeType":"YulTypedName","src":"10671:9:40","type":""}]},{"nativeSrc":"11021:70:40","nodeType":"YulVariableDeclaration","src":"11021:70:40","value":{"arguments":[{"arguments":[{"name":"tempBytes","nativeSrc":"11039:9:40","nodeType":"YulIdentifier","src":"11039:9:40"},{"name":"lengthmod","nativeSrc":"11050:9:40","nodeType":"YulIdentifier","src":"11050:9:40"}],"functionName":{"name":"add","nativeSrc":"11035:3:40","nodeType":"YulIdentifier","src":"11035:3:40"},"nativeSrc":"11035:25:40","nodeType":"YulFunctionCall","src":"11035:25:40"},{"arguments":[{"kind":"number","nativeSrc":"11066:4:40","nodeType":"YulLiteral","src":"11066:4:40","type":"","value":"0x20"},{"arguments":[{"name":"lengthmod","nativeSrc":"11079:9:40","nodeType":"YulIdentifier","src":"11079:9:40"}],"functionName":{"name":"iszero","nativeSrc":"11072:6:40","nodeType":"YulIdentifier","src":"11072:6:40"},"nativeSrc":"11072:17:40","nodeType":"YulFunctionCall","src":"11072:17:40"}],"functionName":{"name":"mul","nativeSrc":"11062:3:40","nodeType":"YulIdentifier","src":"11062:3:40"},"nativeSrc":"11062:28:40","nodeType":"YulFunctionCall","src":"11062:28:40"}],"functionName":{"name":"add","nativeSrc":"11031:3:40","nodeType":"YulIdentifier","src":"11031:3:40"},"nativeSrc":"11031:60:40","nodeType":"YulFunctionCall","src":"11031:60:40"},"variables":[{"name":"mc","nativeSrc":"11025:2:40","nodeType":"YulTypedName","src":"11025:2:40","type":""}]},{"nativeSrc":"11108:27:40","nodeType":"YulVariableDeclaration","src":"11108:27:40","value":{"arguments":[{"name":"mc","nativeSrc":"11123:2:40","nodeType":"YulIdentifier","src":"11123:2:40"},{"name":"_length","nativeSrc":"11127:7:40","nodeType":"YulIdentifier","src":"11127:7:40"}],"functionName":{"name":"add","nativeSrc":"11119:3:40","nodeType":"YulIdentifier","src":"11119:3:40"},"nativeSrc":"11119:16:40","nodeType":"YulFunctionCall","src":"11119:16:40"},"variables":[{"name":"end","nativeSrc":"11112:3:40","nodeType":"YulTypedName","src":"11112:3:40","type":""}]},{"body":{"nativeSrc":"11517:61:40","nodeType":"YulBlock","src":"11517:61:40","statements":[{"expression":{"arguments":[{"name":"mc","nativeSrc":"11546:2:40","nodeType":"YulIdentifier","src":"11546:2:40"},{"arguments":[{"name":"cc","nativeSrc":"11556:2:40","nodeType":"YulIdentifier","src":"11556:2:40"}],"functionName":{"name":"mload","nativeSrc":"11550:5:40","nodeType":"YulIdentifier","src":"11550:5:40"},"nativeSrc":"11550:9:40","nodeType":"YulFunctionCall","src":"11550:9:40"}],"functionName":{"name":"mstore","nativeSrc":"11539:6:40","nodeType":"YulIdentifier","src":"11539:6:40"},"nativeSrc":"11539:21:40","nodeType":"YulFunctionCall","src":"11539:21:40"},"nativeSrc":"11539:21:40","nodeType":"YulExpressionStatement","src":"11539:21:40"}]},"condition":{"arguments":[{"name":"mc","nativeSrc":"11408:2:40","nodeType":"YulIdentifier","src":"11408:2:40"},{"name":"end","nativeSrc":"11412:3:40","nodeType":"YulIdentifier","src":"11412:3:40"}],"functionName":{"name":"lt","nativeSrc":"11405:2:40","nodeType":"YulIdentifier","src":"11405:2:40"},"nativeSrc":"11405:11:40","nodeType":"YulFunctionCall","src":"11405:11:40"},"nativeSrc":"11153:425:40","nodeType":"YulForLoop","post":{"nativeSrc":"11417:99:40","nodeType":"YulBlock","src":"11417:99:40","statements":[{"nativeSrc":"11439:19:40","nodeType":"YulAssignment","src":"11439:19:40","value":{"arguments":[{"name":"mc","nativeSrc":"11449:2:40","nodeType":"YulIdentifier","src":"11449:2:40"},{"kind":"number","nativeSrc":"11453:4:40","nodeType":"YulLiteral","src":"11453:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"11445:3:40","nodeType":"YulIdentifier","src":"11445:3:40"},"nativeSrc":"11445:13:40","nodeType":"YulFunctionCall","src":"11445:13:40"},"variableNames":[{"name":"mc","nativeSrc":"11439:2:40","nodeType":"YulIdentifier","src":"11439:2:40"}]},{"nativeSrc":"11479:19:40","nodeType":"YulAssignment","src":"11479:19:40","value":{"arguments":[{"name":"cc","nativeSrc":"11489:2:40","nodeType":"YulIdentifier","src":"11489:2:40"},{"kind":"number","nativeSrc":"11493:4:40","nodeType":"YulLiteral","src":"11493:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"11485:3:40","nodeType":"YulIdentifier","src":"11485:3:40"},"nativeSrc":"11485:13:40","nodeType":"YulFunctionCall","src":"11485:13:40"},"variableNames":[{"name":"cc","nativeSrc":"11479:2:40","nodeType":"YulIdentifier","src":"11479:2:40"}]}]},"pre":{"nativeSrc":"11157:247:40","nodeType":"YulBlock","src":"11157:247:40","statements":[{"nativeSrc":"11306:80:40","nodeType":"YulVariableDeclaration","src":"11306:80:40","value":{"arguments":[{"arguments":[{"arguments":[{"name":"_bytes","nativeSrc":"11328:6:40","nodeType":"YulIdentifier","src":"11328:6:40"},{"name":"lengthmod","nativeSrc":"11336:9:40","nodeType":"YulIdentifier","src":"11336:9:40"}],"functionName":{"name":"add","nativeSrc":"11324:3:40","nodeType":"YulIdentifier","src":"11324:3:40"},"nativeSrc":"11324:22:40","nodeType":"YulFunctionCall","src":"11324:22:40"},{"arguments":[{"kind":"number","nativeSrc":"11352:4:40","nodeType":"YulLiteral","src":"11352:4:40","type":"","value":"0x20"},{"arguments":[{"name":"lengthmod","nativeSrc":"11365:9:40","nodeType":"YulIdentifier","src":"11365:9:40"}],"functionName":{"name":"iszero","nativeSrc":"11358:6:40","nodeType":"YulIdentifier","src":"11358:6:40"},"nativeSrc":"11358:17:40","nodeType":"YulFunctionCall","src":"11358:17:40"}],"functionName":{"name":"mul","nativeSrc":"11348:3:40","nodeType":"YulIdentifier","src":"11348:3:40"},"nativeSrc":"11348:28:40","nodeType":"YulFunctionCall","src":"11348:28:40"}],"functionName":{"name":"add","nativeSrc":"11320:3:40","nodeType":"YulIdentifier","src":"11320:3:40"},"nativeSrc":"11320:57:40","nodeType":"YulFunctionCall","src":"11320:57:40"},{"name":"_start","nativeSrc":"11379:6:40","nodeType":"YulIdentifier","src":"11379:6:40"}],"functionName":{"name":"add","nativeSrc":"11316:3:40","nodeType":"YulIdentifier","src":"11316:3:40"},"nativeSrc":"11316:70:40","nodeType":"YulFunctionCall","src":"11316:70:40"},"variables":[{"name":"cc","nativeSrc":"11310:2:40","nodeType":"YulTypedName","src":"11310:2:40","type":""}]}]},"src":"11153:425:40"},{"expression":{"arguments":[{"name":"tempBytes","nativeSrc":"11603:9:40","nodeType":"YulIdentifier","src":"11603:9:40"},{"name":"_length","nativeSrc":"11614:7:40","nodeType":"YulIdentifier","src":"11614:7:40"}],"functionName":{"name":"mstore","nativeSrc":"11596:6:40","nodeType":"YulIdentifier","src":"11596:6:40"},"nativeSrc":"11596:26:40","nodeType":"YulFunctionCall","src":"11596:26:40"},"nativeSrc":"11596:26:40","nodeType":"YulExpressionStatement","src":"11596:26:40"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11777:4:40","nodeType":"YulLiteral","src":"11777:4:40","type":"","value":"0x40"},{"arguments":[{"arguments":[{"name":"mc","nativeSrc":"11791:2:40","nodeType":"YulIdentifier","src":"11791:2:40"},{"kind":"number","nativeSrc":"11795:2:40","nodeType":"YulLiteral","src":"11795:2:40","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"11787:3:40","nodeType":"YulIdentifier","src":"11787:3:40"},"nativeSrc":"11787:11:40","nodeType":"YulFunctionCall","src":"11787:11:40"},{"arguments":[{"kind":"number","nativeSrc":"11804:2:40","nodeType":"YulLiteral","src":"11804:2:40","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"11800:3:40","nodeType":"YulIdentifier","src":"11800:3:40"},"nativeSrc":"11800:7:40","nodeType":"YulFunctionCall","src":"11800:7:40"}],"functionName":{"name":"and","nativeSrc":"11783:3:40","nodeType":"YulIdentifier","src":"11783:3:40"},"nativeSrc":"11783:25:40","nodeType":"YulFunctionCall","src":"11783:25:40"}],"functionName":{"name":"mstore","nativeSrc":"11770:6:40","nodeType":"YulIdentifier","src":"11770:6:40"},"nativeSrc":"11770:39:40","nodeType":"YulFunctionCall","src":"11770:39:40"},"nativeSrc":"11770:39:40","nodeType":"YulExpressionStatement","src":"11770:39:40"}]},"nativeSrc":"9856:1967:40","nodeType":"YulCase","src":"9856:1967:40","value":{"kind":"number","nativeSrc":"9861:1:40","nodeType":"YulLiteral","src":"9861:1:40","type":"","value":"0"}},{"body":{"nativeSrc":"11927:291:40","nodeType":"YulBlock","src":"11927:291:40","statements":[{"nativeSrc":"11945:24:40","nodeType":"YulAssignment","src":"11945:24:40","value":{"arguments":[{"kind":"number","nativeSrc":"11964:4:40","nodeType":"YulLiteral","src":"11964:4:40","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"11958:5:40","nodeType":"YulIdentifier","src":"11958:5:40"},"nativeSrc":"11958:11:40","nodeType":"YulFunctionCall","src":"11958:11:40"},"variableNames":[{"name":"tempBytes","nativeSrc":"11945:9:40","nodeType":"YulIdentifier","src":"11945:9:40"}]},{"expression":{"arguments":[{"name":"tempBytes","nativeSrc":"12139:9:40","nodeType":"YulIdentifier","src":"12139:9:40"},{"kind":"number","nativeSrc":"12150:1:40","nodeType":"YulLiteral","src":"12150:1:40","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"12132:6:40","nodeType":"YulIdentifier","src":"12132:6:40"},"nativeSrc":"12132:20:40","nodeType":"YulFunctionCall","src":"12132:20:40"},"nativeSrc":"12132:20:40","nodeType":"YulExpressionStatement","src":"12132:20:40"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12177:4:40","nodeType":"YulLiteral","src":"12177:4:40","type":"","value":"0x40"},{"arguments":[{"name":"tempBytes","nativeSrc":"12187:9:40","nodeType":"YulIdentifier","src":"12187:9:40"},{"kind":"number","nativeSrc":"12198:4:40","nodeType":"YulLiteral","src":"12198:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12183:3:40","nodeType":"YulIdentifier","src":"12183:3:40"},"nativeSrc":"12183:20:40","nodeType":"YulFunctionCall","src":"12183:20:40"}],"functionName":{"name":"mstore","nativeSrc":"12170:6:40","nodeType":"YulIdentifier","src":"12170:6:40"},"nativeSrc":"12170:34:40","nodeType":"YulFunctionCall","src":"12170:34:40"},"nativeSrc":"12170:34:40","nodeType":"YulExpressionStatement","src":"12170:34:40"}]},"nativeSrc":"11919:299:40","nodeType":"YulCase","src":"11919:299:40","value":"default"}],"expression":{"arguments":[{"name":"_length","nativeSrc":"9835:7:40","nodeType":"YulIdentifier","src":"9835:7:40"}],"functionName":{"name":"iszero","nativeSrc":"9828:6:40","nodeType":"YulIdentifier","src":"9828:6:40"},"nativeSrc":"9828:15:40","nodeType":"YulFunctionCall","src":"9828:15:40"},"nativeSrc":"9821:2397:40","nodeType":"YulSwitch","src":"9821:2397:40"}]},"evmVersion":"cancun","externalReferences":[{"declaration":12227,"isOffset":false,"isSlot":false,"src":"11328:6:40","valueSize":1},{"declaration":12231,"isOffset":false,"isSlot":false,"src":"10688:7:40","valueSize":1},{"declaration":12231,"isOffset":false,"isSlot":false,"src":"11127:7:40","valueSize":1},{"declaration":12231,"isOffset":false,"isSlot":false,"src":"11614:7:40","valueSize":1},{"declaration":12231,"isOffset":false,"isSlot":false,"src":"9835:7:40","valueSize":1},{"declaration":12229,"isOffset":false,"isSlot":false,"src":"11379:6:40","valueSize":1},{"declaration":12256,"isOffset":false,"isSlot":false,"src":"10019:9:40","valueSize":1},{"declaration":12256,"isOffset":false,"isSlot":false,"src":"11039:9:40","valueSize":1},{"declaration":12256,"isOffset":false,"isSlot":false,"src":"11603:9:40","valueSize":1},{"declaration":12256,"isOffset":false,"isSlot":false,"src":"11945:9:40","valueSize":1},{"declaration":12256,"isOffset":false,"isSlot":false,"src":"12139:9:40","valueSize":1},{"declaration":12256,"isOffset":false,"isSlot":false,"src":"12187:9:40","valueSize":1}],"id":12258,"nodeType":"InlineAssembly","src":"9798:2430:40"},{"expression":{"id":12259,"name":"tempBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12256,"src":"12245:9:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":12235,"id":12260,"nodeType":"Return","src":"12238:16:40"}]},"id":12262,"implemented":true,"kind":"function","modifiers":[],"name":"slice","nameLocation":"9466:5:40","nodeType":"FunctionDefinition","parameters":{"id":12232,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12227,"mutability":"mutable","name":"_bytes","nameLocation":"9494:6:40","nodeType":"VariableDeclaration","scope":12262,"src":"9481:19:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12226,"name":"bytes","nodeType":"ElementaryTypeName","src":"9481:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":12229,"mutability":"mutable","name":"_start","nameLocation":"9518:6:40","nodeType":"VariableDeclaration","scope":12262,"src":"9510:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12228,"name":"uint256","nodeType":"ElementaryTypeName","src":"9510:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12231,"mutability":"mutable","name":"_length","nameLocation":"9542:7:40","nodeType":"VariableDeclaration","scope":12262,"src":"9534:15:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12230,"name":"uint256","nodeType":"ElementaryTypeName","src":"9534:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9471:84:40"},"returnParameters":{"id":12235,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12234,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12262,"src":"9603:12:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12233,"name":"bytes","nodeType":"ElementaryTypeName","src":"9603:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"9602:14:40"},"scope":12531,"src":"9457:2804:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12287,"nodeType":"Block","src":"12355:266:40","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12272,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12264,"src":"12373:6:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12380:6:40","memberName":"length","nodeType":"MemberAccess","src":"12373:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12274,"name":"_start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12266,"src":"12390:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3230","id":12275,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12399:2:40","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"src":"12390:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12373:28:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"746f416464726573735f6f75744f66426f756e6473","id":12278,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12403:23:40","typeDescriptions":{"typeIdentifier":"t_stringliteral_9f688071e1df0f70b63e3651005878331be1fe9591d6cfb3187cb52a13439e5d","typeString":"literal_string \"toAddress_outOfBounds\""},"value":"toAddress_outOfBounds"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9f688071e1df0f70b63e3651005878331be1fe9591d6cfb3187cb52a13439e5d","typeString":"literal_string \"toAddress_outOfBounds\""}],"id":12271,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"12365:7:40","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":12279,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12365:62:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12280,"nodeType":"ExpressionStatement","src":"12365:62:40"},{"assignments":[12282],"declarations":[{"constant":false,"id":12282,"mutability":"mutable","name":"tempAddress","nameLocation":"12445:11:40","nodeType":"VariableDeclaration","scope":12287,"src":"12437:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12281,"name":"address","nodeType":"ElementaryTypeName","src":"12437:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":12283,"nodeType":"VariableDeclarationStatement","src":"12437:19:40"},{"AST":{"nativeSrc":"12476:110:40","nodeType":"YulBlock","src":"12476:110:40","statements":[{"nativeSrc":"12490:86:40","nodeType":"YulAssignment","src":"12490:86:40","value":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_bytes","nativeSrc":"12523:6:40","nodeType":"YulIdentifier","src":"12523:6:40"},{"kind":"number","nativeSrc":"12531:4:40","nodeType":"YulLiteral","src":"12531:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12519:3:40","nodeType":"YulIdentifier","src":"12519:3:40"},"nativeSrc":"12519:17:40","nodeType":"YulFunctionCall","src":"12519:17:40"},{"name":"_start","nativeSrc":"12538:6:40","nodeType":"YulIdentifier","src":"12538:6:40"}],"functionName":{"name":"add","nativeSrc":"12515:3:40","nodeType":"YulIdentifier","src":"12515:3:40"},"nativeSrc":"12515:30:40","nodeType":"YulFunctionCall","src":"12515:30:40"}],"functionName":{"name":"mload","nativeSrc":"12509:5:40","nodeType":"YulIdentifier","src":"12509:5:40"},"nativeSrc":"12509:37:40","nodeType":"YulFunctionCall","src":"12509:37:40"},{"kind":"number","nativeSrc":"12548:27:40","nodeType":"YulLiteral","src":"12548:27:40","type":"","value":"0x1000000000000000000000000"}],"functionName":{"name":"div","nativeSrc":"12505:3:40","nodeType":"YulIdentifier","src":"12505:3:40"},"nativeSrc":"12505:71:40","nodeType":"YulFunctionCall","src":"12505:71:40"},"variableNames":[{"name":"tempAddress","nativeSrc":"12490:11:40","nodeType":"YulIdentifier","src":"12490:11:40"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12264,"isOffset":false,"isSlot":false,"src":"12523:6:40","valueSize":1},{"declaration":12266,"isOffset":false,"isSlot":false,"src":"12538:6:40","valueSize":1},{"declaration":12282,"isOffset":false,"isSlot":false,"src":"12490:11:40","valueSize":1}],"id":12284,"nodeType":"InlineAssembly","src":"12467:119:40"},{"expression":{"id":12285,"name":"tempAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12282,"src":"12603:11:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":12270,"id":12286,"nodeType":"Return","src":"12596:18:40"}]},"id":12288,"implemented":true,"kind":"function","modifiers":[],"name":"toAddress","nameLocation":"12276:9:40","nodeType":"FunctionDefinition","parameters":{"id":12267,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12264,"mutability":"mutable","name":"_bytes","nameLocation":"12299:6:40","nodeType":"VariableDeclaration","scope":12288,"src":"12286:19:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12263,"name":"bytes","nodeType":"ElementaryTypeName","src":"12286:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":12266,"mutability":"mutable","name":"_start","nameLocation":"12315:6:40","nodeType":"VariableDeclaration","scope":12288,"src":"12307:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12265,"name":"uint256","nodeType":"ElementaryTypeName","src":"12307:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12285:37:40"},"returnParameters":{"id":12270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12269,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12288,"src":"12346:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12268,"name":"address","nodeType":"ElementaryTypeName","src":"12346:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"12345:9:40"},"scope":12531,"src":"12267:354:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12313,"nodeType":"Block","src":"12711:218:40","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12298,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12290,"src":"12729:6:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12736:6:40","memberName":"length","nodeType":"MemberAccess","src":"12729:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12300,"name":"_start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12292,"src":"12746:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":12301,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12755:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"12746:10:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12729:27:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"746f55696e74385f6f75744f66426f756e6473","id":12304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12759:21:40","typeDescriptions":{"typeIdentifier":"t_stringliteral_ce6d7be00009dd45cc670fb6c2ceee25786f142bcb64e7f1ee73012b26bb6ca1","typeString":"literal_string \"toUint8_outOfBounds\""},"value":"toUint8_outOfBounds"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ce6d7be00009dd45cc670fb6c2ceee25786f142bcb64e7f1ee73012b26bb6ca1","typeString":"literal_string \"toUint8_outOfBounds\""}],"id":12297,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"12721:7:40","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":12305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12721:60:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12306,"nodeType":"ExpressionStatement","src":"12721:60:40"},{"assignments":[12308],"declarations":[{"constant":false,"id":12308,"mutability":"mutable","name":"tempUint","nameLocation":"12797:8:40","nodeType":"VariableDeclaration","scope":12313,"src":"12791:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":12307,"name":"uint8","nodeType":"ElementaryTypeName","src":"12791:5:40","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":12309,"nodeType":"VariableDeclarationStatement","src":"12791:14:40"},{"AST":{"nativeSrc":"12825:72:40","nodeType":"YulBlock","src":"12825:72:40","statements":[{"nativeSrc":"12839:48:40","nodeType":"YulAssignment","src":"12839:48:40","value":{"arguments":[{"arguments":[{"arguments":[{"name":"_bytes","nativeSrc":"12865:6:40","nodeType":"YulIdentifier","src":"12865:6:40"},{"kind":"number","nativeSrc":"12873:3:40","nodeType":"YulLiteral","src":"12873:3:40","type":"","value":"0x1"}],"functionName":{"name":"add","nativeSrc":"12861:3:40","nodeType":"YulIdentifier","src":"12861:3:40"},"nativeSrc":"12861:16:40","nodeType":"YulFunctionCall","src":"12861:16:40"},{"name":"_start","nativeSrc":"12879:6:40","nodeType":"YulIdentifier","src":"12879:6:40"}],"functionName":{"name":"add","nativeSrc":"12857:3:40","nodeType":"YulIdentifier","src":"12857:3:40"},"nativeSrc":"12857:29:40","nodeType":"YulFunctionCall","src":"12857:29:40"}],"functionName":{"name":"mload","nativeSrc":"12851:5:40","nodeType":"YulIdentifier","src":"12851:5:40"},"nativeSrc":"12851:36:40","nodeType":"YulFunctionCall","src":"12851:36:40"},"variableNames":[{"name":"tempUint","nativeSrc":"12839:8:40","nodeType":"YulIdentifier","src":"12839:8:40"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12290,"isOffset":false,"isSlot":false,"src":"12865:6:40","valueSize":1},{"declaration":12292,"isOffset":false,"isSlot":false,"src":"12879:6:40","valueSize":1},{"declaration":12308,"isOffset":false,"isSlot":false,"src":"12839:8:40","valueSize":1}],"id":12310,"nodeType":"InlineAssembly","src":"12816:81:40"},{"expression":{"id":12311,"name":"tempUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12308,"src":"12914:8:40","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":12296,"id":12312,"nodeType":"Return","src":"12907:15:40"}]},"id":12314,"implemented":true,"kind":"function","modifiers":[],"name":"toUint8","nameLocation":"12636:7:40","nodeType":"FunctionDefinition","parameters":{"id":12293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12290,"mutability":"mutable","name":"_bytes","nameLocation":"12657:6:40","nodeType":"VariableDeclaration","scope":12314,"src":"12644:19:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12289,"name":"bytes","nodeType":"ElementaryTypeName","src":"12644:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":12292,"mutability":"mutable","name":"_start","nameLocation":"12673:6:40","nodeType":"VariableDeclaration","scope":12314,"src":"12665:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12291,"name":"uint256","nodeType":"ElementaryTypeName","src":"12665:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12643:37:40"},"returnParameters":{"id":12296,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12295,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12314,"src":"12704:5:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":12294,"name":"uint8","nodeType":"ElementaryTypeName","src":"12704:5:40","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"12703:7:40"},"scope":12531,"src":"12627:302:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12339,"nodeType":"Block","src":"13021:219:40","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12329,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12324,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12316,"src":"13039:6:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13046:6:40","memberName":"length","nodeType":"MemberAccess","src":"13039:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12326,"name":"_start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12318,"src":"13056:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":12327,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13065:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"13056:10:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13039:27:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"746f55696e7431365f6f75744f66426f756e6473","id":12330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13068:22:40","typeDescriptions":{"typeIdentifier":"t_stringliteral_414233483a71244a4f2700455a9733e71511b5279e381bdd2af6d44b1b09ecab","typeString":"literal_string \"toUint16_outOfBounds\""},"value":"toUint16_outOfBounds"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_414233483a71244a4f2700455a9733e71511b5279e381bdd2af6d44b1b09ecab","typeString":"literal_string \"toUint16_outOfBounds\""}],"id":12323,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"13031:7:40","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":12331,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13031:60:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12332,"nodeType":"ExpressionStatement","src":"13031:60:40"},{"assignments":[12334],"declarations":[{"constant":false,"id":12334,"mutability":"mutable","name":"tempUint","nameLocation":"13108:8:40","nodeType":"VariableDeclaration","scope":12339,"src":"13101:15:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":12333,"name":"uint16","nodeType":"ElementaryTypeName","src":"13101:6:40","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"id":12335,"nodeType":"VariableDeclarationStatement","src":"13101:15:40"},{"AST":{"nativeSrc":"13136:72:40","nodeType":"YulBlock","src":"13136:72:40","statements":[{"nativeSrc":"13150:48:40","nodeType":"YulAssignment","src":"13150:48:40","value":{"arguments":[{"arguments":[{"arguments":[{"name":"_bytes","nativeSrc":"13176:6:40","nodeType":"YulIdentifier","src":"13176:6:40"},{"kind":"number","nativeSrc":"13184:3:40","nodeType":"YulLiteral","src":"13184:3:40","type":"","value":"0x2"}],"functionName":{"name":"add","nativeSrc":"13172:3:40","nodeType":"YulIdentifier","src":"13172:3:40"},"nativeSrc":"13172:16:40","nodeType":"YulFunctionCall","src":"13172:16:40"},{"name":"_start","nativeSrc":"13190:6:40","nodeType":"YulIdentifier","src":"13190:6:40"}],"functionName":{"name":"add","nativeSrc":"13168:3:40","nodeType":"YulIdentifier","src":"13168:3:40"},"nativeSrc":"13168:29:40","nodeType":"YulFunctionCall","src":"13168:29:40"}],"functionName":{"name":"mload","nativeSrc":"13162:5:40","nodeType":"YulIdentifier","src":"13162:5:40"},"nativeSrc":"13162:36:40","nodeType":"YulFunctionCall","src":"13162:36:40"},"variableNames":[{"name":"tempUint","nativeSrc":"13150:8:40","nodeType":"YulIdentifier","src":"13150:8:40"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12316,"isOffset":false,"isSlot":false,"src":"13176:6:40","valueSize":1},{"declaration":12318,"isOffset":false,"isSlot":false,"src":"13190:6:40","valueSize":1},{"declaration":12334,"isOffset":false,"isSlot":false,"src":"13150:8:40","valueSize":1}],"id":12336,"nodeType":"InlineAssembly","src":"13127:81:40"},{"expression":{"id":12337,"name":"tempUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12334,"src":"13225:8:40","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"functionReturnParameters":12322,"id":12338,"nodeType":"Return","src":"13218:15:40"}]},"id":12340,"implemented":true,"kind":"function","modifiers":[],"name":"toUint16","nameLocation":"12944:8:40","nodeType":"FunctionDefinition","parameters":{"id":12319,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12316,"mutability":"mutable","name":"_bytes","nameLocation":"12966:6:40","nodeType":"VariableDeclaration","scope":12340,"src":"12953:19:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12315,"name":"bytes","nodeType":"ElementaryTypeName","src":"12953:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":12318,"mutability":"mutable","name":"_start","nameLocation":"12982:6:40","nodeType":"VariableDeclaration","scope":12340,"src":"12974:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12317,"name":"uint256","nodeType":"ElementaryTypeName","src":"12974:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12952:37:40"},"returnParameters":{"id":12322,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12321,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12340,"src":"13013:6:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":12320,"name":"uint16","nodeType":"ElementaryTypeName","src":"13013:6:40","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"13012:8:40"},"scope":12531,"src":"12935:305:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12365,"nodeType":"Block","src":"13332:219:40","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12350,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12342,"src":"13350:6:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13357:6:40","memberName":"length","nodeType":"MemberAccess","src":"13350:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12352,"name":"_start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12344,"src":"13367:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"34","id":12353,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13376:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"13367:10:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13350:27:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"746f55696e7433325f6f75744f66426f756e6473","id":12356,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13379:22:40","typeDescriptions":{"typeIdentifier":"t_stringliteral_e0a09853867d05bef4b1d534052126bc72acd3515e1725b9b280e16d988e6ccf","typeString":"literal_string \"toUint32_outOfBounds\""},"value":"toUint32_outOfBounds"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e0a09853867d05bef4b1d534052126bc72acd3515e1725b9b280e16d988e6ccf","typeString":"literal_string \"toUint32_outOfBounds\""}],"id":12349,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"13342:7:40","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":12357,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13342:60:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12358,"nodeType":"ExpressionStatement","src":"13342:60:40"},{"assignments":[12360],"declarations":[{"constant":false,"id":12360,"mutability":"mutable","name":"tempUint","nameLocation":"13419:8:40","nodeType":"VariableDeclaration","scope":12365,"src":"13412:15:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12359,"name":"uint32","nodeType":"ElementaryTypeName","src":"13412:6:40","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":12361,"nodeType":"VariableDeclarationStatement","src":"13412:15:40"},{"AST":{"nativeSrc":"13447:72:40","nodeType":"YulBlock","src":"13447:72:40","statements":[{"nativeSrc":"13461:48:40","nodeType":"YulAssignment","src":"13461:48:40","value":{"arguments":[{"arguments":[{"arguments":[{"name":"_bytes","nativeSrc":"13487:6:40","nodeType":"YulIdentifier","src":"13487:6:40"},{"kind":"number","nativeSrc":"13495:3:40","nodeType":"YulLiteral","src":"13495:3:40","type":"","value":"0x4"}],"functionName":{"name":"add","nativeSrc":"13483:3:40","nodeType":"YulIdentifier","src":"13483:3:40"},"nativeSrc":"13483:16:40","nodeType":"YulFunctionCall","src":"13483:16:40"},{"name":"_start","nativeSrc":"13501:6:40","nodeType":"YulIdentifier","src":"13501:6:40"}],"functionName":{"name":"add","nativeSrc":"13479:3:40","nodeType":"YulIdentifier","src":"13479:3:40"},"nativeSrc":"13479:29:40","nodeType":"YulFunctionCall","src":"13479:29:40"}],"functionName":{"name":"mload","nativeSrc":"13473:5:40","nodeType":"YulIdentifier","src":"13473:5:40"},"nativeSrc":"13473:36:40","nodeType":"YulFunctionCall","src":"13473:36:40"},"variableNames":[{"name":"tempUint","nativeSrc":"13461:8:40","nodeType":"YulIdentifier","src":"13461:8:40"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12342,"isOffset":false,"isSlot":false,"src":"13487:6:40","valueSize":1},{"declaration":12344,"isOffset":false,"isSlot":false,"src":"13501:6:40","valueSize":1},{"declaration":12360,"isOffset":false,"isSlot":false,"src":"13461:8:40","valueSize":1}],"id":12362,"nodeType":"InlineAssembly","src":"13438:81:40"},{"expression":{"id":12363,"name":"tempUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12360,"src":"13536:8:40","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":12348,"id":12364,"nodeType":"Return","src":"13529:15:40"}]},"id":12366,"implemented":true,"kind":"function","modifiers":[],"name":"toUint32","nameLocation":"13255:8:40","nodeType":"FunctionDefinition","parameters":{"id":12345,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12342,"mutability":"mutable","name":"_bytes","nameLocation":"13277:6:40","nodeType":"VariableDeclaration","scope":12366,"src":"13264:19:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12341,"name":"bytes","nodeType":"ElementaryTypeName","src":"13264:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":12344,"mutability":"mutable","name":"_start","nameLocation":"13293:6:40","nodeType":"VariableDeclaration","scope":12366,"src":"13285:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12343,"name":"uint256","nodeType":"ElementaryTypeName","src":"13285:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13263:37:40"},"returnParameters":{"id":12348,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12347,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12366,"src":"13324:6:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12346,"name":"uint32","nodeType":"ElementaryTypeName","src":"13324:6:40","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"13323:8:40"},"scope":12531,"src":"13246:305:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12391,"nodeType":"Block","src":"13643:219:40","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12381,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12376,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12368,"src":"13661:6:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13668:6:40","memberName":"length","nodeType":"MemberAccess","src":"13661:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12380,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12378,"name":"_start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12370,"src":"13678:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"38","id":12379,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13687:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"13678:10:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13661:27:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"746f55696e7436345f6f75744f66426f756e6473","id":12382,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13690:22:40","typeDescriptions":{"typeIdentifier":"t_stringliteral_55885cc1e15ebd0ff3d9803b39476f6ee2279f42aa3070b40f2de433347c0145","typeString":"literal_string \"toUint64_outOfBounds\""},"value":"toUint64_outOfBounds"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_55885cc1e15ebd0ff3d9803b39476f6ee2279f42aa3070b40f2de433347c0145","typeString":"literal_string \"toUint64_outOfBounds\""}],"id":12375,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"13653:7:40","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":12383,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13653:60:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12384,"nodeType":"ExpressionStatement","src":"13653:60:40"},{"assignments":[12386],"declarations":[{"constant":false,"id":12386,"mutability":"mutable","name":"tempUint","nameLocation":"13730:8:40","nodeType":"VariableDeclaration","scope":12391,"src":"13723:15:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":12385,"name":"uint64","nodeType":"ElementaryTypeName","src":"13723:6:40","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":12387,"nodeType":"VariableDeclarationStatement","src":"13723:15:40"},{"AST":{"nativeSrc":"13758:72:40","nodeType":"YulBlock","src":"13758:72:40","statements":[{"nativeSrc":"13772:48:40","nodeType":"YulAssignment","src":"13772:48:40","value":{"arguments":[{"arguments":[{"arguments":[{"name":"_bytes","nativeSrc":"13798:6:40","nodeType":"YulIdentifier","src":"13798:6:40"},{"kind":"number","nativeSrc":"13806:3:40","nodeType":"YulLiteral","src":"13806:3:40","type":"","value":"0x8"}],"functionName":{"name":"add","nativeSrc":"13794:3:40","nodeType":"YulIdentifier","src":"13794:3:40"},"nativeSrc":"13794:16:40","nodeType":"YulFunctionCall","src":"13794:16:40"},{"name":"_start","nativeSrc":"13812:6:40","nodeType":"YulIdentifier","src":"13812:6:40"}],"functionName":{"name":"add","nativeSrc":"13790:3:40","nodeType":"YulIdentifier","src":"13790:3:40"},"nativeSrc":"13790:29:40","nodeType":"YulFunctionCall","src":"13790:29:40"}],"functionName":{"name":"mload","nativeSrc":"13784:5:40","nodeType":"YulIdentifier","src":"13784:5:40"},"nativeSrc":"13784:36:40","nodeType":"YulFunctionCall","src":"13784:36:40"},"variableNames":[{"name":"tempUint","nativeSrc":"13772:8:40","nodeType":"YulIdentifier","src":"13772:8:40"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12368,"isOffset":false,"isSlot":false,"src":"13798:6:40","valueSize":1},{"declaration":12370,"isOffset":false,"isSlot":false,"src":"13812:6:40","valueSize":1},{"declaration":12386,"isOffset":false,"isSlot":false,"src":"13772:8:40","valueSize":1}],"id":12388,"nodeType":"InlineAssembly","src":"13749:81:40"},{"expression":{"id":12389,"name":"tempUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12386,"src":"13847:8:40","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":12374,"id":12390,"nodeType":"Return","src":"13840:15:40"}]},"id":12392,"implemented":true,"kind":"function","modifiers":[],"name":"toUint64","nameLocation":"13566:8:40","nodeType":"FunctionDefinition","parameters":{"id":12371,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12368,"mutability":"mutable","name":"_bytes","nameLocation":"13588:6:40","nodeType":"VariableDeclaration","scope":12392,"src":"13575:19:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12367,"name":"bytes","nodeType":"ElementaryTypeName","src":"13575:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":12370,"mutability":"mutable","name":"_start","nameLocation":"13604:6:40","nodeType":"VariableDeclaration","scope":12392,"src":"13596:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12369,"name":"uint256","nodeType":"ElementaryTypeName","src":"13596:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13574:37:40"},"returnParameters":{"id":12374,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12373,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12392,"src":"13635:6:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":12372,"name":"uint64","nodeType":"ElementaryTypeName","src":"13635:6:40","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"13634:8:40"},"scope":12531,"src":"13557:305:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12417,"nodeType":"Block","src":"13954:220:40","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12402,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12394,"src":"13972:6:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13979:6:40","memberName":"length","nodeType":"MemberAccess","src":"13972:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12404,"name":"_start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12396,"src":"13989:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3132","id":12405,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13998:2:40","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"src":"13989:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13972:28:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"746f55696e7439365f6f75744f66426f756e6473","id":12408,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14002:22:40","typeDescriptions":{"typeIdentifier":"t_stringliteral_245175b34ac1d95c460f2a4fcb106dbfea12949a3cbb7ae3362c49144bb9feb7","typeString":"literal_string \"toUint96_outOfBounds\""},"value":"toUint96_outOfBounds"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_245175b34ac1d95c460f2a4fcb106dbfea12949a3cbb7ae3362c49144bb9feb7","typeString":"literal_string \"toUint96_outOfBounds\""}],"id":12401,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"13964:7:40","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":12409,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13964:61:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12410,"nodeType":"ExpressionStatement","src":"13964:61:40"},{"assignments":[12412],"declarations":[{"constant":false,"id":12412,"mutability":"mutable","name":"tempUint","nameLocation":"14042:8:40","nodeType":"VariableDeclaration","scope":12417,"src":"14035:15:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":12411,"name":"uint96","nodeType":"ElementaryTypeName","src":"14035:6:40","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"id":12413,"nodeType":"VariableDeclarationStatement","src":"14035:15:40"},{"AST":{"nativeSrc":"14070:72:40","nodeType":"YulBlock","src":"14070:72:40","statements":[{"nativeSrc":"14084:48:40","nodeType":"YulAssignment","src":"14084:48:40","value":{"arguments":[{"arguments":[{"arguments":[{"name":"_bytes","nativeSrc":"14110:6:40","nodeType":"YulIdentifier","src":"14110:6:40"},{"kind":"number","nativeSrc":"14118:3:40","nodeType":"YulLiteral","src":"14118:3:40","type":"","value":"0xc"}],"functionName":{"name":"add","nativeSrc":"14106:3:40","nodeType":"YulIdentifier","src":"14106:3:40"},"nativeSrc":"14106:16:40","nodeType":"YulFunctionCall","src":"14106:16:40"},{"name":"_start","nativeSrc":"14124:6:40","nodeType":"YulIdentifier","src":"14124:6:40"}],"functionName":{"name":"add","nativeSrc":"14102:3:40","nodeType":"YulIdentifier","src":"14102:3:40"},"nativeSrc":"14102:29:40","nodeType":"YulFunctionCall","src":"14102:29:40"}],"functionName":{"name":"mload","nativeSrc":"14096:5:40","nodeType":"YulIdentifier","src":"14096:5:40"},"nativeSrc":"14096:36:40","nodeType":"YulFunctionCall","src":"14096:36:40"},"variableNames":[{"name":"tempUint","nativeSrc":"14084:8:40","nodeType":"YulIdentifier","src":"14084:8:40"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12394,"isOffset":false,"isSlot":false,"src":"14110:6:40","valueSize":1},{"declaration":12396,"isOffset":false,"isSlot":false,"src":"14124:6:40","valueSize":1},{"declaration":12412,"isOffset":false,"isSlot":false,"src":"14084:8:40","valueSize":1}],"id":12414,"nodeType":"InlineAssembly","src":"14061:81:40"},{"expression":{"id":12415,"name":"tempUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12412,"src":"14159:8:40","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"functionReturnParameters":12400,"id":12416,"nodeType":"Return","src":"14152:15:40"}]},"id":12418,"implemented":true,"kind":"function","modifiers":[],"name":"toUint96","nameLocation":"13877:8:40","nodeType":"FunctionDefinition","parameters":{"id":12397,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12394,"mutability":"mutable","name":"_bytes","nameLocation":"13899:6:40","nodeType":"VariableDeclaration","scope":12418,"src":"13886:19:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12393,"name":"bytes","nodeType":"ElementaryTypeName","src":"13886:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":12396,"mutability":"mutable","name":"_start","nameLocation":"13915:6:40","nodeType":"VariableDeclaration","scope":12418,"src":"13907:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12395,"name":"uint256","nodeType":"ElementaryTypeName","src":"13907:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13885:37:40"},"returnParameters":{"id":12400,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12399,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12418,"src":"13946:6:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":12398,"name":"uint96","nodeType":"ElementaryTypeName","src":"13946:6:40","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"13945:8:40"},"scope":12531,"src":"13868:306:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12443,"nodeType":"Block","src":"14268:223:40","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12433,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12428,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12420,"src":"14286:6:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14293:6:40","memberName":"length","nodeType":"MemberAccess","src":"14286:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12430,"name":"_start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12422,"src":"14303:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3136","id":12431,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14312:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"14303:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14286:28:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"746f55696e743132385f6f75744f66426f756e6473","id":12434,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14316:23:40","typeDescriptions":{"typeIdentifier":"t_stringliteral_17474b965d7fdba029328487966488b63c32338e60aea74eafb22325bb8d90dc","typeString":"literal_string \"toUint128_outOfBounds\""},"value":"toUint128_outOfBounds"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_17474b965d7fdba029328487966488b63c32338e60aea74eafb22325bb8d90dc","typeString":"literal_string \"toUint128_outOfBounds\""}],"id":12427,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"14278:7:40","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":12435,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14278:62:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12436,"nodeType":"ExpressionStatement","src":"14278:62:40"},{"assignments":[12438],"declarations":[{"constant":false,"id":12438,"mutability":"mutable","name":"tempUint","nameLocation":"14358:8:40","nodeType":"VariableDeclaration","scope":12443,"src":"14350:16:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":12437,"name":"uint128","nodeType":"ElementaryTypeName","src":"14350:7:40","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":12439,"nodeType":"VariableDeclarationStatement","src":"14350:16:40"},{"AST":{"nativeSrc":"14386:73:40","nodeType":"YulBlock","src":"14386:73:40","statements":[{"nativeSrc":"14400:49:40","nodeType":"YulAssignment","src":"14400:49:40","value":{"arguments":[{"arguments":[{"arguments":[{"name":"_bytes","nativeSrc":"14426:6:40","nodeType":"YulIdentifier","src":"14426:6:40"},{"kind":"number","nativeSrc":"14434:4:40","nodeType":"YulLiteral","src":"14434:4:40","type":"","value":"0x10"}],"functionName":{"name":"add","nativeSrc":"14422:3:40","nodeType":"YulIdentifier","src":"14422:3:40"},"nativeSrc":"14422:17:40","nodeType":"YulFunctionCall","src":"14422:17:40"},{"name":"_start","nativeSrc":"14441:6:40","nodeType":"YulIdentifier","src":"14441:6:40"}],"functionName":{"name":"add","nativeSrc":"14418:3:40","nodeType":"YulIdentifier","src":"14418:3:40"},"nativeSrc":"14418:30:40","nodeType":"YulFunctionCall","src":"14418:30:40"}],"functionName":{"name":"mload","nativeSrc":"14412:5:40","nodeType":"YulIdentifier","src":"14412:5:40"},"nativeSrc":"14412:37:40","nodeType":"YulFunctionCall","src":"14412:37:40"},"variableNames":[{"name":"tempUint","nativeSrc":"14400:8:40","nodeType":"YulIdentifier","src":"14400:8:40"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12420,"isOffset":false,"isSlot":false,"src":"14426:6:40","valueSize":1},{"declaration":12422,"isOffset":false,"isSlot":false,"src":"14441:6:40","valueSize":1},{"declaration":12438,"isOffset":false,"isSlot":false,"src":"14400:8:40","valueSize":1}],"id":12440,"nodeType":"InlineAssembly","src":"14377:82:40"},{"expression":{"id":12441,"name":"tempUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12438,"src":"14476:8:40","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":12426,"id":12442,"nodeType":"Return","src":"14469:15:40"}]},"id":12444,"implemented":true,"kind":"function","modifiers":[],"name":"toUint128","nameLocation":"14189:9:40","nodeType":"FunctionDefinition","parameters":{"id":12423,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12420,"mutability":"mutable","name":"_bytes","nameLocation":"14212:6:40","nodeType":"VariableDeclaration","scope":12444,"src":"14199:19:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12419,"name":"bytes","nodeType":"ElementaryTypeName","src":"14199:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":12422,"mutability":"mutable","name":"_start","nameLocation":"14228:6:40","nodeType":"VariableDeclaration","scope":12444,"src":"14220:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12421,"name":"uint256","nodeType":"ElementaryTypeName","src":"14220:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14198:37:40"},"returnParameters":{"id":12426,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12425,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12444,"src":"14259:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":12424,"name":"uint128","nodeType":"ElementaryTypeName","src":"14259:7:40","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"14258:9:40"},"scope":12531,"src":"14180:311:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12469,"nodeType":"Block","src":"14585:223:40","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12454,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12446,"src":"14603:6:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14610:6:40","memberName":"length","nodeType":"MemberAccess","src":"14603:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12456,"name":"_start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12448,"src":"14620:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3332","id":12457,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14629:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"14620:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14603:28:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"746f55696e743235365f6f75744f66426f756e6473","id":12460,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14633:23:40","typeDescriptions":{"typeIdentifier":"t_stringliteral_87a32b96294a395a4fb365d8b27a23d532fa10419cffd7dc13367cdc71bf4d7b","typeString":"literal_string \"toUint256_outOfBounds\""},"value":"toUint256_outOfBounds"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_87a32b96294a395a4fb365d8b27a23d532fa10419cffd7dc13367cdc71bf4d7b","typeString":"literal_string \"toUint256_outOfBounds\""}],"id":12453,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"14595:7:40","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":12461,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14595:62:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12462,"nodeType":"ExpressionStatement","src":"14595:62:40"},{"assignments":[12464],"declarations":[{"constant":false,"id":12464,"mutability":"mutable","name":"tempUint","nameLocation":"14675:8:40","nodeType":"VariableDeclaration","scope":12469,"src":"14667:16:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12463,"name":"uint256","nodeType":"ElementaryTypeName","src":"14667:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12465,"nodeType":"VariableDeclarationStatement","src":"14667:16:40"},{"AST":{"nativeSrc":"14703:73:40","nodeType":"YulBlock","src":"14703:73:40","statements":[{"nativeSrc":"14717:49:40","nodeType":"YulAssignment","src":"14717:49:40","value":{"arguments":[{"arguments":[{"arguments":[{"name":"_bytes","nativeSrc":"14743:6:40","nodeType":"YulIdentifier","src":"14743:6:40"},{"kind":"number","nativeSrc":"14751:4:40","nodeType":"YulLiteral","src":"14751:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"14739:3:40","nodeType":"YulIdentifier","src":"14739:3:40"},"nativeSrc":"14739:17:40","nodeType":"YulFunctionCall","src":"14739:17:40"},{"name":"_start","nativeSrc":"14758:6:40","nodeType":"YulIdentifier","src":"14758:6:40"}],"functionName":{"name":"add","nativeSrc":"14735:3:40","nodeType":"YulIdentifier","src":"14735:3:40"},"nativeSrc":"14735:30:40","nodeType":"YulFunctionCall","src":"14735:30:40"}],"functionName":{"name":"mload","nativeSrc":"14729:5:40","nodeType":"YulIdentifier","src":"14729:5:40"},"nativeSrc":"14729:37:40","nodeType":"YulFunctionCall","src":"14729:37:40"},"variableNames":[{"name":"tempUint","nativeSrc":"14717:8:40","nodeType":"YulIdentifier","src":"14717:8:40"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12446,"isOffset":false,"isSlot":false,"src":"14743:6:40","valueSize":1},{"declaration":12448,"isOffset":false,"isSlot":false,"src":"14758:6:40","valueSize":1},{"declaration":12464,"isOffset":false,"isSlot":false,"src":"14717:8:40","valueSize":1}],"id":12466,"nodeType":"InlineAssembly","src":"14694:82:40"},{"expression":{"id":12467,"name":"tempUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12464,"src":"14793:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":12452,"id":12468,"nodeType":"Return","src":"14786:15:40"}]},"id":12470,"implemented":true,"kind":"function","modifiers":[],"name":"toUint256","nameLocation":"14506:9:40","nodeType":"FunctionDefinition","parameters":{"id":12449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12446,"mutability":"mutable","name":"_bytes","nameLocation":"14529:6:40","nodeType":"VariableDeclaration","scope":12470,"src":"14516:19:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12445,"name":"bytes","nodeType":"ElementaryTypeName","src":"14516:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":12448,"mutability":"mutable","name":"_start","nameLocation":"14545:6:40","nodeType":"VariableDeclaration","scope":12470,"src":"14537:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12447,"name":"uint256","nodeType":"ElementaryTypeName","src":"14537:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14515:37:40"},"returnParameters":{"id":12452,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12451,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12470,"src":"14576:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12450,"name":"uint256","nodeType":"ElementaryTypeName","src":"14576:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14575:9:40"},"scope":12531,"src":"14497:311:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12495,"nodeType":"Block","src":"14902:232:40","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12480,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12472,"src":"14920:6:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14927:6:40","memberName":"length","nodeType":"MemberAccess","src":"14920:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12482,"name":"_start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12474,"src":"14937:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3332","id":12483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14946:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"14937:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14920:28:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"746f427974657333325f6f75744f66426f756e6473","id":12486,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14950:23:40","typeDescriptions":{"typeIdentifier":"t_stringliteral_95abc635681816f3b423f999d8035c1cc722b70e3d801f56cd1748a4f5810fa2","typeString":"literal_string \"toBytes32_outOfBounds\""},"value":"toBytes32_outOfBounds"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_95abc635681816f3b423f999d8035c1cc722b70e3d801f56cd1748a4f5810fa2","typeString":"literal_string \"toBytes32_outOfBounds\""}],"id":12479,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"14912:7:40","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":12487,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14912:62:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12488,"nodeType":"ExpressionStatement","src":"14912:62:40"},{"assignments":[12490],"declarations":[{"constant":false,"id":12490,"mutability":"mutable","name":"tempBytes32","nameLocation":"14992:11:40","nodeType":"VariableDeclaration","scope":12495,"src":"14984:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":12489,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14984:7:40","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":12491,"nodeType":"VariableDeclarationStatement","src":"14984:19:40"},{"AST":{"nativeSrc":"15023:76:40","nodeType":"YulBlock","src":"15023:76:40","statements":[{"nativeSrc":"15037:52:40","nodeType":"YulAssignment","src":"15037:52:40","value":{"arguments":[{"arguments":[{"arguments":[{"name":"_bytes","nativeSrc":"15066:6:40","nodeType":"YulIdentifier","src":"15066:6:40"},{"kind":"number","nativeSrc":"15074:4:40","nodeType":"YulLiteral","src":"15074:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15062:3:40","nodeType":"YulIdentifier","src":"15062:3:40"},"nativeSrc":"15062:17:40","nodeType":"YulFunctionCall","src":"15062:17:40"},{"name":"_start","nativeSrc":"15081:6:40","nodeType":"YulIdentifier","src":"15081:6:40"}],"functionName":{"name":"add","nativeSrc":"15058:3:40","nodeType":"YulIdentifier","src":"15058:3:40"},"nativeSrc":"15058:30:40","nodeType":"YulFunctionCall","src":"15058:30:40"}],"functionName":{"name":"mload","nativeSrc":"15052:5:40","nodeType":"YulIdentifier","src":"15052:5:40"},"nativeSrc":"15052:37:40","nodeType":"YulFunctionCall","src":"15052:37:40"},"variableNames":[{"name":"tempBytes32","nativeSrc":"15037:11:40","nodeType":"YulIdentifier","src":"15037:11:40"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12472,"isOffset":false,"isSlot":false,"src":"15066:6:40","valueSize":1},{"declaration":12474,"isOffset":false,"isSlot":false,"src":"15081:6:40","valueSize":1},{"declaration":12490,"isOffset":false,"isSlot":false,"src":"15037:11:40","valueSize":1}],"id":12492,"nodeType":"InlineAssembly","src":"15014:85:40"},{"expression":{"id":12493,"name":"tempBytes32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12490,"src":"15116:11:40","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":12478,"id":12494,"nodeType":"Return","src":"15109:18:40"}]},"id":12496,"implemented":true,"kind":"function","modifiers":[],"name":"toBytes32","nameLocation":"14823:9:40","nodeType":"FunctionDefinition","parameters":{"id":12475,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12472,"mutability":"mutable","name":"_bytes","nameLocation":"14846:6:40","nodeType":"VariableDeclaration","scope":12496,"src":"14833:19:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12471,"name":"bytes","nodeType":"ElementaryTypeName","src":"14833:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":12474,"mutability":"mutable","name":"_start","nameLocation":"14862:6:40","nodeType":"VariableDeclaration","scope":12496,"src":"14854:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12473,"name":"uint256","nodeType":"ElementaryTypeName","src":"14854:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14832:37:40"},"returnParameters":{"id":12478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12477,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12496,"src":"14893:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":12476,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14893:7:40","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"14892:9:40"},"scope":12531,"src":"14814:320:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12512,"nodeType":"Block","src":"15233:1323:40","statements":[{"assignments":[12506],"declarations":[{"constant":false,"id":12506,"mutability":"mutable","name":"success","nameLocation":"15248:7:40","nodeType":"VariableDeclaration","scope":12512,"src":"15243:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12505,"name":"bool","nodeType":"ElementaryTypeName","src":"15243:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":12508,"initialValue":{"hexValue":"74727565","id":12507,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"15258:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"nodeType":"VariableDeclarationStatement","src":"15243:19:40"},{"AST":{"nativeSrc":"15282:1243:40","nodeType":"YulBlock","src":"15282:1243:40","statements":[{"nativeSrc":"15296:30:40","nodeType":"YulVariableDeclaration","src":"15296:30:40","value":{"arguments":[{"name":"_preBytes","nativeSrc":"15316:9:40","nodeType":"YulIdentifier","src":"15316:9:40"}],"functionName":{"name":"mload","nativeSrc":"15310:5:40","nodeType":"YulIdentifier","src":"15310:5:40"},"nativeSrc":"15310:16:40","nodeType":"YulFunctionCall","src":"15310:16:40"},"variables":[{"name":"length","nativeSrc":"15300:6:40","nodeType":"YulTypedName","src":"15300:6:40","type":""}]},{"cases":[{"body":{"nativeSrc":"15459:961:40","nodeType":"YulBlock","src":"15459:961:40","statements":[{"nativeSrc":"15688:11:40","nodeType":"YulVariableDeclaration","src":"15688:11:40","value":{"kind":"number","nativeSrc":"15698:1:40","nodeType":"YulLiteral","src":"15698:1:40","type":"","value":"1"},"variables":[{"name":"cb","nativeSrc":"15692:2:40","nodeType":"YulTypedName","src":"15692:2:40","type":""}]},{"nativeSrc":"15717:30:40","nodeType":"YulVariableDeclaration","src":"15717:30:40","value":{"arguments":[{"name":"_preBytes","nativeSrc":"15731:9:40","nodeType":"YulIdentifier","src":"15731:9:40"},{"kind":"number","nativeSrc":"15742:4:40","nodeType":"YulLiteral","src":"15742:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15727:3:40","nodeType":"YulIdentifier","src":"15727:3:40"},"nativeSrc":"15727:20:40","nodeType":"YulFunctionCall","src":"15727:20:40"},"variables":[{"name":"mc","nativeSrc":"15721:2:40","nodeType":"YulTypedName","src":"15721:2:40","type":""}]},{"nativeSrc":"15764:26:40","nodeType":"YulVariableDeclaration","src":"15764:26:40","value":{"arguments":[{"name":"mc","nativeSrc":"15779:2:40","nodeType":"YulIdentifier","src":"15779:2:40"},{"name":"length","nativeSrc":"15783:6:40","nodeType":"YulIdentifier","src":"15783:6:40"}],"functionName":{"name":"add","nativeSrc":"15775:3:40","nodeType":"YulIdentifier","src":"15775:3:40"},"nativeSrc":"15775:15:40","nodeType":"YulFunctionCall","src":"15775:15:40"},"variables":[{"name":"end","nativeSrc":"15768:3:40","nodeType":"YulTypedName","src":"15768:3:40","type":""}]},{"body":{"nativeSrc":"16122:284:40","nodeType":"YulBlock","src":"16122:284:40","statements":[{"body":{"nativeSrc":"16258:130:40","nodeType":"YulBlock","src":"16258:130:40","statements":[{"nativeSrc":"16322:12:40","nodeType":"YulAssignment","src":"16322:12:40","value":{"kind":"number","nativeSrc":"16333:1:40","nodeType":"YulLiteral","src":"16333:1:40","type":"","value":"0"},"variableNames":[{"name":"success","nativeSrc":"16322:7:40","nodeType":"YulIdentifier","src":"16322:7:40"}]},{"nativeSrc":"16359:7:40","nodeType":"YulAssignment","src":"16359:7:40","value":{"kind":"number","nativeSrc":"16365:1:40","nodeType":"YulLiteral","src":"16365:1:40","type":"","value":"0"},"variableNames":[{"name":"cb","nativeSrc":"16359:2:40","nodeType":"YulIdentifier","src":"16359:2:40"}]}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"mc","nativeSrc":"16241:2:40","nodeType":"YulIdentifier","src":"16241:2:40"}],"functionName":{"name":"mload","nativeSrc":"16235:5:40","nodeType":"YulIdentifier","src":"16235:5:40"},"nativeSrc":"16235:9:40","nodeType":"YulFunctionCall","src":"16235:9:40"},{"arguments":[{"name":"cc","nativeSrc":"16252:2:40","nodeType":"YulIdentifier","src":"16252:2:40"}],"functionName":{"name":"mload","nativeSrc":"16246:5:40","nodeType":"YulIdentifier","src":"16246:5:40"},"nativeSrc":"16246:9:40","nodeType":"YulFunctionCall","src":"16246:9:40"}],"functionName":{"name":"eq","nativeSrc":"16232:2:40","nodeType":"YulIdentifier","src":"16232:2:40"},"nativeSrc":"16232:24:40","nodeType":"YulFunctionCall","src":"16232:24:40"}],"functionName":{"name":"iszero","nativeSrc":"16225:6:40","nodeType":"YulIdentifier","src":"16225:6:40"},"nativeSrc":"16225:32:40","nodeType":"YulFunctionCall","src":"16225:32:40"},"nativeSrc":"16222:166:40","nodeType":"YulIf","src":"16222:166:40"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"mc","nativeSrc":"16004:2:40","nodeType":"YulIdentifier","src":"16004:2:40"},{"name":"end","nativeSrc":"16008:3:40","nodeType":"YulIdentifier","src":"16008:3:40"}],"functionName":{"name":"lt","nativeSrc":"16001:2:40","nodeType":"YulIdentifier","src":"16001:2:40"},"nativeSrc":"16001:11:40","nodeType":"YulFunctionCall","src":"16001:11:40"},{"name":"cb","nativeSrc":"16014:2:40","nodeType":"YulIdentifier","src":"16014:2:40"}],"functionName":{"name":"add","nativeSrc":"15997:3:40","nodeType":"YulIdentifier","src":"15997:3:40"},"nativeSrc":"15997:20:40","nodeType":"YulFunctionCall","src":"15997:20:40"},{"kind":"number","nativeSrc":"16019:1:40","nodeType":"YulLiteral","src":"16019:1:40","type":"","value":"2"}],"functionName":{"name":"eq","nativeSrc":"15994:2:40","nodeType":"YulIdentifier","src":"15994:2:40"},"nativeSrc":"15994:27:40","nodeType":"YulFunctionCall","src":"15994:27:40"},"nativeSrc":"15808:598:40","nodeType":"YulForLoop","post":{"nativeSrc":"16022:99:40","nodeType":"YulBlock","src":"16022:99:40","statements":[{"nativeSrc":"16044:19:40","nodeType":"YulAssignment","src":"16044:19:40","value":{"arguments":[{"name":"mc","nativeSrc":"16054:2:40","nodeType":"YulIdentifier","src":"16054:2:40"},{"kind":"number","nativeSrc":"16058:4:40","nodeType":"YulLiteral","src":"16058:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"16050:3:40","nodeType":"YulIdentifier","src":"16050:3:40"},"nativeSrc":"16050:13:40","nodeType":"YulFunctionCall","src":"16050:13:40"},"variableNames":[{"name":"mc","nativeSrc":"16044:2:40","nodeType":"YulIdentifier","src":"16044:2:40"}]},{"nativeSrc":"16084:19:40","nodeType":"YulAssignment","src":"16084:19:40","value":{"arguments":[{"name":"cc","nativeSrc":"16094:2:40","nodeType":"YulIdentifier","src":"16094:2:40"},{"kind":"number","nativeSrc":"16098:4:40","nodeType":"YulLiteral","src":"16098:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"16090:3:40","nodeType":"YulIdentifier","src":"16090:3:40"},"nativeSrc":"16090:13:40","nodeType":"YulFunctionCall","src":"16090:13:40"},"variableNames":[{"name":"cc","nativeSrc":"16084:2:40","nodeType":"YulIdentifier","src":"16084:2:40"}]}]},"pre":{"nativeSrc":"15812:181:40","nodeType":"YulBlock","src":"15812:181:40","statements":[{"nativeSrc":"15834:31:40","nodeType":"YulVariableDeclaration","src":"15834:31:40","value":{"arguments":[{"name":"_postBytes","nativeSrc":"15848:10:40","nodeType":"YulIdentifier","src":"15848:10:40"},{"kind":"number","nativeSrc":"15860:4:40","nodeType":"YulLiteral","src":"15860:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15844:3:40","nodeType":"YulIdentifier","src":"15844:3:40"},"nativeSrc":"15844:21:40","nodeType":"YulFunctionCall","src":"15844:21:40"},"variables":[{"name":"cc","nativeSrc":"15838:2:40","nodeType":"YulTypedName","src":"15838:2:40","type":""}]}]},"src":"15808:598:40"}]},"nativeSrc":"15452:968:40","nodeType":"YulCase","src":"15452:968:40","value":{"kind":"number","nativeSrc":"15457:1:40","nodeType":"YulLiteral","src":"15457:1:40","type":"","value":"1"}},{"body":{"nativeSrc":"16441:74:40","nodeType":"YulBlock","src":"16441:74:40","statements":[{"nativeSrc":"16489:12:40","nodeType":"YulAssignment","src":"16489:12:40","value":{"kind":"number","nativeSrc":"16500:1:40","nodeType":"YulLiteral","src":"16500:1:40","type":"","value":"0"},"variableNames":[{"name":"success","nativeSrc":"16489:7:40","nodeType":"YulIdentifier","src":"16489:7:40"}]}]},"nativeSrc":"16433:82:40","nodeType":"YulCase","src":"16433:82:40","value":"default"}],"expression":{"arguments":[{"name":"length","nativeSrc":"15413:6:40","nodeType":"YulIdentifier","src":"15413:6:40"},{"arguments":[{"name":"_postBytes","nativeSrc":"15427:10:40","nodeType":"YulIdentifier","src":"15427:10:40"}],"functionName":{"name":"mload","nativeSrc":"15421:5:40","nodeType":"YulIdentifier","src":"15421:5:40"},"nativeSrc":"15421:17:40","nodeType":"YulFunctionCall","src":"15421:17:40"}],"functionName":{"name":"eq","nativeSrc":"15410:2:40","nodeType":"YulIdentifier","src":"15410:2:40"},"nativeSrc":"15410:29:40","nodeType":"YulFunctionCall","src":"15410:29:40"},"nativeSrc":"15403:1112:40","nodeType":"YulSwitch","src":"15403:1112:40"}]},"evmVersion":"cancun","externalReferences":[{"declaration":12500,"isOffset":false,"isSlot":false,"src":"15427:10:40","valueSize":1},{"declaration":12500,"isOffset":false,"isSlot":false,"src":"15848:10:40","valueSize":1},{"declaration":12498,"isOffset":false,"isSlot":false,"src":"15316:9:40","valueSize":1},{"declaration":12498,"isOffset":false,"isSlot":false,"src":"15731:9:40","valueSize":1},{"declaration":12506,"isOffset":false,"isSlot":false,"src":"16322:7:40","valueSize":1},{"declaration":12506,"isOffset":false,"isSlot":false,"src":"16489:7:40","valueSize":1}],"id":12509,"nodeType":"InlineAssembly","src":"15273:1252:40"},{"expression":{"id":12510,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12506,"src":"16542:7:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":12504,"id":12511,"nodeType":"Return","src":"16535:14:40"}]},"id":12513,"implemented":true,"kind":"function","modifiers":[],"name":"equal","nameLocation":"15149:5:40","nodeType":"FunctionDefinition","parameters":{"id":12501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12498,"mutability":"mutable","name":"_preBytes","nameLocation":"15168:9:40","nodeType":"VariableDeclaration","scope":12513,"src":"15155:22:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12497,"name":"bytes","nodeType":"ElementaryTypeName","src":"15155:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":12500,"mutability":"mutable","name":"_postBytes","nameLocation":"15192:10:40","nodeType":"VariableDeclaration","scope":12513,"src":"15179:23:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12499,"name":"bytes","nodeType":"ElementaryTypeName","src":"15179:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15154:49:40"},"returnParameters":{"id":12504,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12503,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12513,"src":"15227:4:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12502,"name":"bool","nodeType":"ElementaryTypeName","src":"15227:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"15226:6:40"},"scope":12531,"src":"15140:1416:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12529,"nodeType":"Block","src":"16713:2559:40","statements":[{"assignments":[12523],"declarations":[{"constant":false,"id":12523,"mutability":"mutable","name":"success","nameLocation":"16728:7:40","nodeType":"VariableDeclaration","scope":12529,"src":"16723:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12522,"name":"bool","nodeType":"ElementaryTypeName","src":"16723:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":12525,"initialValue":{"hexValue":"74727565","id":12524,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"16738:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"nodeType":"VariableDeclarationStatement","src":"16723:19:40"},{"AST":{"nativeSrc":"16762:2479:40","nodeType":"YulBlock","src":"16762:2479:40","statements":[{"nativeSrc":"16821:34:40","nodeType":"YulVariableDeclaration","src":"16821:34:40","value":{"arguments":[{"name":"_preBytes.slot","nativeSrc":"16840:14:40","nodeType":"YulIdentifier","src":"16840:14:40"}],"functionName":{"name":"sload","nativeSrc":"16834:5:40","nodeType":"YulIdentifier","src":"16834:5:40"},"nativeSrc":"16834:21:40","nodeType":"YulFunctionCall","src":"16834:21:40"},"variables":[{"name":"fslot","nativeSrc":"16825:5:40","nodeType":"YulTypedName","src":"16825:5:40","type":""}]},{"nativeSrc":"16946:76:40","nodeType":"YulVariableDeclaration","src":"16946:76:40","value":{"arguments":[{"arguments":[{"name":"fslot","nativeSrc":"16969:5:40","nodeType":"YulIdentifier","src":"16969:5:40"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16984:5:40","nodeType":"YulLiteral","src":"16984:5:40","type":"","value":"0x100"},{"arguments":[{"arguments":[{"name":"fslot","nativeSrc":"17002:5:40","nodeType":"YulIdentifier","src":"17002:5:40"},{"kind":"number","nativeSrc":"17009:1:40","nodeType":"YulLiteral","src":"17009:1:40","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"16998:3:40","nodeType":"YulIdentifier","src":"16998:3:40"},"nativeSrc":"16998:13:40","nodeType":"YulFunctionCall","src":"16998:13:40"}],"functionName":{"name":"iszero","nativeSrc":"16991:6:40","nodeType":"YulIdentifier","src":"16991:6:40"},"nativeSrc":"16991:21:40","nodeType":"YulFunctionCall","src":"16991:21:40"}],"functionName":{"name":"mul","nativeSrc":"16980:3:40","nodeType":"YulIdentifier","src":"16980:3:40"},"nativeSrc":"16980:33:40","nodeType":"YulFunctionCall","src":"16980:33:40"},{"kind":"number","nativeSrc":"17015:1:40","nodeType":"YulLiteral","src":"17015:1:40","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16976:3:40","nodeType":"YulIdentifier","src":"16976:3:40"},"nativeSrc":"16976:41:40","nodeType":"YulFunctionCall","src":"16976:41:40"}],"functionName":{"name":"and","nativeSrc":"16965:3:40","nodeType":"YulIdentifier","src":"16965:3:40"},"nativeSrc":"16965:53:40","nodeType":"YulFunctionCall","src":"16965:53:40"},{"kind":"number","nativeSrc":"17020:1:40","nodeType":"YulLiteral","src":"17020:1:40","type":"","value":"2"}],"functionName":{"name":"div","nativeSrc":"16961:3:40","nodeType":"YulIdentifier","src":"16961:3:40"},"nativeSrc":"16961:61:40","nodeType":"YulFunctionCall","src":"16961:61:40"},"variables":[{"name":"slength","nativeSrc":"16950:7:40","nodeType":"YulTypedName","src":"16950:7:40","type":""}]},{"nativeSrc":"17035:32:40","nodeType":"YulVariableDeclaration","src":"17035:32:40","value":{"arguments":[{"name":"_postBytes","nativeSrc":"17056:10:40","nodeType":"YulIdentifier","src":"17056:10:40"}],"functionName":{"name":"mload","nativeSrc":"17050:5:40","nodeType":"YulIdentifier","src":"17050:5:40"},"nativeSrc":"17050:17:40","nodeType":"YulFunctionCall","src":"17050:17:40"},"variables":[{"name":"mlength","nativeSrc":"17039:7:40","nodeType":"YulTypedName","src":"17039:7:40","type":""}]},{"cases":[{"body":{"nativeSrc":"17191:1945:40","nodeType":"YulBlock","src":"17191:1945:40","statements":[{"body":{"nativeSrc":"17502:1620:40","nodeType":"YulBlock","src":"17502:1620:40","statements":[{"cases":[{"body":{"nativeSrc":"17574:340:40","nodeType":"YulBlock","src":"17574:340:40","statements":[{"nativeSrc":"17667:38:40","nodeType":"YulAssignment","src":"17667:38:40","value":{"arguments":[{"arguments":[{"name":"fslot","nativeSrc":"17684:5:40","nodeType":"YulIdentifier","src":"17684:5:40"},{"kind":"number","nativeSrc":"17691:5:40","nodeType":"YulLiteral","src":"17691:5:40","type":"","value":"0x100"}],"functionName":{"name":"div","nativeSrc":"17680:3:40","nodeType":"YulIdentifier","src":"17680:3:40"},"nativeSrc":"17680:17:40","nodeType":"YulFunctionCall","src":"17680:17:40"},{"kind":"number","nativeSrc":"17699:5:40","nodeType":"YulLiteral","src":"17699:5:40","type":"","value":"0x100"}],"functionName":{"name":"mul","nativeSrc":"17676:3:40","nodeType":"YulIdentifier","src":"17676:3:40"},"nativeSrc":"17676:29:40","nodeType":"YulFunctionCall","src":"17676:29:40"},"variableNames":[{"name":"fslot","nativeSrc":"17667:5:40","nodeType":"YulIdentifier","src":"17667:5:40"}]},{"body":{"nativeSrc":"17782:110:40","nodeType":"YulBlock","src":"17782:110:40","statements":[{"nativeSrc":"17854:12:40","nodeType":"YulAssignment","src":"17854:12:40","value":{"kind":"number","nativeSrc":"17865:1:40","nodeType":"YulLiteral","src":"17865:1:40","type":"","value":"0"},"variableNames":[{"name":"success","nativeSrc":"17854:7:40","nodeType":"YulIdentifier","src":"17854:7:40"}]}]},"condition":{"arguments":[{"arguments":[{"name":"fslot","nativeSrc":"17744:5:40","nodeType":"YulIdentifier","src":"17744:5:40"},{"arguments":[{"arguments":[{"name":"_postBytes","nativeSrc":"17761:10:40","nodeType":"YulIdentifier","src":"17761:10:40"},{"kind":"number","nativeSrc":"17773:4:40","nodeType":"YulLiteral","src":"17773:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"17757:3:40","nodeType":"YulIdentifier","src":"17757:3:40"},"nativeSrc":"17757:21:40","nodeType":"YulFunctionCall","src":"17757:21:40"}],"functionName":{"name":"mload","nativeSrc":"17751:5:40","nodeType":"YulIdentifier","src":"17751:5:40"},"nativeSrc":"17751:28:40","nodeType":"YulFunctionCall","src":"17751:28:40"}],"functionName":{"name":"eq","nativeSrc":"17741:2:40","nodeType":"YulIdentifier","src":"17741:2:40"},"nativeSrc":"17741:39:40","nodeType":"YulFunctionCall","src":"17741:39:40"}],"functionName":{"name":"iszero","nativeSrc":"17734:6:40","nodeType":"YulIdentifier","src":"17734:6:40"},"nativeSrc":"17734:47:40","nodeType":"YulFunctionCall","src":"17734:47:40"},"nativeSrc":"17731:161:40","nodeType":"YulIf","src":"17731:161:40"}]},"nativeSrc":"17567:347:40","nodeType":"YulCase","src":"17567:347:40","value":{"kind":"number","nativeSrc":"17572:1:40","nodeType":"YulLiteral","src":"17572:1:40","type":"","value":"1"}},{"body":{"nativeSrc":"17943:1161:40","nodeType":"YulBlock","src":"17943:1161:40","statements":[{"nativeSrc":"18212:11:40","nodeType":"YulVariableDeclaration","src":"18212:11:40","value":{"kind":"number","nativeSrc":"18222:1:40","nodeType":"YulLiteral","src":"18222:1:40","type":"","value":"1"},"variables":[{"name":"cb","nativeSrc":"18216:2:40","nodeType":"YulTypedName","src":"18216:2:40","type":""}]},{"expression":{"arguments":[{"kind":"number","nativeSrc":"18336:3:40","nodeType":"YulLiteral","src":"18336:3:40","type":"","value":"0x0"},{"name":"_preBytes.slot","nativeSrc":"18341:14:40","nodeType":"YulIdentifier","src":"18341:14:40"}],"functionName":{"name":"mstore","nativeSrc":"18329:6:40","nodeType":"YulIdentifier","src":"18329:6:40"},"nativeSrc":"18329:27:40","nodeType":"YulFunctionCall","src":"18329:27:40"},"nativeSrc":"18329:27:40","nodeType":"YulExpressionStatement","src":"18329:27:40"},{"nativeSrc":"18381:30:40","nodeType":"YulVariableDeclaration","src":"18381:30:40","value":{"arguments":[{"kind":"number","nativeSrc":"18401:3:40","nodeType":"YulLiteral","src":"18401:3:40","type":"","value":"0x0"},{"kind":"number","nativeSrc":"18406:4:40","nodeType":"YulLiteral","src":"18406:4:40","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"18391:9:40","nodeType":"YulIdentifier","src":"18391:9:40"},"nativeSrc":"18391:20:40","nodeType":"YulFunctionCall","src":"18391:20:40"},"variables":[{"name":"sc","nativeSrc":"18385:2:40","nodeType":"YulTypedName","src":"18385:2:40","type":""}]},{"nativeSrc":"18437:31:40","nodeType":"YulVariableDeclaration","src":"18437:31:40","value":{"arguments":[{"name":"_postBytes","nativeSrc":"18451:10:40","nodeType":"YulIdentifier","src":"18451:10:40"},{"kind":"number","nativeSrc":"18463:4:40","nodeType":"YulLiteral","src":"18463:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"18447:3:40","nodeType":"YulIdentifier","src":"18447:3:40"},"nativeSrc":"18447:21:40","nodeType":"YulFunctionCall","src":"18447:21:40"},"variables":[{"name":"mc","nativeSrc":"18441:2:40","nodeType":"YulTypedName","src":"18441:2:40","type":""}]},{"nativeSrc":"18493:27:40","nodeType":"YulVariableDeclaration","src":"18493:27:40","value":{"arguments":[{"name":"mc","nativeSrc":"18508:2:40","nodeType":"YulIdentifier","src":"18508:2:40"},{"name":"mlength","nativeSrc":"18512:7:40","nodeType":"YulIdentifier","src":"18512:7:40"}],"functionName":{"name":"add","nativeSrc":"18504:3:40","nodeType":"YulIdentifier","src":"18504:3:40"},"nativeSrc":"18504:16:40","nodeType":"YulFunctionCall","src":"18504:16:40"},"variables":[{"name":"end","nativeSrc":"18497:3:40","nodeType":"YulTypedName","src":"18497:3:40","type":""}]},{"body":{"nativeSrc":"18828:254:40","nodeType":"YulBlock","src":"18828:254:40","statements":[{"body":{"nativeSrc":"18894:162:40","nodeType":"YulBlock","src":"18894:162:40","statements":[{"nativeSrc":"18974:12:40","nodeType":"YulAssignment","src":"18974:12:40","value":{"kind":"number","nativeSrc":"18985:1:40","nodeType":"YulLiteral","src":"18985:1:40","type":"","value":"0"},"variableNames":[{"name":"success","nativeSrc":"18974:7:40","nodeType":"YulIdentifier","src":"18974:7:40"}]},{"nativeSrc":"19019:7:40","nodeType":"YulAssignment","src":"19019:7:40","value":{"kind":"number","nativeSrc":"19025:1:40","nodeType":"YulLiteral","src":"19025:1:40","type":"","value":"0"},"variableNames":[{"name":"cb","nativeSrc":"19019:2:40","nodeType":"YulIdentifier","src":"19019:2:40"}]}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"sc","nativeSrc":"18877:2:40","nodeType":"YulIdentifier","src":"18877:2:40"}],"functionName":{"name":"sload","nativeSrc":"18871:5:40","nodeType":"YulIdentifier","src":"18871:5:40"},"nativeSrc":"18871:9:40","nodeType":"YulFunctionCall","src":"18871:9:40"},{"arguments":[{"name":"mc","nativeSrc":"18888:2:40","nodeType":"YulIdentifier","src":"18888:2:40"}],"functionName":{"name":"mload","nativeSrc":"18882:5:40","nodeType":"YulIdentifier","src":"18882:5:40"},"nativeSrc":"18882:9:40","nodeType":"YulFunctionCall","src":"18882:9:40"}],"functionName":{"name":"eq","nativeSrc":"18868:2:40","nodeType":"YulIdentifier","src":"18868:2:40"},"nativeSrc":"18868:24:40","nodeType":"YulFunctionCall","src":"18868:24:40"}],"functionName":{"name":"iszero","nativeSrc":"18861:6:40","nodeType":"YulIdentifier","src":"18861:6:40"},"nativeSrc":"18861:32:40","nodeType":"YulFunctionCall","src":"18861:32:40"},"nativeSrc":"18858:198:40","nodeType":"YulIf","src":"18858:198:40"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"mc","nativeSrc":"18689:2:40","nodeType":"YulIdentifier","src":"18689:2:40"},{"name":"end","nativeSrc":"18693:3:40","nodeType":"YulIdentifier","src":"18693:3:40"}],"functionName":{"name":"lt","nativeSrc":"18686:2:40","nodeType":"YulIdentifier","src":"18686:2:40"},"nativeSrc":"18686:11:40","nodeType":"YulFunctionCall","src":"18686:11:40"},{"name":"cb","nativeSrc":"18699:2:40","nodeType":"YulIdentifier","src":"18699:2:40"}],"functionName":{"name":"add","nativeSrc":"18682:3:40","nodeType":"YulIdentifier","src":"18682:3:40"},"nativeSrc":"18682:20:40","nodeType":"YulFunctionCall","src":"18682:20:40"},{"kind":"number","nativeSrc":"18704:1:40","nodeType":"YulLiteral","src":"18704:1:40","type":"","value":"2"}],"functionName":{"name":"eq","nativeSrc":"18679:2:40","nodeType":"YulIdentifier","src":"18679:2:40"},"nativeSrc":"18679:27:40","nodeType":"YulFunctionCall","src":"18679:27:40"},"nativeSrc":"18672:410:40","nodeType":"YulForLoop","post":{"nativeSrc":"18707:120:40","nodeType":"YulBlock","src":"18707:120:40","statements":[{"nativeSrc":"18737:16:40","nodeType":"YulAssignment","src":"18737:16:40","value":{"arguments":[{"name":"sc","nativeSrc":"18747:2:40","nodeType":"YulIdentifier","src":"18747:2:40"},{"kind":"number","nativeSrc":"18751:1:40","nodeType":"YulLiteral","src":"18751:1:40","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"18743:3:40","nodeType":"YulIdentifier","src":"18743:3:40"},"nativeSrc":"18743:10:40","nodeType":"YulFunctionCall","src":"18743:10:40"},"variableNames":[{"name":"sc","nativeSrc":"18737:2:40","nodeType":"YulIdentifier","src":"18737:2:40"}]},{"nativeSrc":"18782:19:40","nodeType":"YulAssignment","src":"18782:19:40","value":{"arguments":[{"name":"mc","nativeSrc":"18792:2:40","nodeType":"YulIdentifier","src":"18792:2:40"},{"kind":"number","nativeSrc":"18796:4:40","nodeType":"YulLiteral","src":"18796:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"18788:3:40","nodeType":"YulIdentifier","src":"18788:3:40"},"nativeSrc":"18788:13:40","nodeType":"YulFunctionCall","src":"18788:13:40"},"variableNames":[{"name":"mc","nativeSrc":"18782:2:40","nodeType":"YulIdentifier","src":"18782:2:40"}]}]},"pre":{"nativeSrc":"18676:2:40","nodeType":"YulBlock","src":"18676:2:40","statements":[]},"src":"18672:410:40"}]},"nativeSrc":"17935:1169:40","nodeType":"YulCase","src":"17935:1169:40","value":"default"}],"expression":{"arguments":[{"name":"slength","nativeSrc":"17534:7:40","nodeType":"YulIdentifier","src":"17534:7:40"},{"kind":"number","nativeSrc":"17543:2:40","nodeType":"YulLiteral","src":"17543:2:40","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"17531:2:40","nodeType":"YulIdentifier","src":"17531:2:40"},"nativeSrc":"17531:15:40","nodeType":"YulFunctionCall","src":"17531:15:40"},"nativeSrc":"17524:1580:40","nodeType":"YulSwitch","src":"17524:1580:40"}]},"condition":{"arguments":[{"arguments":[{"name":"slength","nativeSrc":"17492:7:40","nodeType":"YulIdentifier","src":"17492:7:40"}],"functionName":{"name":"iszero","nativeSrc":"17485:6:40","nodeType":"YulIdentifier","src":"17485:6:40"},"nativeSrc":"17485:15:40","nodeType":"YulFunctionCall","src":"17485:15:40"}],"functionName":{"name":"iszero","nativeSrc":"17478:6:40","nodeType":"YulIdentifier","src":"17478:6:40"},"nativeSrc":"17478:23:40","nodeType":"YulFunctionCall","src":"17478:23:40"},"nativeSrc":"17475:1647:40","nodeType":"YulIf","src":"17475:1647:40"}]},"nativeSrc":"17184:1952:40","nodeType":"YulCase","src":"17184:1952:40","value":{"kind":"number","nativeSrc":"17189:1:40","nodeType":"YulLiteral","src":"17189:1:40","type":"","value":"1"}},{"body":{"nativeSrc":"19157:74:40","nodeType":"YulBlock","src":"19157:74:40","statements":[{"nativeSrc":"19205:12:40","nodeType":"YulAssignment","src":"19205:12:40","value":{"kind":"number","nativeSrc":"19216:1:40","nodeType":"YulLiteral","src":"19216:1:40","type":"","value":"0"},"variableNames":[{"name":"success","nativeSrc":"19205:7:40","nodeType":"YulIdentifier","src":"19205:7:40"}]}]},"nativeSrc":"19149:82:40","nodeType":"YulCase","src":"19149:82:40","value":"default"}],"expression":{"arguments":[{"name":"slength","nativeSrc":"17154:7:40","nodeType":"YulIdentifier","src":"17154:7:40"},{"name":"mlength","nativeSrc":"17163:7:40","nodeType":"YulIdentifier","src":"17163:7:40"}],"functionName":{"name":"eq","nativeSrc":"17151:2:40","nodeType":"YulIdentifier","src":"17151:2:40"},"nativeSrc":"17151:20:40","nodeType":"YulFunctionCall","src":"17151:20:40"},"nativeSrc":"17144:2087:40","nodeType":"YulSwitch","src":"17144:2087:40"}]},"evmVersion":"cancun","externalReferences":[{"declaration":12517,"isOffset":false,"isSlot":false,"src":"17056:10:40","valueSize":1},{"declaration":12517,"isOffset":false,"isSlot":false,"src":"17761:10:40","valueSize":1},{"declaration":12517,"isOffset":false,"isSlot":false,"src":"18451:10:40","valueSize":1},{"declaration":12515,"isOffset":false,"isSlot":true,"src":"16840:14:40","suffix":"slot","valueSize":1},{"declaration":12515,"isOffset":false,"isSlot":true,"src":"18341:14:40","suffix":"slot","valueSize":1},{"declaration":12523,"isOffset":false,"isSlot":false,"src":"17854:7:40","valueSize":1},{"declaration":12523,"isOffset":false,"isSlot":false,"src":"18974:7:40","valueSize":1},{"declaration":12523,"isOffset":false,"isSlot":false,"src":"19205:7:40","valueSize":1}],"id":12526,"nodeType":"InlineAssembly","src":"16753:2488:40"},{"expression":{"id":12527,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12523,"src":"19258:7:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":12521,"id":12528,"nodeType":"Return","src":"19251:14:40"}]},"id":12530,"implemented":true,"kind":"function","modifiers":[],"name":"equalStorage","nameLocation":"16571:12:40","nodeType":"FunctionDefinition","parameters":{"id":12518,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12515,"mutability":"mutable","name":"_preBytes","nameLocation":"16607:9:40","nodeType":"VariableDeclaration","scope":12530,"src":"16593:23:40","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":12514,"name":"bytes","nodeType":"ElementaryTypeName","src":"16593:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":12517,"mutability":"mutable","name":"_postBytes","nameLocation":"16639:10:40","nodeType":"VariableDeclaration","scope":12530,"src":"16626:23:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12516,"name":"bytes","nodeType":"ElementaryTypeName","src":"16626:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16583:72:40"},"returnParameters":{"id":12521,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12520,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12530,"src":"16703:4:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12519,"name":"bool","nodeType":"ElementaryTypeName","src":"16703:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"16702:6:40"},"scope":12531,"src":"16562:2710:40","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":12532,"src":"370:18904:40","usedErrors":[],"usedEvents":[]}],"src":"336:18939:40"},"id":40}},"contracts":{"@account-abstraction/contracts/core/BaseAccount.sol":{"BaseAccount":{"abi":[{"inputs":[],"name":"entryPoint","outputs":[{"internalType":"contract IEntryPoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation","name":"userOp","type":"tuple"},{"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"internalType":"uint256","name":"missingAccountFunds","type":"uint256"}],"name":"validateUserOp","outputs":[{"internalType":"uint256","name":"validationData","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"entryPoint()":"b0d691fe","getNonce()":"d087d288","validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)":"19822f7c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"entryPoint\",\"outputs\":[{\"internalType\":\"contract IEntryPoint\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation\",\"name\":\"userOp\",\"type\":\"tuple\"},{\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"missingAccountFunds\",\"type\":\"uint256\"}],\"name\":\"validateUserOp\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"validationData\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"details\":\"Must validate caller is the entryPoint.      Must validate the signature and nonce\",\"params\":{\"missingAccountFunds\":\"- Missing funds on the account's deposit in the entrypoint.                              This is the minimum amount to transfer to the sender(entryPoint) to be                              able to make the call. The excess is left as a deposit in the entrypoint                              for future calls. Can be withdrawn anytime using \\\"entryPoint.withdrawTo()\\\".                              In case there is a paymaster in the request (or the current deposit is high                              enough), this value will be zero.\",\"userOp\":\"- The operation that is about to be executed.\",\"userOpHash\":\"- Hash of the user's request data. can be used as the basis for signature.\"},\"returns\":{\"validationData\":\"      - Packaged ValidationData structure. use `_packValidationData` and                              `_unpackValidationData` to encode and decode.                              <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,                                 otherwise, an address of an \\\"authorizer\\\" contract.                              <6-byte> validUntil - Last timestamp this operation is valid. 0 for \\\"indefinite\\\"                              <6-byte> validAfter - First timestamp this operation is valid                                                    If an account doesn't use time-range, it is enough to                                                    return SIG_VALIDATION_FAILED value (1) for signature failure.                              Note that the validation code cannot use block.timestamp (or block.number) directly.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"entryPoint()\":{\"notice\":\"Return the entryPoint used by this account. Subclass should return the current entryPoint used by this account.\"},\"getNonce()\":{\"notice\":\"Return the account nonce. This method returns the next sequential nonce. For a nonce of a specific key, use `entrypoint.getNonce(account, key)`\"},\"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"notice\":\"Validate user's signature and nonce the entryPoint will make the call to the recipient only if this validation call returns successfully. signature failure should be reported by returning SIG_VALIDATION_FAILED (1). This allows making a \\\"simulation call\\\" without a valid signature Other failures (e.g. nonce mismatch, or invalid signature format) should still revert to signal failure.\"}},\"notice\":\"Basic account implementation. This contract provides the basic logic for implementing the IAccount interface - validateUserOp Specific account implementation should inherit it and provide the account-specific logic.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/core/BaseAccount.sol\":\"BaseAccount\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/core/BaseAccount.sol\":{\"keccak256\":\"0x2736272f077d1699b8b8bf8be18d1c20e506668fc52b3293da70d17e63794358\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://35744475cf48405d7fd6edf6a96c84ef9da3ce844d8dfe3e2e1ffc30edf21d07\",\"dweb:/ipfs/QmUdau9VjVQ7iuRbdTmFSrXP7Hcasd9Cc57LP9thK78bwj\"]},\"@account-abstraction/contracts/core/Helpers.sol\":{\"keccak256\":\"0x6247e011a6cb0b263b3aa098822977181674d91b62e5bdfe04c6e66f72da25d6\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://ca829a69b3fbc74fec8e140d42a2bf93bc3512609272f031c846470f61f0ab7e\",\"dweb:/ipfs/QmP3r3MBgAN39KeVB1rCGJWwcBcotNt26ALtAR54poQ1Jc\"]},\"@account-abstraction/contracts/core/UserOperationLib.sol\":{\"keccak256\":\"0x9d50ece985d35f82e33e5da417595c86fac10449e3d10895d08363d33aad454b\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://b1d11cc364c8bf7ed5388268c895b5ffed16e87dfbcb320ddeeba5e7974315dc\",\"dweb:/ipfs/QmYSpvjxEjweietQrYZagwQ52ipy7eXx4rwvnTzXKeGeMS\"]},\"@account-abstraction/contracts/interfaces/IAccount.sol\":{\"keccak256\":\"0x38710bec0cb20ff4ceef46a80475b5bdabc27b7efd2687fd473db68332f61b78\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://dea7a723e1ef852e8764e69914a345d2e8bc5e13facfc9d5c29d791cb4ab0020\",\"dweb:/ipfs/QmU8dYgyF4DBJXFqjwLAtnE3q8q259ChfoEk9a6wyhHzEP\"]},\"@account-abstraction/contracts/interfaces/IAggregator.sol\":{\"keccak256\":\"0xf100d6fcc0c3b450b13e979b6a42c628c292a1bc340eccc2e7796b80e3975588\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://192938b5b27234d35c8098a319e879363c79f750eea4d0e409dc889a8ce5b155\",\"dweb:/ipfs/QmURpaJFPqEtkKP2ngBsgZhAGN8wAWh5XQpYmCkiz4Urz5\"]},\"@account-abstraction/contracts/interfaces/IEntryPoint.sol\":{\"keccak256\":\"0x1972a5fcb3a808b58c85af5741949ef6af11ab0debd3ae8c708171ae1ae0d0c4\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://baa9837ae73b9e2362a47d42d081d7c0f3d8e878e5edb381117d94a6968949c9\",\"dweb:/ipfs/QmUmo6FUE7fv5z1WzW1YFjxp8PqaeN2JrEee9au59w3Xhe\"]},\"@account-abstraction/contracts/interfaces/INonceManager.sol\":{\"keccak256\":\"0xd575af0f6ebbd5f0b2933307d44cd7b4e03a69f4b817a67db5409bd3c89aeecb\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://3b1e2dea9b05cfba9d13339ed16d96457dc861013cc4f3f35b71a80f82448db3\",\"dweb:/ipfs/QmVaGy5uGDMSiU2SzyokTjoHFyb39VVG5wtaM9KTnHyZSk\"]},\"@account-abstraction/contracts/interfaces/IStakeManager.sol\":{\"keccak256\":\"0xbe5ca9e7f254d031687419e7b96ef48c9c63e9398bbe992dc72ffc6dc14e0a04\",\"license\":\"GPL-3.0-only\",\"urls\":[\"bzz-raw://1fffec71c38627a26fabb423350148009579f092623fb02b471a12d973763a00\",\"dweb:/ipfs/QmRBi31QEYXHj3x1AnQ2jKa2eziZH1b9av396P3b4dw6bj\"]},\"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\":{\"keccak256\":\"0x1129b46381db68eddbc5cb49e50664667b66b03c480453858e7b25eabe444359\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://499a948aba60480dba6e25c763b8d918f1c246eb7a3302e04f493e080f3295be\",\"dweb:/ipfs/QmeRhhswf4NACcBKam2PyjpTP2ddSm648kah5kkQJsvwz3\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@account-abstraction/contracts/core/UserOperationLib.sol":{"UserOperationLib":{"abi":[{"inputs":[],"name":"PAYMASTER_DATA_OFFSET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAYMASTER_POSTOP_GAS_OFFSET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAYMASTER_VALIDATION_GAS_OFFSET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60a76032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106046575f3560e01c806325093e1b14604a578063b29a8ff4146063578063ede3150214606a575b5f5ffd5b6051602481565b60405190815260200160405180910390f35b6051601481565b605160348156fea26469706673582212205bde5ac34618b02218d2f871b854fe97e045cf0ddbd86c12a9fcbc459307e4ff64736f6c634300081c0033","opcodes":"PUSH1 0xA7 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x46 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x25093E1B EQ PUSH1 0x4A JUMPI DUP1 PUSH4 0xB29A8FF4 EQ PUSH1 0x63 JUMPI DUP1 PUSH4 0xEDE31502 EQ PUSH1 0x6A JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x51 PUSH1 0x24 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x51 PUSH1 0x14 DUP2 JUMP JUMPDEST PUSH1 0x51 PUSH1 0x34 DUP2 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 JUMPDEST 0xDE GAS 0xC3 CHAINID XOR 0xB0 0x22 XOR 0xD2 0xF8 PUSH18 0xB854FE97E045CF0DDBD86C12A9FCBC459307 0xE4 SELFDESTRUCT PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"282:4714:2:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;282:4714:2;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@PAYMASTER_DATA_OFFSET_333":{"entryPoint":null,"id":333,"parameterSlots":0,"returnSlots":0},"@PAYMASTER_POSTOP_GAS_OFFSET_330":{"entryPoint":null,"id":330,"parameterSlots":0,"returnSlots":0},"@PAYMASTER_VALIDATION_GAS_OFFSET_327":{"entryPoint":null,"id":327,"parameterSlots":0,"returnSlots":0},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_library_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:201:41","nodeType":"YulBlock","src":"0:201:41","statements":[{"nativeSrc":"6:3:41","nodeType":"YulBlock","src":"6:3:41","statements":[]},{"body":{"nativeSrc":"123:76:41","nodeType":"YulBlock","src":"123:76:41","statements":[{"nativeSrc":"133:26:41","nodeType":"YulAssignment","src":"133:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"145:9:41","nodeType":"YulIdentifier","src":"145:9:41"},{"kind":"number","nativeSrc":"156:2:41","nodeType":"YulLiteral","src":"156:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"141:3:41","nodeType":"YulIdentifier","src":"141:3:41"},"nativeSrc":"141:18:41","nodeType":"YulFunctionCall","src":"141:18:41"},"variableNames":[{"name":"tail","nativeSrc":"133:4:41","nodeType":"YulIdentifier","src":"133:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"175:9:41","nodeType":"YulIdentifier","src":"175:9:41"},{"name":"value0","nativeSrc":"186:6:41","nodeType":"YulIdentifier","src":"186:6:41"}],"functionName":{"name":"mstore","nativeSrc":"168:6:41","nodeType":"YulIdentifier","src":"168:6:41"},"nativeSrc":"168:25:41","nodeType":"YulFunctionCall","src":"168:25:41"},"nativeSrc":"168:25:41","nodeType":"YulExpressionStatement","src":"168:25:41"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_library_reversed","nativeSrc":"14:185:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"92:9:41","nodeType":"YulTypedName","src":"92:9:41","type":""},{"name":"value0","nativeSrc":"103:6:41","nodeType":"YulTypedName","src":"103:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"114:4:41","nodeType":"YulTypedName","src":"114:4:41","type":""}],"src":"14:185:41"}]},"contents":"{\n    { }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_library_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n}","id":41,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600436106046575f3560e01c806325093e1b14604a578063b29a8ff4146063578063ede3150214606a575b5f5ffd5b6051602481565b60405190815260200160405180910390f35b6051601481565b605160348156fea26469706673582212205bde5ac34618b02218d2f871b854fe97e045cf0ddbd86c12a9fcbc459307e4ff64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x46 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x25093E1B EQ PUSH1 0x4A JUMPI DUP1 PUSH4 0xB29A8FF4 EQ PUSH1 0x63 JUMPI DUP1 PUSH4 0xEDE31502 EQ PUSH1 0x6A JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x51 PUSH1 0x24 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x51 PUSH1 0x14 DUP2 JUMP JUMPDEST PUSH1 0x51 PUSH1 0x34 DUP2 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 JUMPDEST 0xDE GAS 0xC3 CHAINID XOR 0xB0 0x22 XOR 0xD2 0xF8 PUSH18 0xB854FE97E045CF0DDBD86C12A9FCBC459307 0xE4 SELFDESTRUCT PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"282:4714:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380:56;;434:2;380:56;;;;;168:25:41;;;156:2;141:18;380:56:2;;;;;;;314:60;;372:2;314:60;;442:50;;490:2;442:50;"},"methodIdentifiers":{"PAYMASTER_DATA_OFFSET()":"ede31502","PAYMASTER_POSTOP_GAS_OFFSET()":"25093e1b","PAYMASTER_VALIDATION_GAS_OFFSET()":"b29a8ff4"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"PAYMASTER_DATA_OFFSET\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PAYMASTER_POSTOP_GAS_OFFSET\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PAYMASTER_VALIDATION_GAS_OFFSET\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"Utility functions helpful when working with UserOperation structs.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/core/UserOperationLib.sol\":\"UserOperationLib\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/core/Helpers.sol\":{\"keccak256\":\"0x6247e011a6cb0b263b3aa098822977181674d91b62e5bdfe04c6e66f72da25d6\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://ca829a69b3fbc74fec8e140d42a2bf93bc3512609272f031c846470f61f0ab7e\",\"dweb:/ipfs/QmP3r3MBgAN39KeVB1rCGJWwcBcotNt26ALtAR54poQ1Jc\"]},\"@account-abstraction/contracts/core/UserOperationLib.sol\":{\"keccak256\":\"0x9d50ece985d35f82e33e5da417595c86fac10449e3d10895d08363d33aad454b\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://b1d11cc364c8bf7ed5388268c895b5ffed16e87dfbcb320ddeeba5e7974315dc\",\"dweb:/ipfs/QmYSpvjxEjweietQrYZagwQ52ipy7eXx4rwvnTzXKeGeMS\"]},\"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\":{\"keccak256\":\"0x1129b46381db68eddbc5cb49e50664667b66b03c480453858e7b25eabe444359\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://499a948aba60480dba6e25c763b8d918f1c246eb7a3302e04f493e080f3295be\",\"dweb:/ipfs/QmeRhhswf4NACcBKam2PyjpTP2ddSm648kah5kkQJsvwz3\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@account-abstraction/contracts/interfaces/IAccount.sol":{"IAccount":{"abi":[{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation","name":"userOp","type":"tuple"},{"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"internalType":"uint256","name":"missingAccountFunds","type":"uint256"}],"name":"validateUserOp","outputs":[{"internalType":"uint256","name":"validationData","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)":"19822f7c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation\",\"name\":\"userOp\",\"type\":\"tuple\"},{\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"missingAccountFunds\",\"type\":\"uint256\"}],\"name\":\"validateUserOp\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"validationData\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"details\":\"Must validate caller is the entryPoint.      Must validate the signature and nonce\",\"params\":{\"missingAccountFunds\":\"- Missing funds on the account's deposit in the entrypoint.                              This is the minimum amount to transfer to the sender(entryPoint) to be                              able to make the call. The excess is left as a deposit in the entrypoint                              for future calls. Can be withdrawn anytime using \\\"entryPoint.withdrawTo()\\\".                              In case there is a paymaster in the request (or the current deposit is high                              enough), this value will be zero.\",\"userOp\":\"- The operation that is about to be executed.\",\"userOpHash\":\"- Hash of the user's request data. can be used as the basis for signature.\"},\"returns\":{\"validationData\":\"      - Packaged ValidationData structure. use `_packValidationData` and                              `_unpackValidationData` to encode and decode.                              <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,                                 otherwise, an address of an \\\"authorizer\\\" contract.                              <6-byte> validUntil - Last timestamp this operation is valid. 0 for \\\"indefinite\\\"                              <6-byte> validAfter - First timestamp this operation is valid                                                    If an account doesn't use time-range, it is enough to                                                    return SIG_VALIDATION_FAILED value (1) for signature failure.                              Note that the validation code cannot use block.timestamp (or block.number) directly.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"notice\":\"Validate user's signature and nonce the entryPoint will make the call to the recipient only if this validation call returns successfully. signature failure should be reported by returning SIG_VALIDATION_FAILED (1). This allows making a \\\"simulation call\\\" without a valid signature Other failures (e.g. nonce mismatch, or invalid signature format) should still revert to signal failure.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/interfaces/IAccount.sol\":\"IAccount\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/interfaces/IAccount.sol\":{\"keccak256\":\"0x38710bec0cb20ff4ceef46a80475b5bdabc27b7efd2687fd473db68332f61b78\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://dea7a723e1ef852e8764e69914a345d2e8bc5e13facfc9d5c29d791cb4ab0020\",\"dweb:/ipfs/QmU8dYgyF4DBJXFqjwLAtnE3q8q259ChfoEk9a6wyhHzEP\"]},\"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\":{\"keccak256\":\"0x1129b46381db68eddbc5cb49e50664667b66b03c480453858e7b25eabe444359\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://499a948aba60480dba6e25c763b8d918f1c246eb7a3302e04f493e080f3295be\",\"dweb:/ipfs/QmeRhhswf4NACcBKam2PyjpTP2ddSm648kah5kkQJsvwz3\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@account-abstraction/contracts/interfaces/IAggregator.sol":{"IAggregator":{"abi":[{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation[]","name":"userOps","type":"tuple[]"}],"name":"aggregateSignatures","outputs":[{"internalType":"bytes","name":"aggregatedSignature","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation[]","name":"userOps","type":"tuple[]"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"validateSignatures","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation","name":"userOp","type":"tuple"}],"name":"validateUserOpSignature","outputs":[{"internalType":"bytes","name":"sigForUserOp","type":"bytes"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"aggregateSignatures((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[])":"ae574a43","validateSignatures((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],bytes)":"2dd81133","validateUserOpSignature((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes))":"062a422b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation[]\",\"name\":\"userOps\",\"type\":\"tuple[]\"}],\"name\":\"aggregateSignatures\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"aggregatedSignature\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation[]\",\"name\":\"userOps\",\"type\":\"tuple[]\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"validateSignatures\",\"outputs\":[],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation\",\"name\":\"userOp\",\"type\":\"tuple\"}],\"name\":\"validateUserOpSignature\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"sigForUserOp\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"aggregateSignatures((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[])\":{\"params\":{\"userOps\":\"- Array of UserOperations to collect the signatures from.\"},\"returns\":{\"aggregatedSignature\":\"- The aggregated signature.\"}},\"validateSignatures((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],bytes)\":{\"params\":{\"signature\":\"- The aggregated signature.\",\"userOps\":\"- Array of UserOperations to validate the signature for.\"}},\"validateUserOpSignature((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes))\":{\"params\":{\"userOp\":\"- The userOperation received from the user.\"},\"returns\":{\"sigForUserOp\":\"- The value to put into the signature field of the userOp when calling handleOps.                        (usually empty, unless account and aggregator support some kind of \\\"multisig\\\".\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"aggregateSignatures((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[])\":{\"notice\":\"Aggregate multiple signatures into a single value. This method is called off-chain to calculate the signature to pass with handleOps() bundler MAY use optimized custom code perform this aggregation.\"},\"validateSignatures((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],bytes)\":{\"notice\":\"Validate aggregated signature. Revert if the aggregated signature does not match the given list of operations.\"},\"validateUserOpSignature((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes))\":{\"notice\":\"Validate signature of a single userOp. This method should be called by bundler after EntryPointSimulation.simulateValidation() returns the aggregator this account uses. First it validates the signature over the userOp. Then it returns data to be used when creating the handleOps.\"}},\"notice\":\"Aggregated Signatures validator.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/interfaces/IAggregator.sol\":\"IAggregator\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/interfaces/IAggregator.sol\":{\"keccak256\":\"0xf100d6fcc0c3b450b13e979b6a42c628c292a1bc340eccc2e7796b80e3975588\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://192938b5b27234d35c8098a319e879363c79f750eea4d0e409dc889a8ce5b155\",\"dweb:/ipfs/QmURpaJFPqEtkKP2ngBsgZhAGN8wAWh5XQpYmCkiz4Urz5\"]},\"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\":{\"keccak256\":\"0x1129b46381db68eddbc5cb49e50664667b66b03c480453858e7b25eabe444359\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://499a948aba60480dba6e25c763b8d918f1c246eb7a3302e04f493e080f3295be\",\"dweb:/ipfs/QmeRhhswf4NACcBKam2PyjpTP2ddSm648kah5kkQJsvwz3\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@account-abstraction/contracts/interfaces/IEntryPoint.sol":{"IEntryPoint":{"abi":[{"inputs":[{"internalType":"bool","name":"success","type":"bool"},{"internalType":"bytes","name":"ret","type":"bytes"}],"name":"DelegateAndRevert","type":"error"},{"inputs":[{"internalType":"uint256","name":"opIndex","type":"uint256"},{"internalType":"string","name":"reason","type":"string"}],"name":"FailedOp","type":"error"},{"inputs":[{"internalType":"uint256","name":"opIndex","type":"uint256"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"inner","type":"bytes"}],"name":"FailedOpWithRevert","type":"error"},{"inputs":[{"internalType":"bytes","name":"returnData","type":"bytes"}],"name":"PostOpReverted","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"SenderAddressResult","type":"error"},{"inputs":[{"internalType":"address","name":"aggregator","type":"address"}],"name":"SignatureValidationFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"factory","type":"address"},{"indexed":false,"internalType":"address","name":"paymaster","type":"address"}],"name":"AccountDeployed","type":"event"},{"anonymous":false,"inputs":[],"name":"BeforeExecution","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalDeposit","type":"uint256"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"revertReason","type":"bytes"}],"name":"PostOpRevertReason","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"aggregator","type":"address"}],"name":"SignatureAggregatorChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalStaked","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unstakeDelaySec","type":"uint256"}],"name":"StakeLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"withdrawTime","type":"uint256"}],"name":"StakeUnlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"withdrawAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"StakeWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"paymaster","type":"address"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"bool","name":"success","type":"bool"},{"indexed":false,"internalType":"uint256","name":"actualGasCost","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"actualGasUsed","type":"uint256"}],"name":"UserOperationEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"UserOperationPrefundTooLow","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"revertReason","type":"bytes"}],"name":"UserOperationRevertReason","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"withdrawAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"uint32","name":"_unstakeDelaySec","type":"uint32"}],"name":"addStake","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateAndRevert","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"depositTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getDepositInfo","outputs":[{"components":[{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"bool","name":"staked","type":"bool"},{"internalType":"uint112","name":"stake","type":"uint112"},{"internalType":"uint32","name":"unstakeDelaySec","type":"uint32"},{"internalType":"uint48","name":"withdrawTime","type":"uint48"}],"internalType":"struct IStakeManager.DepositInfo","name":"info","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint192","name":"key","type":"uint192"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"initCode","type":"bytes"}],"name":"getSenderAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation","name":"userOp","type":"tuple"}],"name":"getUserOpHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation[]","name":"userOps","type":"tuple[]"},{"internalType":"contract IAggregator","name":"aggregator","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct IEntryPoint.UserOpsPerAggregator[]","name":"opsPerAggregator","type":"tuple[]"},{"internalType":"address payable","name":"beneficiary","type":"address"}],"name":"handleAggregatedOps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation[]","name":"ops","type":"tuple[]"},{"internalType":"address payable","name":"beneficiary","type":"address"}],"name":"handleOps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint192","name":"key","type":"uint192"}],"name":"incrementNonce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"}],"name":"withdrawStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"},{"internalType":"uint256","name":"withdrawAmount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"addStake(uint32)":"0396cb60","balanceOf(address)":"70a08231","delegateAndRevert(address,bytes)":"850aaf62","depositTo(address)":"b760faf9","getDepositInfo(address)":"5287ce12","getNonce(address,uint192)":"35567e1a","getSenderAddress(bytes)":"9b249f69","getUserOpHash((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes))":"22cdde4c","handleAggregatedOps(((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address,bytes)[],address)":"dbed18e0","handleOps((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address)":"765e827f","incrementNonce(uint192)":"0bd28e3b","unlockStake()":"bb9fe6bf","withdrawStake(address)":"c23a5cea","withdrawTo(address,uint256)":"205c2878"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"success\",\"type\":\"bool\"},{\"internalType\":\"bytes\",\"name\":\"ret\",\"type\":\"bytes\"}],\"name\":\"DelegateAndRevert\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"opIndex\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"FailedOp\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"opIndex\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"inner\",\"type\":\"bytes\"}],\"name\":\"FailedOpWithRevert\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"returnData\",\"type\":\"bytes\"}],\"name\":\"PostOpReverted\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"SenderAddressResult\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"aggregator\",\"type\":\"address\"}],\"name\":\"SignatureValidationFailed\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"factory\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"paymaster\",\"type\":\"address\"}],\"name\":\"AccountDeployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"BeforeExecution\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalDeposit\",\"type\":\"uint256\"}],\"name\":\"Deposited\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"revertReason\",\"type\":\"bytes\"}],\"name\":\"PostOpRevertReason\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"aggregator\",\"type\":\"address\"}],\"name\":\"SignatureAggregatorChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalStaked\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"unstakeDelaySec\",\"type\":\"uint256\"}],\"name\":\"StakeLocked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"withdrawTime\",\"type\":\"uint256\"}],\"name\":\"StakeUnlocked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"StakeWithdrawn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"paymaster\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"success\",\"type\":\"bool\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"actualGasCost\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"actualGasUsed\",\"type\":\"uint256\"}],\"name\":\"UserOperationEvent\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"}],\"name\":\"UserOperationPrefundTooLow\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"revertReason\",\"type\":\"bytes\"}],\"name\":\"UserOperationRevertReason\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Withdrawn\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_unstakeDelaySec\",\"type\":\"uint32\"}],\"name\":\"addStake\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"delegateAndRevert\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"depositTo\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getDepositInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"deposit\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"staked\",\"type\":\"bool\"},{\"internalType\":\"uint112\",\"name\":\"stake\",\"type\":\"uint112\"},{\"internalType\":\"uint32\",\"name\":\"unstakeDelaySec\",\"type\":\"uint32\"},{\"internalType\":\"uint48\",\"name\":\"withdrawTime\",\"type\":\"uint48\"}],\"internalType\":\"struct IStakeManager.DepositInfo\",\"name\":\"info\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint192\",\"name\":\"key\",\"type\":\"uint192\"}],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"}],\"name\":\"getSenderAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation\",\"name\":\"userOp\",\"type\":\"tuple\"}],\"name\":\"getUserOpHash\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation[]\",\"name\":\"userOps\",\"type\":\"tuple[]\"},{\"internalType\":\"contract IAggregator\",\"name\":\"aggregator\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct IEntryPoint.UserOpsPerAggregator[]\",\"name\":\"opsPerAggregator\",\"type\":\"tuple[]\"},{\"internalType\":\"address payable\",\"name\":\"beneficiary\",\"type\":\"address\"}],\"name\":\"handleAggregatedOps\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation[]\",\"name\":\"ops\",\"type\":\"tuple[]\"},{\"internalType\":\"address payable\",\"name\":\"beneficiary\",\"type\":\"address\"}],\"name\":\"handleOps\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint192\",\"name\":\"key\",\"type\":\"uint192\"}],\"name\":\"incrementNonce\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"unlockStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"withdrawAddress\",\"type\":\"address\"}],\"name\":\"withdrawStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"withdrawAmount\",\"type\":\"uint256\"}],\"name\":\"withdrawTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"errors\":{\"FailedOp(uint256,string)\":[{\"params\":{\"opIndex\":\"- Index into the array of ops to the failed one (in simulateValidation, this is always zero).\",\"reason\":\"- Revert reason. The string starts with a unique code \\\"AAmn\\\",                  where \\\"m\\\" is \\\"1\\\" for factory, \\\"2\\\" for account and \\\"3\\\" for paymaster issues,                  so a failure can be attributed to the correct entity.\"}}],\"FailedOpWithRevert(uint256,string,bytes)\":[{\"details\":\"note that inner is truncated to 2048 bytes\",\"params\":{\"inner\":\"- data from inner cought revert reason\",\"opIndex\":\"- Index into the array of ops to the failed one (in simulateValidation, this is always zero).\",\"reason\":\"- Revert reason. see FailedOp(uint256,string), above\"}}],\"SignatureValidationFailed(address)\":[{\"params\":{\"aggregator\":\"The aggregator that failed to verify the signature\"}}]},\"events\":{\"AccountDeployed(bytes32,address,address,address)\":{\"params\":{\"factory\":\"- The factory used to deploy this account (in the initCode)\",\"paymaster\":\"- The paymaster used by this UserOp\",\"sender\":\"- The account that is deployed\",\"userOpHash\":\"- The userOp that deployed this account. UserOperationEvent will follow.\"}},\"PostOpRevertReason(bytes32,address,uint256,bytes)\":{\"params\":{\"nonce\":\"- The nonce used in the request.\",\"revertReason\":\"- The return bytes from the (reverted) call to \\\"callData\\\".\",\"sender\":\"- The sender of this request.\",\"userOpHash\":\"- The request unique identifier.\"}},\"SignatureAggregatorChanged(address)\":{\"params\":{\"aggregator\":\"- The aggregator used for the following UserOperationEvents.\"}},\"UserOperationPrefundTooLow(bytes32,address,uint256)\":{\"params\":{\"nonce\":\"- The nonce used in the request.\",\"sender\":\"- The sender of this request.\",\"userOpHash\":\"- The request unique identifier.\"}},\"UserOperationRevertReason(bytes32,address,uint256,bytes)\":{\"params\":{\"nonce\":\"- The nonce used in the request.\",\"revertReason\":\"- The return bytes from the (reverted) call to \\\"callData\\\".\",\"sender\":\"- The sender of this request.\",\"userOpHash\":\"- The request unique identifier.\"}}},\"kind\":\"dev\",\"methods\":{\"addStake(uint32)\":{\"params\":{\"_unstakeDelaySec\":\"- The new lock duration before the deposit can be withdrawn.\"}},\"balanceOf(address)\":{\"params\":{\"account\":\"- The account to query.\"},\"returns\":{\"_0\":\"- The deposit (for gas payment) of the account.\"}},\"delegateAndRevert(address,bytes)\":{\"details\":\"calling this method, the EntryPoint will make a delegatecall to the given data, and report (via revert) the result.  The method always revert, so is only useful off-chain for dry run calls, in cases where state-override to replace  actual EntryPoint code is less convenient.\",\"params\":{\"data\":\"data to pass to target in a delegatecall\",\"target\":\"a target contract to make a delegatecall from entrypoint\"}},\"depositTo(address)\":{\"params\":{\"account\":\"- The account to add to.\"}},\"getDepositInfo(address)\":{\"params\":{\"account\":\"- The account to query.\"},\"returns\":{\"info\":\"  - Full deposit information of given account.\"}},\"getNonce(address,uint192)\":{\"params\":{\"key\":\"the high 192 bit of the nonce\",\"sender\":\"the account address\"},\"returns\":{\"nonce\":\"a full nonce to pass for next UserOp with this sender.\"}},\"getSenderAddress(bytes)\":{\"params\":{\"initCode\":\"- The constructor code to be passed into the UserOperation.\"}},\"getUserOpHash((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes))\":{\"params\":{\"userOp\":\"- The user operation to generate the request ID for.\"},\"returns\":{\"_0\":\"hash the hash of this UserOperation\"}},\"handleAggregatedOps(((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address,bytes)[],address)\":{\"params\":{\"beneficiary\":\"- The address to receive the fees.\",\"opsPerAggregator\":\"- The operations to execute, grouped by aggregator (or address(0) for no-aggregator accounts).\"}},\"handleOps((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address)\":{\"params\":{\"beneficiary\":\"- The address to receive the fees.\",\"ops\":\"- The operations to execute.\"}},\"withdrawStake(address)\":{\"params\":{\"withdrawAddress\":\"- The address to send withdrawn value.\"}},\"withdrawTo(address,uint256)\":{\"params\":{\"withdrawAddress\":\"- The address to send withdrawn value.\",\"withdrawAmount\":\"- The amount to withdraw.\"}}},\"version\":1},\"userdoc\":{\"errors\":{\"FailedOp(uint256,string)\":[{\"notice\":\"A custom revert error of handleOps, to identify the offending op. Should be caught in off-chain handleOps simulation and not happen on-chain. Useful for mitigating DoS attempts against batchers or for troubleshooting of factory/account/paymaster reverts. NOTE: If simulateValidation passes successfully, there should be no reason for handleOps to fail on it.\"}],\"FailedOpWithRevert(uint256,string,bytes)\":[{\"notice\":\"A custom revert error of handleOps, to report a revert by account or paymaster.\"}],\"SignatureValidationFailed(address)\":[{\"notice\":\"Error case when a signature aggregator fails to verify the aggregated signature it had created.\"}]},\"events\":{\"AccountDeployed(bytes32,address,address,address)\":{\"notice\":\"Account \\\"sender\\\" was deployed.\"},\"BeforeExecution()\":{\"notice\":\"An event emitted by handleOps(), before starting the execution loop. Any event emitted before this event, is part of the validation.\"},\"PostOpRevertReason(bytes32,address,uint256,bytes)\":{\"notice\":\"An event emitted if the UserOperation Paymaster's \\\"postOp\\\" call reverted with non-zero length.\"},\"SignatureAggregatorChanged(address)\":{\"notice\":\"Signature aggregator used by the following UserOperationEvents within this bundle.\"},\"UserOperationPrefundTooLow(bytes32,address,uint256)\":{\"notice\":\"UserOp consumed more than prefund. The UserOperation is reverted, and no refund is made.\"},\"UserOperationRevertReason(bytes32,address,uint256,bytes)\":{\"notice\":\"An event emitted if the UserOperation \\\"callData\\\" reverted with non-zero length.\"}},\"kind\":\"user\",\"methods\":{\"addStake(uint32)\":{\"notice\":\"Add to the account's stake - amount and delay any pending unstake is first cancelled.\"},\"balanceOf(address)\":{\"notice\":\"Get account balance.\"},\"delegateAndRevert(address,bytes)\":{\"notice\":\"Helper method for dry-run testing.\"},\"depositTo(address)\":{\"notice\":\"Add to the deposit of the given account.\"},\"getDepositInfo(address)\":{\"notice\":\"Get deposit info.\"},\"getNonce(address,uint192)\":{\"notice\":\"Return the next nonce for this sender. Within a given key, the nonce values are sequenced (starting with zero, and incremented by one on each userop) But UserOp with different keys can come with arbitrary order.\"},\"getSenderAddress(bytes)\":{\"notice\":\"Get counterfactual sender address. Calculate the sender contract address that will be generated by the initCode and salt in the UserOperation. This method always revert, and returns the address in SenderAddressResult error\"},\"getUserOpHash((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes))\":{\"notice\":\"Generate a request Id - unique identifier for this request. The request ID is a hash over the content of the userOp (except the signature), the entrypoint and the chainid.\"},\"handleAggregatedOps(((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address,bytes)[],address)\":{\"notice\":\"Execute a batch of UserOperation with Aggregators\"},\"handleOps((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address)\":{\"notice\":\"Execute a batch of UserOperations. No signature aggregator is used. If any account requires an aggregator (that is, it returned an aggregator when performing simulateValidation), then handleAggregatedOps() must be used instead.\"},\"incrementNonce(uint192)\":{\"notice\":\"Manually increment the nonce of the sender. This method is exposed just for completeness.. Account does NOT need to call it, neither during validation, nor elsewhere, as the EntryPoint will update the nonce regardless. Possible use-case is call it with various keys to \\\"initialize\\\" their nonces to one, so that future UserOperations will not pay extra for the first transaction with a given key.\"},\"unlockStake()\":{\"notice\":\"Attempt to unlock the stake. The value can be withdrawn (using withdrawStake) after the unstake delay.\"},\"withdrawStake(address)\":{\"notice\":\"Withdraw from the (unlocked) stake. Must first call unlockStake and wait for the unstakeDelay to pass.\"},\"withdrawTo(address,uint256)\":{\"notice\":\"Withdraw from the deposit.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/interfaces/IEntryPoint.sol\":\"IEntryPoint\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/interfaces/IAggregator.sol\":{\"keccak256\":\"0xf100d6fcc0c3b450b13e979b6a42c628c292a1bc340eccc2e7796b80e3975588\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://192938b5b27234d35c8098a319e879363c79f750eea4d0e409dc889a8ce5b155\",\"dweb:/ipfs/QmURpaJFPqEtkKP2ngBsgZhAGN8wAWh5XQpYmCkiz4Urz5\"]},\"@account-abstraction/contracts/interfaces/IEntryPoint.sol\":{\"keccak256\":\"0x1972a5fcb3a808b58c85af5741949ef6af11ab0debd3ae8c708171ae1ae0d0c4\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://baa9837ae73b9e2362a47d42d081d7c0f3d8e878e5edb381117d94a6968949c9\",\"dweb:/ipfs/QmUmo6FUE7fv5z1WzW1YFjxp8PqaeN2JrEee9au59w3Xhe\"]},\"@account-abstraction/contracts/interfaces/INonceManager.sol\":{\"keccak256\":\"0xd575af0f6ebbd5f0b2933307d44cd7b4e03a69f4b817a67db5409bd3c89aeecb\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://3b1e2dea9b05cfba9d13339ed16d96457dc861013cc4f3f35b71a80f82448db3\",\"dweb:/ipfs/QmVaGy5uGDMSiU2SzyokTjoHFyb39VVG5wtaM9KTnHyZSk\"]},\"@account-abstraction/contracts/interfaces/IStakeManager.sol\":{\"keccak256\":\"0xbe5ca9e7f254d031687419e7b96ef48c9c63e9398bbe992dc72ffc6dc14e0a04\",\"license\":\"GPL-3.0-only\",\"urls\":[\"bzz-raw://1fffec71c38627a26fabb423350148009579f092623fb02b471a12d973763a00\",\"dweb:/ipfs/QmRBi31QEYXHj3x1AnQ2jKa2eziZH1b9av396P3b4dw6bj\"]},\"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\":{\"keccak256\":\"0x1129b46381db68eddbc5cb49e50664667b66b03c480453858e7b25eabe444359\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://499a948aba60480dba6e25c763b8d918f1c246eb7a3302e04f493e080f3295be\",\"dweb:/ipfs/QmeRhhswf4NACcBKam2PyjpTP2ddSm648kah5kkQJsvwz3\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@account-abstraction/contracts/interfaces/INonceManager.sol":{"INonceManager":{"abi":[{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint192","name":"key","type":"uint192"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint192","name":"key","type":"uint192"}],"name":"incrementNonce","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"getNonce(address,uint192)":"35567e1a","incrementNonce(uint192)":"0bd28e3b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint192\",\"name\":\"key\",\"type\":\"uint192\"}],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint192\",\"name\":\"key\",\"type\":\"uint192\"}],\"name\":\"incrementNonce\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"getNonce(address,uint192)\":{\"params\":{\"key\":\"the high 192 bit of the nonce\",\"sender\":\"the account address\"},\"returns\":{\"nonce\":\"a full nonce to pass for next UserOp with this sender.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"getNonce(address,uint192)\":{\"notice\":\"Return the next nonce for this sender. Within a given key, the nonce values are sequenced (starting with zero, and incremented by one on each userop) But UserOp with different keys can come with arbitrary order.\"},\"incrementNonce(uint192)\":{\"notice\":\"Manually increment the nonce of the sender. This method is exposed just for completeness.. Account does NOT need to call it, neither during validation, nor elsewhere, as the EntryPoint will update the nonce regardless. Possible use-case is call it with various keys to \\\"initialize\\\" their nonces to one, so that future UserOperations will not pay extra for the first transaction with a given key.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/interfaces/INonceManager.sol\":\"INonceManager\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/interfaces/INonceManager.sol\":{\"keccak256\":\"0xd575af0f6ebbd5f0b2933307d44cd7b4e03a69f4b817a67db5409bd3c89aeecb\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://3b1e2dea9b05cfba9d13339ed16d96457dc861013cc4f3f35b71a80f82448db3\",\"dweb:/ipfs/QmVaGy5uGDMSiU2SzyokTjoHFyb39VVG5wtaM9KTnHyZSk\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@account-abstraction/contracts/interfaces/IStakeManager.sol":{"IStakeManager":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalDeposit","type":"uint256"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalStaked","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unstakeDelaySec","type":"uint256"}],"name":"StakeLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"withdrawTime","type":"uint256"}],"name":"StakeUnlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"withdrawAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"StakeWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"withdrawAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"uint32","name":"_unstakeDelaySec","type":"uint32"}],"name":"addStake","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"depositTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getDepositInfo","outputs":[{"components":[{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"bool","name":"staked","type":"bool"},{"internalType":"uint112","name":"stake","type":"uint112"},{"internalType":"uint32","name":"unstakeDelaySec","type":"uint32"},{"internalType":"uint48","name":"withdrawTime","type":"uint48"}],"internalType":"struct IStakeManager.DepositInfo","name":"info","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlockStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"}],"name":"withdrawStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"},{"internalType":"uint256","name":"withdrawAmount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"addStake(uint32)":"0396cb60","balanceOf(address)":"70a08231","depositTo(address)":"b760faf9","getDepositInfo(address)":"5287ce12","unlockStake()":"bb9fe6bf","withdrawStake(address)":"c23a5cea","withdrawTo(address,uint256)":"205c2878"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalDeposit\",\"type\":\"uint256\"}],\"name\":\"Deposited\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalStaked\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"unstakeDelaySec\",\"type\":\"uint256\"}],\"name\":\"StakeLocked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"withdrawTime\",\"type\":\"uint256\"}],\"name\":\"StakeUnlocked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"StakeWithdrawn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Withdrawn\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_unstakeDelaySec\",\"type\":\"uint32\"}],\"name\":\"addStake\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"depositTo\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getDepositInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"deposit\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"staked\",\"type\":\"bool\"},{\"internalType\":\"uint112\",\"name\":\"stake\",\"type\":\"uint112\"},{\"internalType\":\"uint32\",\"name\":\"unstakeDelaySec\",\"type\":\"uint32\"},{\"internalType\":\"uint48\",\"name\":\"withdrawTime\",\"type\":\"uint48\"}],\"internalType\":\"struct IStakeManager.DepositInfo\",\"name\":\"info\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"unlockStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"withdrawAddress\",\"type\":\"address\"}],\"name\":\"withdrawStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"withdrawAmount\",\"type\":\"uint256\"}],\"name\":\"withdrawTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"addStake(uint32)\":{\"params\":{\"_unstakeDelaySec\":\"- The new lock duration before the deposit can be withdrawn.\"}},\"balanceOf(address)\":{\"params\":{\"account\":\"- The account to query.\"},\"returns\":{\"_0\":\"- The deposit (for gas payment) of the account.\"}},\"depositTo(address)\":{\"params\":{\"account\":\"- The account to add to.\"}},\"getDepositInfo(address)\":{\"params\":{\"account\":\"- The account to query.\"},\"returns\":{\"info\":\"  - Full deposit information of given account.\"}},\"withdrawStake(address)\":{\"params\":{\"withdrawAddress\":\"- The address to send withdrawn value.\"}},\"withdrawTo(address,uint256)\":{\"params\":{\"withdrawAddress\":\"- The address to send withdrawn value.\",\"withdrawAmount\":\"- The amount to withdraw.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"addStake(uint32)\":{\"notice\":\"Add to the account's stake - amount and delay any pending unstake is first cancelled.\"},\"balanceOf(address)\":{\"notice\":\"Get account balance.\"},\"depositTo(address)\":{\"notice\":\"Add to the deposit of the given account.\"},\"getDepositInfo(address)\":{\"notice\":\"Get deposit info.\"},\"unlockStake()\":{\"notice\":\"Attempt to unlock the stake. The value can be withdrawn (using withdrawStake) after the unstake delay.\"},\"withdrawStake(address)\":{\"notice\":\"Withdraw from the (unlocked) stake. Must first call unlockStake and wait for the unstakeDelay to pass.\"},\"withdrawTo(address,uint256)\":{\"notice\":\"Withdraw from the deposit.\"}},\"notice\":\"Manage deposits and stakes. Deposit is just a balance used to pay for UserOperations (either by a paymaster or an account). Stake is value locked for at least \\\"unstakeDelay\\\" by the staked entity.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/interfaces/IStakeManager.sol\":\"IStakeManager\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/interfaces/IStakeManager.sol\":{\"keccak256\":\"0xbe5ca9e7f254d031687419e7b96ef48c9c63e9398bbe992dc72ffc6dc14e0a04\",\"license\":\"GPL-3.0-only\",\"urls\":[\"bzz-raw://1fffec71c38627a26fabb423350148009579f092623fb02b471a12d973763a00\",\"dweb:/ipfs/QmRBi31QEYXHj3x1AnQ2jKa2eziZH1b9av396P3b4dw6bj\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/access/AccessControl.sol":{"AccessControl":{"abi":[{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"DEFAULT_ADMIN_ROLE()":"a217fddf","getRoleAdmin(bytes32)":"248a9ca3","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f","supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DEFAULT_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module that allows children to implement role-based access control mechanisms. This is a lightweight version that doesn't allow enumerating role members except through off-chain means by accessing the contract event logs. Some applications may benefit from on-chain enumerability, for those cases see {AccessControlEnumerable}. Roles are referred to by their `bytes32` identifier. These should be exposed in the external API and be unique. The best way to achieve this is by using `public constant` hash digests: ```solidity bytes32 public constant MY_ROLE = keccak256(\\\"MY_ROLE\\\"); ``` Roles can be used to represent a set of permissions. To restrict access to a function call, use {hasRole}: ```solidity function foo() public {     require(hasRole(MY_ROLE, msg.sender));     ... } ``` Roles can be granted and revoked dynamically via the {grantRole} and {revokeRole} functions. Each role has an associated admin role, and only accounts that have a role's admin role can call {grantRole} and {revokeRole}. By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means that only accounts with this role will be able to grant or revoke other roles. More complex role relationships can be created by using {_setRoleAdmin}. WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to grant and revoke this role. Extra precautions should be taken to secure accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} to enforce additional security measures for this role.\",\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}]},\"events\":{\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted signaling this.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call:   - if using `revokeRole`, it is the admin role bearer   - if using `renounceRole`, it is the role bearer (i.e. `account`)\"}},\"kind\":\"dev\",\"methods\":{\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {_setRoleAdmin}.\"},\"grantRole(bytes32,address)\":{\"details\":\"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleGranted} event.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been revoked `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`. May emit a {RoleRevoked} event.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleRevoked} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/AccessControl.sol\":\"AccessControl\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80\",\"dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":1081,"contract":"@openzeppelin/contracts/access/AccessControl.sol:AccessControl","label":"_roles","offset":0,"slot":"0","type":"t_mapping(t_bytes32,t_struct(RoleData)1076_storage)"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_mapping(t_address,t_bool)":{"encoding":"mapping","key":"t_address","label":"mapping(address => bool)","numberOfBytes":"32","value":"t_bool"},"t_mapping(t_bytes32,t_struct(RoleData)1076_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct AccessControl.RoleData)","numberOfBytes":"32","value":"t_struct(RoleData)1076_storage"},"t_struct(RoleData)1076_storage":{"encoding":"inplace","label":"struct AccessControl.RoleData","members":[{"astId":1073,"contract":"@openzeppelin/contracts/access/AccessControl.sol:AccessControl","label":"hasRole","offset":0,"slot":"0","type":"t_mapping(t_address,t_bool)"},{"astId":1075,"contract":"@openzeppelin/contracts/access/AccessControl.sol:AccessControl","label":"adminRole","offset":0,"slot":"1","type":"t_bytes32"}],"numberOfBytes":"64"}}}}},"@openzeppelin/contracts/access/IAccessControl.sol":{"IAccessControl":{"abi":[{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"getRoleAdmin(bytes32)":"248a9ca3","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"External interface of AccessControl declared to support ERC-165 detection.\",\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}]},\"events\":{\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted signaling this.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call:   - if using `revokeRole`, it is the admin role bearer   - if using `renounceRole`, it is the role bearer (i.e. `account`)\"}},\"kind\":\"dev\",\"methods\":{\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {AccessControl-_setRoleAdmin}.\"},\"grantRole(bytes32,address)\":{\"details\":\"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":\"IAccessControl\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/access/manager/IAccessManaged.sol":{"IAccessManaged":{"abi":[{"inputs":[{"internalType":"address","name":"authority","type":"address"}],"name":"AccessManagedInvalidAuthority","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"uint32","name":"delay","type":"uint32"}],"name":"AccessManagedRequiredDelay","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"AccessManagedUnauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"authority","type":"address"}],"name":"AuthorityUpdated","type":"event"},{"inputs":[],"name":"authority","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isConsumingScheduledOp","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"setAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"authority()":"bf7e214f","isConsumingScheduledOp()":"8fb36037","setAuthority(address)":"7a9e5e4b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"authority\",\"type\":\"address\"}],\"name\":\"AccessManagedInvalidAuthority\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"}],\"name\":\"AccessManagedRequiredDelay\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"AccessManagedUnauthorized\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"authority\",\"type\":\"address\"}],\"name\":\"AuthorityUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"authority\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isConsumingScheduledOp\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"setAuthority\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"AuthorityUpdated(address)\":{\"details\":\"Authority that manages this contract was updated.\"}},\"kind\":\"dev\",\"methods\":{\"authority()\":{\"details\":\"Returns the current authority.\"},\"isConsumingScheduledOp()\":{\"details\":\"Returns true only in the context of a delayed restricted call, at the moment that the scheduled operation is being consumed. Prevents denial of service for delayed restricted calls in the case that the contract performs attacker controlled calls.\"},\"setAuthority(address)\":{\"details\":\"Transfers control to a new authority. The caller must be the current authority.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/manager/IAccessManaged.sol\":\"IAccessManaged\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/manager/IAccessManaged.sol\":{\"keccak256\":\"0xaba93d42cd70e1418782951132d97b31ddce5f50ad81090884b6d0e41caac9d6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b110886f83e3e98a11255a3b56790322e8d83e513304dde71299406685fc6694\",\"dweb:/ipfs/QmPwroS7MUUk1EmsvaJqU6aarhQ8ewJtJMg7xxmTsaxZEv\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/access/manager/IAccessManager.sol":{"IAccessManager":{"abi":[{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerAlreadyScheduled","type":"error"},{"inputs":[],"name":"AccessManagerBadConfirmation","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerExpired","type":"error"},{"inputs":[{"internalType":"address","name":"initialAdmin","type":"address"}],"name":"AccessManagerInvalidInitialAdmin","type":"error"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"AccessManagerLockedRole","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerNotReady","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerNotScheduled","type":"error"},{"inputs":[{"internalType":"address","name":"msgsender","type":"address"},{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"AccessManagerUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"AccessManagerUnauthorizedCall","type":"error"},{"inputs":[{"internalType":"address","name":"msgsender","type":"address"},{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"AccessManagerUnauthorizedCancel","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AccessManagerUnauthorizedConsume","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"}],"name":"OperationCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"}],"name":"OperationExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"schedule","type":"uint48"},{"indexed":false,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"OperationScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"uint64","name":"admin","type":"uint64"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"}],"name":"RoleGrantDelayChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"},{"indexed":false,"internalType":"bool","name":"newMember","type":"bool"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"uint64","name":"guardian","type":"uint64"}],"name":"RoleGuardianChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":false,"internalType":"string","name":"label","type":"string"}],"name":"RoleLabel","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"}],"name":"TargetAdminDelayUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bool","name":"closed","type":"bool"}],"name":"TargetClosed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes4","name":"selector","type":"bytes4"},{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"TargetFunctionRoleUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"canCall","outputs":[{"internalType":"bool","name":"allowed","type":"bool"},{"internalType":"uint32","name":"delay","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"cancel","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"consumeScheduledOp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"execute","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"expiration","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"getAccess","outputs":[{"internalType":"uint48","name":"since","type":"uint48"},{"internalType":"uint32","name":"currentDelay","type":"uint32"},{"internalType":"uint32","name":"pendingDelay","type":"uint32"},{"internalType":"uint48","name":"effect","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getNonce","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleAdmin","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleGrantDelay","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleGuardian","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getSchedule","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"getTargetAdminDelay","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"getTargetFunctionRole","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"executionDelay","type":"uint32"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"isMember","type":"bool"},{"internalType":"uint32","name":"executionDelay","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"hashOperation","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"isTargetClosed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"string","name":"label","type":"string"}],"name":"labelRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minSetback","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint48","name":"when","type":"uint48"}],"name":"schedule","outputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"},{"internalType":"uint32","name":"nonce","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint32","name":"newDelay","type":"uint32"}],"name":"setGrantDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint64","name":"admin","type":"uint64"}],"name":"setRoleAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint64","name":"guardian","type":"uint64"}],"name":"setRoleGuardian","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"newDelay","type":"uint32"}],"name":"setTargetAdminDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"closed","type":"bool"}],"name":"setTargetClosed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4[]","name":"selectors","type":"bytes4[]"},{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"setTargetFunctionRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"address","name":"newAuthority","type":"address"}],"name":"updateAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"canCall(address,address,bytes4)":"b7009613","cancel(address,address,bytes)":"d6bb62c6","consumeScheduledOp(address,bytes)":"94c7d7ee","execute(address,bytes)":"1cff79cd","expiration()":"4665096d","getAccess(uint64,address)":"3078f114","getNonce(bytes32)":"4136a33c","getRoleAdmin(uint64)":"530dd456","getRoleGrantDelay(uint64)":"12be8727","getRoleGuardian(uint64)":"0b0a93ba","getSchedule(bytes32)":"3adc277a","getTargetAdminDelay(address)":"4c1da1e2","getTargetFunctionRole(address,bytes4)":"6d5115bd","grantRole(uint64,address,uint32)":"25c471a0","hasRole(uint64,address)":"d1f856ee","hashOperation(address,address,bytes)":"abd9bd2a","isTargetClosed(address)":"a166aa89","labelRole(uint64,string)":"853551b8","minSetback()":"cc1b6c81","renounceRole(uint64,address)":"fe0776f5","revokeRole(uint64,address)":"b7d2b162","schedule(address,bytes,uint48)":"f801a698","setGrantDelay(uint64,uint32)":"a64d95ce","setRoleAdmin(uint64,uint64)":"30cae187","setRoleGuardian(uint64,uint64)":"52962952","setTargetAdminDelay(address,uint32)":"d22b5989","setTargetClosed(address,bool)":"167bd395","setTargetFunctionRole(address,bytes4[],uint64)":"08d6122d","updateAuthority(address,address)":"18ff183c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerAlreadyScheduled\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"AccessManagerBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerExpired\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"initialAdmin\",\"type\":\"address\"}],\"name\":\"AccessManagerInvalidInitialAdmin\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"AccessManagerLockedRole\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerNotReady\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerNotScheduled\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"msgsender\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"AccessManagerUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"AccessManagerUnauthorizedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"msgsender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"AccessManagerUnauthorizedCancel\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AccessManagerUnauthorizedConsume\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"name\":\"OperationCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"name\":\"OperationExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"schedule\",\"type\":\"uint48\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"OperationScheduled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"admin\",\"type\":\"uint64\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"}],\"name\":\"RoleGrantDelayChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"newMember\",\"type\":\"bool\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"guardian\",\"type\":\"uint64\"}],\"name\":\"RoleGuardianChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"label\",\"type\":\"string\"}],\"name\":\"RoleLabel\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"}],\"name\":\"TargetAdminDelayUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"closed\",\"type\":\"bool\"}],\"name\":\"TargetClosed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"TargetFunctionRoleUpdated\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"canCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"allowed\",\"type\":\"bool\"},{\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"consumeScheduledOp\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"expiration\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getAccess\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"},{\"internalType\":\"uint32\",\"name\":\"currentDelay\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"pendingDelay\",\"type\":\"uint32\"},{\"internalType\":\"uint48\",\"name\":\"effect\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleGrantDelay\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleGuardian\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getSchedule\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"getTargetAdminDelay\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"getTargetFunctionRole\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"executionDelay\",\"type\":\"uint32\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"isMember\",\"type\":\"bool\"},{\"internalType\":\"uint32\",\"name\":\"executionDelay\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"hashOperation\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"isTargetClosed\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"string\",\"name\":\"label\",\"type\":\"string\"}],\"name\":\"labelRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"minSetback\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"uint48\",\"name\":\"when\",\"type\":\"uint48\"}],\"name\":\"schedule\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"newDelay\",\"type\":\"uint32\"}],\"name\":\"setGrantDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"admin\",\"type\":\"uint64\"}],\"name\":\"setRoleAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"guardian\",\"type\":\"uint64\"}],\"name\":\"setRoleGuardian\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"newDelay\",\"type\":\"uint32\"}],\"name\":\"setTargetAdminDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"closed\",\"type\":\"bool\"}],\"name\":\"setTargetClosed\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4[]\",\"name\":\"selectors\",\"type\":\"bytes4[]\"},{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"setTargetFunctionRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"newAuthority\",\"type\":\"address\"}],\"name\":\"updateAuthority\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"OperationCanceled(bytes32,uint32)\":{\"details\":\"A scheduled operation was canceled.\"},\"OperationExecuted(bytes32,uint32)\":{\"details\":\"A scheduled operation was executed.\"},\"OperationScheduled(bytes32,uint32,uint48,address,address,bytes)\":{\"details\":\"A delayed operation was scheduled.\"},\"RoleAdminChanged(uint64,uint64)\":{\"details\":\"Role acting as admin over a given `roleId` is updated.\"},\"RoleGrantDelayChanged(uint64,uint32,uint48)\":{\"details\":\"Grant delay for a given `roleId` will be updated to `delay` when `since` is reached.\"},\"RoleGranted(uint64,address,uint32,uint48,bool)\":{\"details\":\"Emitted when `account` is granted `roleId`. NOTE: The meaning of the `since` argument depends on the `newMember` argument. If the role is granted to a new member, the `since` argument indicates when the account becomes a member of the role, otherwise it indicates the execution delay for this account and roleId is updated.\"},\"RoleGuardianChanged(uint64,uint64)\":{\"details\":\"Role acting as guardian over a given `roleId` is updated.\"},\"RoleLabel(uint64,string)\":{\"details\":\"Informational labelling for a roleId.\"},\"RoleRevoked(uint64,address)\":{\"details\":\"Emitted when `account` membership or `roleId` is revoked. Unlike granting, revoking is instantaneous.\"},\"TargetAdminDelayUpdated(address,uint32,uint48)\":{\"details\":\"Admin delay for a given `target` will be updated to `delay` when `since` is reached.\"},\"TargetClosed(address,bool)\":{\"details\":\"Target mode is updated (true = closed, false = open).\"},\"TargetFunctionRoleUpdated(address,bytes4,uint64)\":{\"details\":\"Role required to invoke `selector` on `target` is updated to `roleId`.\"}},\"kind\":\"dev\",\"methods\":{\"canCall(address,address,bytes4)\":{\"details\":\"Check if an address (`caller`) is authorised to call a given function on a given contract directly (with no restriction). Additionally, it returns the delay needed to perform the call indirectly through the {schedule} & {execute} workflow. This function is usually called by the targeted contract to control immediate execution of restricted functions. Therefore we only return true if the call can be performed without any delay. If the call is subject to a previously set delay (not zero), then the function should return false and the caller should schedule the operation for future execution. If `immediate` is true, the delay can be disregarded and the operation can be immediately executed, otherwise the operation can be executed if and only if delay is greater than 0. NOTE: The IAuthority interface does not include the `uint32` delay. This is an extension of that interface that is backward compatible. Some contracts may thus ignore the second return argument. In that case they will fail to identify the indirect workflow, and will consider calls that require a delay to be forbidden. NOTE: This function does not report the permissions of the admin functions in the manager itself. These are defined by the {AccessManager} documentation.\"},\"cancel(address,address,bytes)\":{\"details\":\"Cancel a scheduled (delayed) operation. Returns the nonce that identifies the previously scheduled operation that is cancelled. Requirements: - the caller must be the proposer, a guardian of the targeted function, or a global admin Emits a {OperationCanceled} event.\"},\"consumeScheduledOp(address,bytes)\":{\"details\":\"Consume a scheduled operation targeting the caller. If such an operation exists, mark it as consumed (emit an {OperationExecuted} event and clean the state). Otherwise, throw an error. This is useful for contract that want to enforce that calls targeting them were scheduled on the manager, with all the verifications that it implies. Emit a {OperationExecuted} event.\"},\"execute(address,bytes)\":{\"details\":\"Execute a function that is delay restricted, provided it was properly scheduled beforehand, or the execution delay is 0. Returns the nonce that identifies the previously scheduled operation that is executed, or 0 if the operation wasn't previously scheduled (if the caller doesn't have an execution delay). Emits an {OperationExecuted} event only if the call was scheduled and delayed.\"},\"expiration()\":{\"details\":\"Expiration delay for scheduled proposals. Defaults to 1 week. IMPORTANT: Avoid overriding the expiration with 0. Otherwise every contract proposal will be expired immediately, disabling any scheduling usage.\"},\"getAccess(uint64,address)\":{\"details\":\"Get the access details for a given account for a given role. These details include the timepoint at which membership becomes active, and the delay applied to all operation by this user that requires this permission level. Returns: [0] Timestamp at which the account membership becomes valid. 0 means role is not granted. [1] Current execution delay for the account. [2] Pending execution delay for the account. [3] Timestamp at which the pending execution delay will become active. 0 means no delay update is scheduled.\"},\"getNonce(bytes32)\":{\"details\":\"Return the nonce for the latest scheduled operation with a given id. Returns 0 if the operation has never been scheduled.\"},\"getRoleAdmin(uint64)\":{\"details\":\"Get the id of the role that acts as an admin for the given role. The admin permission is required to grant the role, revoke the role and update the execution delay to execute an operation that is restricted to this role.\"},\"getRoleGrantDelay(uint64)\":{\"details\":\"Get the role current grant delay. Its value may change at any point without an event emitted following a call to {setGrantDelay}. Changes to this value, including effect timepoint are notified in advance by the {RoleGrantDelayChanged} event.\"},\"getRoleGuardian(uint64)\":{\"details\":\"Get the role that acts as a guardian for a given role. The guardian permission allows canceling operations that have been scheduled under the role.\"},\"getSchedule(bytes32)\":{\"details\":\"Return the timepoint at which a scheduled operation will be ready for execution. This returns 0 if the operation is not yet scheduled, has expired, was executed, or was canceled.\"},\"getTargetAdminDelay(address)\":{\"details\":\"Get the admin delay for a target contract. Changes to contract configuration are subject to this delay.\"},\"getTargetFunctionRole(address,bytes4)\":{\"details\":\"Get the role required to call a function.\"},\"grantRole(uint64,address,uint32)\":{\"details\":\"Add `account` to `roleId`, or change its execution delay. This gives the account the authorization to call any function that is restricted to this role. An optional execution delay (in seconds) can be set. If that delay is non 0, the user is required to schedule any operation that is restricted to members of this role. The user will only be able to execute the operation after the delay has passed, before it has expired. During this period, admin and guardians can cancel the operation (see {cancel}). If the account has already been granted this role, the execution delay will be updated. This update is not immediate and follows the delay rules. For example, if a user currently has a delay of 3 hours, and this is called to reduce that delay to 1 hour, the new delay will take some time to take effect, enforcing that any operation executed in the 3 hours that follows this update was indeed scheduled before this update. Requirements: - the caller must be an admin for the role (see {getRoleAdmin}) - granted role must not be the `PUBLIC_ROLE` Emits a {RoleGranted} event.\"},\"hasRole(uint64,address)\":{\"details\":\"Check if a given account currently has the permission level corresponding to a given role. Note that this permission might be associated with an execution delay. {getAccess} can provide more details.\"},\"hashOperation(address,address,bytes)\":{\"details\":\"Hashing function for delayed operations.\"},\"isTargetClosed(address)\":{\"details\":\"Get whether the contract is closed disabling any access. Otherwise role permissions are applied. NOTE: When the manager itself is closed, admin functions are still accessible to avoid locking the contract.\"},\"labelRole(uint64,string)\":{\"details\":\"Give a label to a role, for improved role discoverability by UIs. Requirements: - the caller must be a global admin Emits a {RoleLabel} event.\"},\"minSetback()\":{\"details\":\"Minimum setback for all delay updates, with the exception of execution delays. It can be increased without setback (and reset via {revokeRole} in the case event of an accidental increase). Defaults to 5 days.\"},\"renounceRole(uint64,address)\":{\"details\":\"Renounce role permissions for the calling account with immediate effect. If the sender is not in the role this call has no effect. Requirements: - the caller must be `callerConfirmation`. Emits a {RoleRevoked} event if the account had the role.\"},\"revokeRole(uint64,address)\":{\"details\":\"Remove an account from a role, with immediate effect. If the account does not have the role, this call has no effect. Requirements: - the caller must be an admin for the role (see {getRoleAdmin}) - revoked role must not be the `PUBLIC_ROLE` Emits a {RoleRevoked} event if the account had the role.\"},\"schedule(address,bytes,uint48)\":{\"details\":\"Schedule a delayed operation for future execution, and return the operation identifier. It is possible to choose the timestamp at which the operation becomes executable as long as it satisfies the execution delays required for the caller. The special value zero will automatically set the earliest possible time. Returns the `operationId` that was scheduled. Since this value is a hash of the parameters, it can reoccur when the same parameters are used; if this is relevant, the returned `nonce` can be used to uniquely identify this scheduled operation from other occurrences of the same `operationId` in invocations of {execute} and {cancel}. Emits a {OperationScheduled} event. NOTE: It is not possible to concurrently schedule more than one operation with the same `target` and `data`. If this is necessary, a random byte can be appended to `data` to act as a salt that will be ignored by the target contract if it is using standard Solidity ABI encoding.\"},\"setGrantDelay(uint64,uint32)\":{\"details\":\"Update the delay for granting a `roleId`. Requirements: - the caller must be a global admin Emits a {RoleGrantDelayChanged} event.\"},\"setRoleAdmin(uint64,uint64)\":{\"details\":\"Change admin role for a given role. Requirements: - the caller must be a global admin Emits a {RoleAdminChanged} event\"},\"setRoleGuardian(uint64,uint64)\":{\"details\":\"Change guardian role for a given role. Requirements: - the caller must be a global admin Emits a {RoleGuardianChanged} event\"},\"setTargetAdminDelay(address,uint32)\":{\"details\":\"Set the delay for changing the configuration of a given target contract. Requirements: - the caller must be a global admin Emits a {TargetAdminDelayUpdated} event.\"},\"setTargetClosed(address,bool)\":{\"details\":\"Set the closed flag for a contract. Closing the manager itself won't disable access to admin methods to avoid locking the contract. Requirements: - the caller must be a global admin Emits a {TargetClosed} event.\"},\"setTargetFunctionRole(address,bytes4[],uint64)\":{\"details\":\"Set the role required to call functions identified by the `selectors` in the `target` contract. Requirements: - the caller must be a global admin Emits a {TargetFunctionRoleUpdated} event per selector.\"},\"updateAuthority(address,address)\":{\"details\":\"Changes the authority of a target managed by this manager instance. Requirements: - the caller must be a global admin\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":\"IAccessManager\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x9be2d08a326515805bc9cf6315b7953f8d1ebe88abf48c2d645fb1fa8211a0e2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e750d656e37efaefbb2300051ec2c4c725db266c5ff89bc985f7ecb8d214c4f4\",\"dweb:/ipfs/QmT51FsZes2n2nrLLh3d8YkBYKY43CtwScZxixcLGzL9r6\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"IERC1155Errors":{"abi":[{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC1155InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC1155InvalidApprover","type":"error"},{"inputs":[{"internalType":"uint256","name":"idsLength","type":"uint256"},{"internalType":"uint256","name":"valuesLength","type":"uint256"}],"name":"ERC1155InvalidArrayLength","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC1155InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC1155InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC1155InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC1155MissingApprovalForAll","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC1155InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"idsLength\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"valuesLength\",\"type\":\"uint256\"}],\"name\":\"ERC1155InvalidArrayLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC1155MissingApprovalForAll\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-1155 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.\",\"errors\":{\"ERC1155InsufficientBalance(address,uint256,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC1155InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC1155InvalidArrayLength(uint256,uint256)\":[{\"details\":\"Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. Used in batch transfers.\",\"params\":{\"idsLength\":\"Length of the array of token identifiers\",\"valuesLength\":\"Length of the array of token amounts\"}}],\"ERC1155InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC1155InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC1155InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC1155MissingApprovalForAll(address,address)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"owner\":\"Address of the current owner of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC1155Errors\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}},"IERC20Errors":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-20 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC20Errors\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}},"IERC721Errors":{"abi":[{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721IncorrectOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721InsufficientApproval\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC721InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721NonexistentToken\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-721 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.\",\"errors\":{\"ERC721IncorrectOwner(address,uint256,address)\":[{\"details\":\"Indicates an error related to the ownership over a particular token. Used in transfers.\",\"params\":{\"owner\":\"Address of the current owner of a token.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InsufficientApproval(address,uint256)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC721InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC721InvalidOwner(address)\":[{\"details\":\"Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. Used in balance queries.\",\"params\":{\"owner\":\"Address of the current owner of a token.\"}}],\"ERC721InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC721InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC721NonexistentToken(uint256)\":[{\"details\":\"Indicates a `tokenId` whose `owner` is the zero address.\",\"params\":{\"tokenId\":\"Identifier number of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC721Errors\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/metatx/ERC2771Context.sol":{"ERC2771Context":{"abi":[{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trustedForwarder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"isTrustedForwarder(address)":"572b6c05","trustedForwarder()":"7da0a877"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"forwarder\",\"type\":\"address\"}],\"name\":\"isTrustedForwarder\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"trustedForwarder\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Context variant with ERC-2771 support. WARNING: Avoid using this pattern in contracts that rely in a specific calldata length as they'll be affected by any forwarder whose `msg.data` is suffixed with the `from` address according to the ERC-2771 specification adding the address size in bytes (20) to the calldata size. An example of an unexpected behavior could be an unintended fallback (or another function) invocation while trying to invoke the `receive` function only accessible if `msg.data.length == 0`. WARNING: The usage of `delegatecall` in this contract is dangerous and may result in context corruption. Any forwarded request to this contract triggering a `delegatecall` to itself will result in an invalid {_msgSender} recovery.\",\"kind\":\"dev\",\"methods\":{\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"isTrustedForwarder(address)\":{\"details\":\"Indicates whether any particular address is the trusted forwarder.\"},\"trustedForwarder()\":{\"details\":\"Returns the address of the trusted forwarder.\"}},\"stateVariables\":{\"_trustedForwarder\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/metatx/ERC2771Context.sol\":\"ERC2771Context\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/metatx/ERC2771Context.sol\":{\"keccak256\":\"0x0b030a33274bde015419d99e54c9164f876a7d10eb590317b79b1d5e4ab23d99\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://68e5f96988198e8efd25ddef0d89750b4daebb7fd1204fa7f5eaccdfcb3398c8\",\"dweb:/ipfs/QmaM6nNkf9UmEtQraopuZamEWCdTWp7GvuN3pjMQrNCHxm\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ERC20":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. TIP: For a detailed writeup see our guide https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. The default value of {decimals} is 18. To change this, you should override this function so it returns a different value. We have followed general OpenZeppelin Contracts guidelines: functions revert instead returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC-20 applications.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"constructor\":{\"details\":\"Sets the values for {name} and {symbol}. All two of these values are immutable: they can only be set once during construction.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":\"ERC20\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x6ef9389a2c07bc40d8a7ba48914724ab2c108fac391ce12314f01321813e6368\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b7a5cb39b1e6df68f4dd9a5e76e853d745a74ffb3dfd7df4ae4d2ace6992a171\",\"dweb:/ipfs/QmPbzKR19rdM8X3PLQjsmHRepUKhvoZnedSR63XyGtXZib\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":2212,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":2218,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":2220,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":2222,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":2224,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"IERC20":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-20 standard as defined in the ERC.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets a `value` amount of tokens as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"IERC20Metadata":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for the optional metadata functions from the ERC-20 standard.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets a `value` amount of tokens as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"decimals()\":{\"details\":\"Returns the decimals places of the token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":\"IERC20Metadata\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Address.sol":{"Address":{"abi":[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220b14909cbe8c1510d49004908dfe9f8b4064f5305aaf77661f5a54e3d5276cf6664736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB1 BLOBHASH MULMOD 0xCB 0xE8 0xC1 MLOAD 0xD BLOBHASH STOP BLOBHASH ADDMOD 0xDF 0xE9 0xF8 0xB4 MOD 0x4F MSTORE8 SDIV 0xAA 0xF7 PUSH23 0x61F5A54E3D5276CF6664736F6C634300081C0033000000 ","sourceMap":"233:5815:19:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;233:5815:19;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220b14909cbe8c1510d49004908dfe9f8b4064f5305aaf77661f5a54e3d5276cf6664736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB1 BLOBHASH MULMOD 0xCB 0xE8 0xC1 MLOAD 0xD BLOBHASH STOP BLOBHASH ADDMOD 0xDF 0xE9 0xF8 0xB4 MOD 0x4F MSTORE8 SDIV 0xAA 0xF7 PUSH23 0x61F5A54E3D5276CF6664736F6C634300081C0033000000 ","sourceMap":"233:5815:19:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Address.sol\":\"Address\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Context.sol":{"Context":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Errors.sol":{"Errors":{"abi":[{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"FailedDeployment","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MissingPrecompile","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212209e4da8aa5333ac8d389d2e409b786095cfb5076699894c42d09ca4aa483d24be64736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP15 0x4D 0xA8 0xAA MSTORE8 CALLER 0xAC DUP14 CODESIZE SWAP14 0x2E BLOCKHASH SWAP12 PUSH25 0x6095CFB5076699894C42D09CA4AA483D24BE64736F6C634300 ADDMOD SHR STOP CALLER ","sourceMap":"411:484:21:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;411:484:21;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212209e4da8aa5333ac8d389d2e409b786095cfb5076699894c42d09ca4aa483d24be64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP15 0x4D 0xA8 0xAA MSTORE8 CALLER 0xAC DUP14 CODESIZE SWAP14 0x2E BLOCKHASH SWAP12 PUSH25 0x6095CFB5076699894C42D09CA4AA483D24BE64736F6C634300 ADDMOD SHR STOP CALLER ","sourceMap":"411:484:21:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedDeployment\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"MissingPrecompile\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Collection of common custom errors used in multiple contracts IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library. It is recommended to avoid relying on the error API for critical functionality. _Available since v5.1._\",\"errors\":{\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"FailedDeployment()\":[{\"details\":\"The deployment failed.\"}],\"InsufficientBalance(uint256,uint256)\":[{\"details\":\"The ETH balance of the account is not enough to perform the operation.\"}],\"MissingPrecompile(address)\":[{\"details\":\"A necessary precompile is missing.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Errors.sol\":\"Errors\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Multicall.sol":{"Multicall":{"abi":[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"multicall(bytes[])":"ac9650d8"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"multicall\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"results\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Provides a function to batch together multiple calls in a single external call. Consider any assumption about calldata validation performed by the sender may be violated if it's not especially careful about sending transactions invoking {multicall}. For example, a relay address that filters function selectors won't filter calls nested within a {multicall} operation. NOTE: Since 5.0.1 and 4.9.4, this contract identifies non-canonical contexts (i.e. `msg.sender` is not {_msgSender}). If a non-canonical context is identified, the following self `delegatecall` appends the last bytes of `msg.data` to the subcall. This makes it safe to use with {ERC2771Context}. Contexts that don't affect the resolution of {_msgSender} are not propagated to subcalls.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}]},\"kind\":\"dev\",\"methods\":{\"multicall(bytes[])\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Receives and executes a batch of function calls on this contract.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Multicall.sol\":\"Multicall\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Multicall.sol\":{\"keccak256\":\"0x8bbd8e639a2845206c2525c3e41892232a78372d952974bc1d2809b6879f6946\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c92f1b562e8603218d97751af56733d2f695f16da82389d53139d5e63496a45\",\"dweb:/ipfs/QmRiVMRTFjYBHDt5mN4E6TMotiE28XgWxEBPGewp5GTZ9X\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Panic.sol":{"Panic":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220cca8e34ba4a10a3072e457ee409c3e14973552ffad66786674cea596605f229764736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCC 0xA8 0xE3 0x4B LOG4 LOG1 EXP ADDRESS PUSH19 0xE457EE409C3E14973552FFAD66786674CEA596 PUSH1 0x5F 0x22 SWAP8 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"657:1315:23:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;657:1315:23;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220cca8e34ba4a10a3072e457ee409c3e14973552ffad66786674cea596605f229764736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCC 0xA8 0xE3 0x4B LOG4 LOG1 EXP ADDRESS PUSH19 0xE457EE409C3E14973552FFAD66786674CEA596 PUSH1 0x5F 0x22 SWAP8 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"657:1315:23:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Helper library for emitting standardized panic codes. ```solidity contract Example {      using Panic for uint256;      // Use any of the declared internal constants      function foo() { Panic.GENERIC.panic(); }      // Alternatively      function foo() { Panic.panic(Panic.GENERIC); } } ``` Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil]. _Available since v5.1._\",\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"ARRAY_OUT_OF_BOUNDS\":{\"details\":\"array out of bounds access\"},\"ASSERT\":{\"details\":\"used by the assert() builtin\"},\"DIVISION_BY_ZERO\":{\"details\":\"division or modulo by zero\"},\"EMPTY_ARRAY_POP\":{\"details\":\"empty array pop\"},\"ENUM_CONVERSION_ERROR\":{\"details\":\"enum conversion error\"},\"GENERIC\":{\"details\":\"generic / unspecified error\"},\"INVALID_INTERNAL_FUNCTION\":{\"details\":\"calling invalid internal function\"},\"RESOURCE_ERROR\":{\"details\":\"resource error (too large allocation or too large array)\"},\"STORAGE_ENCODING_ERROR\":{\"details\":\"invalid encoding in storage\"},\"UNDER_OVERFLOW\":{\"details\":\"arithmetic underflow or overflow\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Panic.sol\":\"Panic\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Strings.sol":{"Strings":{"abi":[{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"length","type":"uint256"}],"name":"StringsInsufficientHexLength","type":"error"},{"inputs":[],"name":"StringsInvalidAddressFormat","type":"error"},{"inputs":[],"name":"StringsInvalidChar","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122078e9399b9d77cd616993cf4f6af3d683914aba8a7a32ccc5b9e9e5232745f2b164736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH25 0xE9399B9D77CD616993CF4F6AF3D683914ABA8A7A32CCC5B9E9 0xE5 0x23 0x27 GASLIMIT CALLCODE 0xB1 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"297:16541:24:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;297:16541:24;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122078e9399b9d77cd616993cf4f6af3d683914aba8a7a32ccc5b9e9e5232745f2b164736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH25 0xE9399B9D77CD616993CF4F6AF3D683914ABA8A7A32CCC5B9E9 0xE5 0x23 0x27 GASLIMIT CALLCODE 0xB1 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"297:16541:24:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"StringsInsufficientHexLength\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"StringsInvalidAddressFormat\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"StringsInvalidChar\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"String operations.\",\"errors\":{\"StringsInsufficientHexLength(uint256,uint256)\":[{\"details\":\"The `value` string doesn't fit in the specified `length`.\"}],\"StringsInvalidAddressFormat()\":[{\"details\":\"The string being parsed is not a properly formatted address.\"}],\"StringsInvalidChar()\":[{\"details\":\"The string being parsed contains characters that are not in scope of the given base.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Strings.sol\":\"Strings\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"ECDSA":{"abi":[{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212202ef22f034d9ef93c3116f406f8a9011283259adf13a9fa2ff192c56c59d5435164736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2E CALLCODE 0x2F SUB 0x4D SWAP15 0xF9 EXTCODECOPY BALANCE AND DELEGATECALL MOD 0xF8 0xA9 ADD SLT DUP4 0x25 SWAP11 0xDF SGT 0xA9 STATICCALL 0x2F CALL SWAP3 0xC5 PUSH13 0x59D5435164736F6C634300081C STOP CALLER ","sourceMap":"344:7470:25:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;344:7470:25;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212202ef22f034d9ef93c3116f406f8a9011283259adf13a9fa2ff192c56c59d5435164736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2E CALLCODE 0x2F SUB 0x4D SWAP15 0xF9 EXTCODECOPY BALANCE AND DELEGATECALL MOD 0xF8 0xA9 ADD SLT DUP4 0x25 SWAP11 0xDF SGT 0xA9 STATICCALL 0x2F CALL SWAP3 0xC5 PUSH13 0x59D5435164736F6C634300081C STOP CALLER ","sourceMap":"344:7470:25:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Elliptic Curve Digital Signature Algorithm (ECDSA) operations. These functions can be used to verify that a message was signed by the holder of the private keys of a given address.\",\"errors\":{\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":\"ECDSA\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"MessageHashUtils":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220aaef879bd85b2512e70ddc7e9e27e29246bc6c6338bbfa9e2cae8d5f12aa47a364736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAA 0xEF DUP8 SWAP12 0xD8 JUMPDEST 0x25 SLT 0xE7 0xD 0xDC PUSH31 0x9E27E29246BC6C6338BBFA9E2CAE8D5F12AA47A364736F6C634300081C0033 ","sourceMap":"521:3181:26:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;521:3181:26;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220aaef879bd85b2512e70ddc7e9e27e29246bc6c6338bbfa9e2cae8d5f12aa47a364736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAA 0xEF DUP8 SWAP12 0xD8 JUMPDEST 0x25 SLT 0xE7 0xD 0xDC PUSH31 0x9E27E29246BC6C6338BBFA9E2CAE8D5F12AA47A364736F6C634300081C0033 ","sourceMap":"521:3181:26:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing. The library provides methods for generating a hash of a message that conforms to the https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712] specifications.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":\"MessageHashUtils\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"ERC165":{"abi":[{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC165} interface. Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check for the additional interface id that will be supported. For example: ```solidity function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); } ```\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":\"ERC165\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"IERC165":{"abi":[{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[ERC]. Implementers can declare support of contract interfaces, which can then be queried by others ({ERC165Checker}). For an implementation, see {ERC165}.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":\"IERC165\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/math/Math.sol":{"Math":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212200d61d7ffd6d6da702d16871c3bfa0a3845d7eed52dd13e969ca105d4cfe2c6b064736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD PUSH2 0xD7FF 0xD6 0xD6 0xDA PUSH17 0x2D16871C3BFA0A3845D7EED52DD13E969C LOG1 SDIV 0xD4 0xCF 0xE2 0xC6 0xB0 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"281:28026:29:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;281:28026:29;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212200d61d7ffd6d6da702d16871c3bfa0a3845d7eed52dd13e969ca105d4cfe2c6b064736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD PUSH2 0xD7FF 0xD6 0xD6 0xDA PUSH17 0x2D16871C3BFA0A3845D7EED52DD13E969C LOG1 SDIV 0xD4 0xCF 0xE2 0xC6 0xB0 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"281:28026:29:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Standard math utilities missing in the Solidity language.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/Math.sol\":\"Math\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"SafeCast":{"abi":[{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"int256","name":"value","type":"int256"}],"name":"SafeCastOverflowedIntDowncast","type":"error"},{"inputs":[{"internalType":"int256","name":"value","type":"int256"}],"name":"SafeCastOverflowedIntToUint","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintToInt","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212203f46a6ffb56326a473b5758acd55e32e99b937035796e94c7557579cea6fb9d464736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXTCODEHASH CHAINID 0xA6 SELFDESTRUCT 0xB5 PUSH4 0x26A473B5 PUSH22 0x8ACD55E32E99B937035796E94C7557579CEA6FB9D464 PUSH20 0x6F6C634300081C00330000000000000000000000 ","sourceMap":"769:34173:30:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;769:34173:30;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212203f46a6ffb56326a473b5758acd55e32e99b937035796e94c7557579cea6fb9d464736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXTCODEHASH CHAINID 0xA6 SELFDESTRUCT 0xB5 PUSH4 0x26A473B5 PUSH22 0x8ACD55E32E99B937035796E94C7557579CEA6FB9D464 PUSH20 0x6F6C634300081C00330000000000000000000000 ","sourceMap":"769:34173:30:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"int256\",\"name\":\"value\",\"type\":\"int256\"}],\"name\":\"SafeCastOverflowedIntDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"int256\",\"name\":\"value\",\"type\":\"int256\"}],\"name\":\"SafeCastOverflowedIntToUint\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintToInt\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow checks. Downcasting from uint256/int256 in Solidity does not revert on overflow. This can easily result in undesired exploitation or bugs, since developers usually assume that overflows raise errors. `SafeCast` restores this intuition by reverting the transaction when such an operation overflows. Using this library instead of the unchecked operations eliminates an entire class of bugs, so it's recommended to use it always.\",\"errors\":{\"SafeCastOverflowedIntDowncast(uint8,int256)\":[{\"details\":\"Value doesn't fit in an int of `bits` size.\"}],\"SafeCastOverflowedIntToUint(int256)\":[{\"details\":\"An int value doesn't fit in an uint of `bits` size.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"SafeCastOverflowedUintToInt(uint256)\":[{\"details\":\"An uint value doesn't fit in an int of `bits` size.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":\"SafeCast\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"SignedMath":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212208a55ed03b5bd2a413c0af052249d29c7f889c11b46b32ff454a480fb14df671c64736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP11 SSTORE 0xED SUB 0xB5 0xBD 0x2A COINBASE EXTCODECOPY EXP CREATE MSTORE 0x24 SWAP14 0x29 0xC7 0xF8 DUP10 0xC1 SHL CHAINID 0xB3 0x2F DELEGATECALL SLOAD LOG4 DUP1 0xFB EQ 0xDF PUSH8 0x1C64736F6C634300 ADDMOD SHR STOP CALLER ","sourceMap":"258:2354:31:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;258:2354:31;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212208a55ed03b5bd2a413c0af052249d29c7f889c11b46b32ff454a480fb14df671c64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP11 SSTORE 0xED SUB 0xB5 0xBD 0x2A COINBASE EXTCODECOPY EXP CREATE MSTORE 0x24 SWAP14 0x29 0xC7 0xF8 DUP10 0xC1 SHL CHAINID 0xB3 0x2F DELEGATECALL SLOAD LOG4 DUP1 0xFB EQ 0xDF PUSH8 0x1C64736F6C634300 ADDMOD SHR STOP CALLER ","sourceMap":"258:2354:31:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Standard signed math utilities missing in the Solidity language.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/SignedMath.sol\":\"SignedMath\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/types/Time.sol":{"Time":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220cd9ccc12b48650d6671ff012e1a23d34a0fc464d74d5dc050e4fe3726890afb464736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCD SWAP13 0xCC SLT 0xB4 DUP7 POP 0xD6 PUSH8 0x1FF012E1A23D34A0 0xFC CHAINID 0x4D PUSH21 0xD5DC050E4FE3726890AFB464736F6C634300081C00 CALLER ","sourceMap":"640:4515:32:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;640:4515:32;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220cd9ccc12b48650d6671ff012e1a23d34a0fc464d74d5dc050e4fe3726890afb464736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCD SWAP13 0xCC SLT 0xB4 DUP7 POP 0xD6 PUSH8 0x1FF012E1A23D34A0 0xFC CHAINID 0x4D PUSH21 0xD5DC050E4FE3726890AFB464736F6C634300081C00 CALLER ","sourceMap":"640:4515:32:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"This library provides helpers for manipulating time-related objects. It uses the following types: - `uint48` for timepoints - `uint32` for durations While the library doesn't provide specific types for timepoints and duration, it does provide: - a `Delay` type to represent duration that can be programmed to change value automatically at a given point - additional helper functions\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/types/Time.sol\":\"Time\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/AccessControlAccount.sol":{"AccessControlAccount":{"abi":[{"inputs":[{"internalType":"contract IEntryPoint","name":"anEntryPoint","type":"address"},{"internalType":"address","name":"admin","type":"address"},{"internalType":"address[]","name":"executors","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"RequiredEntryPointOrExecutor","type":"error"},{"inputs":[],"name":"WrongArrayLength","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXECUTOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAW_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addDeposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"entryPoint","outputs":[{"internalType":"contract IEntryPoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dest","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"func","type":"bytes"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"dest","type":"address[]"},{"internalType":"uint256[]","name":"value","type":"uint256[]"},{"internalType":"bytes[]","name":"func","type":"bytes[]"}],"name":"executeBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation","name":"userOp","type":"tuple"},{"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"internalType":"uint256","name":"missingAccountFunds","type":"uint256"}],"name":"validateUserOp","outputs":[{"internalType":"uint256","name":"validationData","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawDepositTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"@_8803":{"entryPoint":null,"id":8803,"parameterSlots":3,"returnSlots":0},"@_grantRole_1311":{"entryPoint":172,"id":1311,"parameterSlots":2,"returnSlots":1},"@_msgSender_3080":{"entryPoint":null,"id":3080,"parameterSlots":0,"returnSlots":1},"@hasRole_1135":{"entryPoint":null,"id":1135,"parameterSlots":2,"returnSlots":1},"abi_decode_address_fromMemory":{"entryPoint":364,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_contract$_IEntryPoint_$909t_addresst_array$_t_address_$dyn_memory_ptr_fromMemory":{"entryPoint":400,"id":null,"parameterSlots":2,"returnSlots":3},"panic_error_0x32":{"entryPoint":642,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":380,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_contract_IEntryPoint":{"entryPoint":341,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:2027:41","nodeType":"YulBlock","src":"0:2027:41","statements":[{"nativeSrc":"6:3:41","nodeType":"YulBlock","src":"6:3:41","statements":[]},{"body":{"nativeSrc":"72:86:41","nodeType":"YulBlock","src":"72:86:41","statements":[{"body":{"nativeSrc":"136:16:41","nodeType":"YulBlock","src":"136:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"145:1:41","nodeType":"YulLiteral","src":"145:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"148:1:41","nodeType":"YulLiteral","src":"148:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"138:6:41","nodeType":"YulIdentifier","src":"138:6:41"},"nativeSrc":"138:12:41","nodeType":"YulFunctionCall","src":"138:12:41"},"nativeSrc":"138:12:41","nodeType":"YulExpressionStatement","src":"138:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"95:5:41","nodeType":"YulIdentifier","src":"95:5:41"},{"arguments":[{"name":"value","nativeSrc":"106:5:41","nodeType":"YulIdentifier","src":"106:5:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"121:3:41","nodeType":"YulLiteral","src":"121:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"126:1:41","nodeType":"YulLiteral","src":"126:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"117:3:41","nodeType":"YulIdentifier","src":"117:3:41"},"nativeSrc":"117:11:41","nodeType":"YulFunctionCall","src":"117:11:41"},{"kind":"number","nativeSrc":"130:1:41","nodeType":"YulLiteral","src":"130:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"113:3:41","nodeType":"YulIdentifier","src":"113:3:41"},"nativeSrc":"113:19:41","nodeType":"YulFunctionCall","src":"113:19:41"}],"functionName":{"name":"and","nativeSrc":"102:3:41","nodeType":"YulIdentifier","src":"102:3:41"},"nativeSrc":"102:31:41","nodeType":"YulFunctionCall","src":"102:31:41"}],"functionName":{"name":"eq","nativeSrc":"92:2:41","nodeType":"YulIdentifier","src":"92:2:41"},"nativeSrc":"92:42:41","nodeType":"YulFunctionCall","src":"92:42:41"}],"functionName":{"name":"iszero","nativeSrc":"85:6:41","nodeType":"YulIdentifier","src":"85:6:41"},"nativeSrc":"85:50:41","nodeType":"YulFunctionCall","src":"85:50:41"},"nativeSrc":"82:70:41","nodeType":"YulIf","src":"82:70:41"}]},"name":"validator_revert_contract_IEntryPoint","nativeSrc":"14:144:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"61:5:41","nodeType":"YulTypedName","src":"61:5:41","type":""}],"src":"14:144:41"},{"body":{"nativeSrc":"223:91:41","nodeType":"YulBlock","src":"223:91:41","statements":[{"nativeSrc":"233:22:41","nodeType":"YulAssignment","src":"233:22:41","value":{"arguments":[{"name":"offset","nativeSrc":"248:6:41","nodeType":"YulIdentifier","src":"248:6:41"}],"functionName":{"name":"mload","nativeSrc":"242:5:41","nodeType":"YulIdentifier","src":"242:5:41"},"nativeSrc":"242:13:41","nodeType":"YulFunctionCall","src":"242:13:41"},"variableNames":[{"name":"value","nativeSrc":"233:5:41","nodeType":"YulIdentifier","src":"233:5:41"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"302:5:41","nodeType":"YulIdentifier","src":"302:5:41"}],"functionName":{"name":"validator_revert_contract_IEntryPoint","nativeSrc":"264:37:41","nodeType":"YulIdentifier","src":"264:37:41"},"nativeSrc":"264:44:41","nodeType":"YulFunctionCall","src":"264:44:41"},"nativeSrc":"264:44:41","nodeType":"YulExpressionStatement","src":"264:44:41"}]},"name":"abi_decode_address_fromMemory","nativeSrc":"163:151:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"202:6:41","nodeType":"YulTypedName","src":"202:6:41","type":""}],"returnVariables":[{"name":"value","nativeSrc":"213:5:41","nodeType":"YulTypedName","src":"213:5:41","type":""}],"src":"163:151:41"},{"body":{"nativeSrc":"351:95:41","nodeType":"YulBlock","src":"351:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"368:1:41","nodeType":"YulLiteral","src":"368:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"375:3:41","nodeType":"YulLiteral","src":"375:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"380:10:41","nodeType":"YulLiteral","src":"380:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"371:3:41","nodeType":"YulIdentifier","src":"371:3:41"},"nativeSrc":"371:20:41","nodeType":"YulFunctionCall","src":"371:20:41"}],"functionName":{"name":"mstore","nativeSrc":"361:6:41","nodeType":"YulIdentifier","src":"361:6:41"},"nativeSrc":"361:31:41","nodeType":"YulFunctionCall","src":"361:31:41"},"nativeSrc":"361:31:41","nodeType":"YulExpressionStatement","src":"361:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"408:1:41","nodeType":"YulLiteral","src":"408:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"411:4:41","nodeType":"YulLiteral","src":"411:4:41","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"401:6:41","nodeType":"YulIdentifier","src":"401:6:41"},"nativeSrc":"401:15:41","nodeType":"YulFunctionCall","src":"401:15:41"},"nativeSrc":"401:15:41","nodeType":"YulExpressionStatement","src":"401:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"432:1:41","nodeType":"YulLiteral","src":"432:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"435:4:41","nodeType":"YulLiteral","src":"435:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"425:6:41","nodeType":"YulIdentifier","src":"425:6:41"},"nativeSrc":"425:15:41","nodeType":"YulFunctionCall","src":"425:15:41"},"nativeSrc":"425:15:41","nodeType":"YulExpressionStatement","src":"425:15:41"}]},"name":"panic_error_0x41","nativeSrc":"319:127:41","nodeType":"YulFunctionDefinition","src":"319:127:41"},{"body":{"nativeSrc":"610:1283:41","nodeType":"YulBlock","src":"610:1283:41","statements":[{"body":{"nativeSrc":"656:16:41","nodeType":"YulBlock","src":"656:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"665:1:41","nodeType":"YulLiteral","src":"665:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"668:1:41","nodeType":"YulLiteral","src":"668:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"658:6:41","nodeType":"YulIdentifier","src":"658:6:41"},"nativeSrc":"658:12:41","nodeType":"YulFunctionCall","src":"658:12:41"},"nativeSrc":"658:12:41","nodeType":"YulExpressionStatement","src":"658:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"631:7:41","nodeType":"YulIdentifier","src":"631:7:41"},{"name":"headStart","nativeSrc":"640:9:41","nodeType":"YulIdentifier","src":"640:9:41"}],"functionName":{"name":"sub","nativeSrc":"627:3:41","nodeType":"YulIdentifier","src":"627:3:41"},"nativeSrc":"627:23:41","nodeType":"YulFunctionCall","src":"627:23:41"},{"kind":"number","nativeSrc":"652:2:41","nodeType":"YulLiteral","src":"652:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"623:3:41","nodeType":"YulIdentifier","src":"623:3:41"},"nativeSrc":"623:32:41","nodeType":"YulFunctionCall","src":"623:32:41"},"nativeSrc":"620:52:41","nodeType":"YulIf","src":"620:52:41"},{"nativeSrc":"681:29:41","nodeType":"YulVariableDeclaration","src":"681:29:41","value":{"arguments":[{"name":"headStart","nativeSrc":"700:9:41","nodeType":"YulIdentifier","src":"700:9:41"}],"functionName":{"name":"mload","nativeSrc":"694:5:41","nodeType":"YulIdentifier","src":"694:5:41"},"nativeSrc":"694:16:41","nodeType":"YulFunctionCall","src":"694:16:41"},"variables":[{"name":"value","nativeSrc":"685:5:41","nodeType":"YulTypedName","src":"685:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"757:5:41","nodeType":"YulIdentifier","src":"757:5:41"}],"functionName":{"name":"validator_revert_contract_IEntryPoint","nativeSrc":"719:37:41","nodeType":"YulIdentifier","src":"719:37:41"},"nativeSrc":"719:44:41","nodeType":"YulFunctionCall","src":"719:44:41"},"nativeSrc":"719:44:41","nodeType":"YulExpressionStatement","src":"719:44:41"},{"nativeSrc":"772:15:41","nodeType":"YulAssignment","src":"772:15:41","value":{"name":"value","nativeSrc":"782:5:41","nodeType":"YulIdentifier","src":"782:5:41"},"variableNames":[{"name":"value0","nativeSrc":"772:6:41","nodeType":"YulIdentifier","src":"772:6:41"}]},{"nativeSrc":"796:40:41","nodeType":"YulVariableDeclaration","src":"796:40:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"821:9:41","nodeType":"YulIdentifier","src":"821:9:41"},{"kind":"number","nativeSrc":"832:2:41","nodeType":"YulLiteral","src":"832:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"817:3:41","nodeType":"YulIdentifier","src":"817:3:41"},"nativeSrc":"817:18:41","nodeType":"YulFunctionCall","src":"817:18:41"}],"functionName":{"name":"mload","nativeSrc":"811:5:41","nodeType":"YulIdentifier","src":"811:5:41"},"nativeSrc":"811:25:41","nodeType":"YulFunctionCall","src":"811:25:41"},"variables":[{"name":"value_1","nativeSrc":"800:7:41","nodeType":"YulTypedName","src":"800:7:41","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"883:7:41","nodeType":"YulIdentifier","src":"883:7:41"}],"functionName":{"name":"validator_revert_contract_IEntryPoint","nativeSrc":"845:37:41","nodeType":"YulIdentifier","src":"845:37:41"},"nativeSrc":"845:46:41","nodeType":"YulFunctionCall","src":"845:46:41"},"nativeSrc":"845:46:41","nodeType":"YulExpressionStatement","src":"845:46:41"},{"nativeSrc":"900:17:41","nodeType":"YulAssignment","src":"900:17:41","value":{"name":"value_1","nativeSrc":"910:7:41","nodeType":"YulIdentifier","src":"910:7:41"},"variableNames":[{"name":"value1","nativeSrc":"900:6:41","nodeType":"YulIdentifier","src":"900:6:41"}]},{"nativeSrc":"926:39:41","nodeType":"YulVariableDeclaration","src":"926:39:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"950:9:41","nodeType":"YulIdentifier","src":"950:9:41"},{"kind":"number","nativeSrc":"961:2:41","nodeType":"YulLiteral","src":"961:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"946:3:41","nodeType":"YulIdentifier","src":"946:3:41"},"nativeSrc":"946:18:41","nodeType":"YulFunctionCall","src":"946:18:41"}],"functionName":{"name":"mload","nativeSrc":"940:5:41","nodeType":"YulIdentifier","src":"940:5:41"},"nativeSrc":"940:25:41","nodeType":"YulFunctionCall","src":"940:25:41"},"variables":[{"name":"offset","nativeSrc":"930:6:41","nodeType":"YulTypedName","src":"930:6:41","type":""}]},{"body":{"nativeSrc":"1008:16:41","nodeType":"YulBlock","src":"1008:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1017:1:41","nodeType":"YulLiteral","src":"1017:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1020:1:41","nodeType":"YulLiteral","src":"1020:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1010:6:41","nodeType":"YulIdentifier","src":"1010:6:41"},"nativeSrc":"1010:12:41","nodeType":"YulFunctionCall","src":"1010:12:41"},"nativeSrc":"1010:12:41","nodeType":"YulExpressionStatement","src":"1010:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"980:6:41","nodeType":"YulIdentifier","src":"980:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"996:2:41","nodeType":"YulLiteral","src":"996:2:41","type":"","value":"64"},{"kind":"number","nativeSrc":"1000:1:41","nodeType":"YulLiteral","src":"1000:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"992:3:41","nodeType":"YulIdentifier","src":"992:3:41"},"nativeSrc":"992:10:41","nodeType":"YulFunctionCall","src":"992:10:41"},{"kind":"number","nativeSrc":"1004:1:41","nodeType":"YulLiteral","src":"1004:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"988:3:41","nodeType":"YulIdentifier","src":"988:3:41"},"nativeSrc":"988:18:41","nodeType":"YulFunctionCall","src":"988:18:41"}],"functionName":{"name":"gt","nativeSrc":"977:2:41","nodeType":"YulIdentifier","src":"977:2:41"},"nativeSrc":"977:30:41","nodeType":"YulFunctionCall","src":"977:30:41"},"nativeSrc":"974:50:41","nodeType":"YulIf","src":"974:50:41"},{"nativeSrc":"1033:32:41","nodeType":"YulVariableDeclaration","src":"1033:32:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1047:9:41","nodeType":"YulIdentifier","src":"1047:9:41"},{"name":"offset","nativeSrc":"1058:6:41","nodeType":"YulIdentifier","src":"1058:6:41"}],"functionName":{"name":"add","nativeSrc":"1043:3:41","nodeType":"YulIdentifier","src":"1043:3:41"},"nativeSrc":"1043:22:41","nodeType":"YulFunctionCall","src":"1043:22:41"},"variables":[{"name":"_1","nativeSrc":"1037:2:41","nodeType":"YulTypedName","src":"1037:2:41","type":""}]},{"body":{"nativeSrc":"1113:16:41","nodeType":"YulBlock","src":"1113:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1122:1:41","nodeType":"YulLiteral","src":"1122:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1125:1:41","nodeType":"YulLiteral","src":"1125:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1115:6:41","nodeType":"YulIdentifier","src":"1115:6:41"},"nativeSrc":"1115:12:41","nodeType":"YulFunctionCall","src":"1115:12:41"},"nativeSrc":"1115:12:41","nodeType":"YulExpressionStatement","src":"1115:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1092:2:41","nodeType":"YulIdentifier","src":"1092:2:41"},{"kind":"number","nativeSrc":"1096:4:41","nodeType":"YulLiteral","src":"1096:4:41","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"1088:3:41","nodeType":"YulIdentifier","src":"1088:3:41"},"nativeSrc":"1088:13:41","nodeType":"YulFunctionCall","src":"1088:13:41"},{"name":"dataEnd","nativeSrc":"1103:7:41","nodeType":"YulIdentifier","src":"1103:7:41"}],"functionName":{"name":"slt","nativeSrc":"1084:3:41","nodeType":"YulIdentifier","src":"1084:3:41"},"nativeSrc":"1084:27:41","nodeType":"YulFunctionCall","src":"1084:27:41"}],"functionName":{"name":"iszero","nativeSrc":"1077:6:41","nodeType":"YulIdentifier","src":"1077:6:41"},"nativeSrc":"1077:35:41","nodeType":"YulFunctionCall","src":"1077:35:41"},"nativeSrc":"1074:55:41","nodeType":"YulIf","src":"1074:55:41"},{"nativeSrc":"1138:23:41","nodeType":"YulVariableDeclaration","src":"1138:23:41","value":{"arguments":[{"name":"_1","nativeSrc":"1158:2:41","nodeType":"YulIdentifier","src":"1158:2:41"}],"functionName":{"name":"mload","nativeSrc":"1152:5:41","nodeType":"YulIdentifier","src":"1152:5:41"},"nativeSrc":"1152:9:41","nodeType":"YulFunctionCall","src":"1152:9:41"},"variables":[{"name":"length","nativeSrc":"1142:6:41","nodeType":"YulTypedName","src":"1142:6:41","type":""}]},{"body":{"nativeSrc":"1204:22:41","nodeType":"YulBlock","src":"1204:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1206:16:41","nodeType":"YulIdentifier","src":"1206:16:41"},"nativeSrc":"1206:18:41","nodeType":"YulFunctionCall","src":"1206:18:41"},"nativeSrc":"1206:18:41","nodeType":"YulExpressionStatement","src":"1206:18:41"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1176:6:41","nodeType":"YulIdentifier","src":"1176:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1192:2:41","nodeType":"YulLiteral","src":"1192:2:41","type":"","value":"64"},{"kind":"number","nativeSrc":"1196:1:41","nodeType":"YulLiteral","src":"1196:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1188:3:41","nodeType":"YulIdentifier","src":"1188:3:41"},"nativeSrc":"1188:10:41","nodeType":"YulFunctionCall","src":"1188:10:41"},{"kind":"number","nativeSrc":"1200:1:41","nodeType":"YulLiteral","src":"1200:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1184:3:41","nodeType":"YulIdentifier","src":"1184:3:41"},"nativeSrc":"1184:18:41","nodeType":"YulFunctionCall","src":"1184:18:41"}],"functionName":{"name":"gt","nativeSrc":"1173:2:41","nodeType":"YulIdentifier","src":"1173:2:41"},"nativeSrc":"1173:30:41","nodeType":"YulFunctionCall","src":"1173:30:41"},"nativeSrc":"1170:56:41","nodeType":"YulIf","src":"1170:56:41"},{"nativeSrc":"1235:24:41","nodeType":"YulVariableDeclaration","src":"1235:24:41","value":{"arguments":[{"kind":"number","nativeSrc":"1249:1:41","nodeType":"YulLiteral","src":"1249:1:41","type":"","value":"5"},{"name":"length","nativeSrc":"1252:6:41","nodeType":"YulIdentifier","src":"1252:6:41"}],"functionName":{"name":"shl","nativeSrc":"1245:3:41","nodeType":"YulIdentifier","src":"1245:3:41"},"nativeSrc":"1245:14:41","nodeType":"YulFunctionCall","src":"1245:14:41"},"variables":[{"name":"_2","nativeSrc":"1239:2:41","nodeType":"YulTypedName","src":"1239:2:41","type":""}]},{"nativeSrc":"1268:23:41","nodeType":"YulVariableDeclaration","src":"1268:23:41","value":{"arguments":[{"kind":"number","nativeSrc":"1288:2:41","nodeType":"YulLiteral","src":"1288:2:41","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1282:5:41","nodeType":"YulIdentifier","src":"1282:5:41"},"nativeSrc":"1282:9:41","nodeType":"YulFunctionCall","src":"1282:9:41"},"variables":[{"name":"memPtr","nativeSrc":"1272:6:41","nodeType":"YulTypedName","src":"1272:6:41","type":""}]},{"nativeSrc":"1300:56:41","nodeType":"YulVariableDeclaration","src":"1300:56:41","value":{"arguments":[{"name":"memPtr","nativeSrc":"1322:6:41","nodeType":"YulIdentifier","src":"1322:6:41"},{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"1338:2:41","nodeType":"YulIdentifier","src":"1338:2:41"},{"kind":"number","nativeSrc":"1342:2:41","nodeType":"YulLiteral","src":"1342:2:41","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"1334:3:41","nodeType":"YulIdentifier","src":"1334:3:41"},"nativeSrc":"1334:11:41","nodeType":"YulFunctionCall","src":"1334:11:41"},{"arguments":[{"kind":"number","nativeSrc":"1351:2:41","nodeType":"YulLiteral","src":"1351:2:41","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1347:3:41","nodeType":"YulIdentifier","src":"1347:3:41"},"nativeSrc":"1347:7:41","nodeType":"YulFunctionCall","src":"1347:7:41"}],"functionName":{"name":"and","nativeSrc":"1330:3:41","nodeType":"YulIdentifier","src":"1330:3:41"},"nativeSrc":"1330:25:41","nodeType":"YulFunctionCall","src":"1330:25:41"}],"functionName":{"name":"add","nativeSrc":"1318:3:41","nodeType":"YulIdentifier","src":"1318:3:41"},"nativeSrc":"1318:38:41","nodeType":"YulFunctionCall","src":"1318:38:41"},"variables":[{"name":"newFreePtr","nativeSrc":"1304:10:41","nodeType":"YulTypedName","src":"1304:10:41","type":""}]},{"body":{"nativeSrc":"1431:22:41","nodeType":"YulBlock","src":"1431:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1433:16:41","nodeType":"YulIdentifier","src":"1433:16:41"},"nativeSrc":"1433:18:41","nodeType":"YulFunctionCall","src":"1433:18:41"},"nativeSrc":"1433:18:41","nodeType":"YulExpressionStatement","src":"1433:18:41"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"1374:10:41","nodeType":"YulIdentifier","src":"1374:10:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1394:2:41","nodeType":"YulLiteral","src":"1394:2:41","type":"","value":"64"},{"kind":"number","nativeSrc":"1398:1:41","nodeType":"YulLiteral","src":"1398:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1390:3:41","nodeType":"YulIdentifier","src":"1390:3:41"},"nativeSrc":"1390:10:41","nodeType":"YulFunctionCall","src":"1390:10:41"},{"kind":"number","nativeSrc":"1402:1:41","nodeType":"YulLiteral","src":"1402:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1386:3:41","nodeType":"YulIdentifier","src":"1386:3:41"},"nativeSrc":"1386:18:41","nodeType":"YulFunctionCall","src":"1386:18:41"}],"functionName":{"name":"gt","nativeSrc":"1371:2:41","nodeType":"YulIdentifier","src":"1371:2:41"},"nativeSrc":"1371:34:41","nodeType":"YulFunctionCall","src":"1371:34:41"},{"arguments":[{"name":"newFreePtr","nativeSrc":"1410:10:41","nodeType":"YulIdentifier","src":"1410:10:41"},{"name":"memPtr","nativeSrc":"1422:6:41","nodeType":"YulIdentifier","src":"1422:6:41"}],"functionName":{"name":"lt","nativeSrc":"1407:2:41","nodeType":"YulIdentifier","src":"1407:2:41"},"nativeSrc":"1407:22:41","nodeType":"YulFunctionCall","src":"1407:22:41"}],"functionName":{"name":"or","nativeSrc":"1368:2:41","nodeType":"YulIdentifier","src":"1368:2:41"},"nativeSrc":"1368:62:41","nodeType":"YulFunctionCall","src":"1368:62:41"},"nativeSrc":"1365:88:41","nodeType":"YulIf","src":"1365:88:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1469:2:41","nodeType":"YulLiteral","src":"1469:2:41","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"1473:10:41","nodeType":"YulIdentifier","src":"1473:10:41"}],"functionName":{"name":"mstore","nativeSrc":"1462:6:41","nodeType":"YulIdentifier","src":"1462:6:41"},"nativeSrc":"1462:22:41","nodeType":"YulFunctionCall","src":"1462:22:41"},"nativeSrc":"1462:22:41","nodeType":"YulExpressionStatement","src":"1462:22:41"},{"nativeSrc":"1493:17:41","nodeType":"YulVariableDeclaration","src":"1493:17:41","value":{"name":"memPtr","nativeSrc":"1504:6:41","nodeType":"YulIdentifier","src":"1504:6:41"},"variables":[{"name":"dst","nativeSrc":"1497:3:41","nodeType":"YulTypedName","src":"1497:3:41","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"1526:6:41","nodeType":"YulIdentifier","src":"1526:6:41"},{"name":"length","nativeSrc":"1534:6:41","nodeType":"YulIdentifier","src":"1534:6:41"}],"functionName":{"name":"mstore","nativeSrc":"1519:6:41","nodeType":"YulIdentifier","src":"1519:6:41"},"nativeSrc":"1519:22:41","nodeType":"YulFunctionCall","src":"1519:22:41"},"nativeSrc":"1519:22:41","nodeType":"YulExpressionStatement","src":"1519:22:41"},{"nativeSrc":"1550:22:41","nodeType":"YulAssignment","src":"1550:22:41","value":{"arguments":[{"name":"memPtr","nativeSrc":"1561:6:41","nodeType":"YulIdentifier","src":"1561:6:41"},{"kind":"number","nativeSrc":"1569:2:41","nodeType":"YulLiteral","src":"1569:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1557:3:41","nodeType":"YulIdentifier","src":"1557:3:41"},"nativeSrc":"1557:15:41","nodeType":"YulFunctionCall","src":"1557:15:41"},"variableNames":[{"name":"dst","nativeSrc":"1550:3:41","nodeType":"YulIdentifier","src":"1550:3:41"}]},{"nativeSrc":"1581:34:41","nodeType":"YulVariableDeclaration","src":"1581:34:41","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1603:2:41","nodeType":"YulIdentifier","src":"1603:2:41"},{"name":"_2","nativeSrc":"1607:2:41","nodeType":"YulIdentifier","src":"1607:2:41"}],"functionName":{"name":"add","nativeSrc":"1599:3:41","nodeType":"YulIdentifier","src":"1599:3:41"},"nativeSrc":"1599:11:41","nodeType":"YulFunctionCall","src":"1599:11:41"},{"kind":"number","nativeSrc":"1612:2:41","nodeType":"YulLiteral","src":"1612:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1595:3:41","nodeType":"YulIdentifier","src":"1595:3:41"},"nativeSrc":"1595:20:41","nodeType":"YulFunctionCall","src":"1595:20:41"},"variables":[{"name":"srcEnd","nativeSrc":"1585:6:41","nodeType":"YulTypedName","src":"1585:6:41","type":""}]},{"body":{"nativeSrc":"1647:16:41","nodeType":"YulBlock","src":"1647:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1656:1:41","nodeType":"YulLiteral","src":"1656:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1659:1:41","nodeType":"YulLiteral","src":"1659:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1649:6:41","nodeType":"YulIdentifier","src":"1649:6:41"},"nativeSrc":"1649:12:41","nodeType":"YulFunctionCall","src":"1649:12:41"},"nativeSrc":"1649:12:41","nodeType":"YulExpressionStatement","src":"1649:12:41"}]},"condition":{"arguments":[{"name":"srcEnd","nativeSrc":"1630:6:41","nodeType":"YulIdentifier","src":"1630:6:41"},{"name":"dataEnd","nativeSrc":"1638:7:41","nodeType":"YulIdentifier","src":"1638:7:41"}],"functionName":{"name":"gt","nativeSrc":"1627:2:41","nodeType":"YulIdentifier","src":"1627:2:41"},"nativeSrc":"1627:19:41","nodeType":"YulFunctionCall","src":"1627:19:41"},"nativeSrc":"1624:39:41","nodeType":"YulIf","src":"1624:39:41"},{"nativeSrc":"1672:22:41","nodeType":"YulVariableDeclaration","src":"1672:22:41","value":{"arguments":[{"name":"_1","nativeSrc":"1687:2:41","nodeType":"YulIdentifier","src":"1687:2:41"},{"kind":"number","nativeSrc":"1691:2:41","nodeType":"YulLiteral","src":"1691:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1683:3:41","nodeType":"YulIdentifier","src":"1683:3:41"},"nativeSrc":"1683:11:41","nodeType":"YulFunctionCall","src":"1683:11:41"},"variables":[{"name":"src","nativeSrc":"1676:3:41","nodeType":"YulTypedName","src":"1676:3:41","type":""}]},{"body":{"nativeSrc":"1759:103:41","nodeType":"YulBlock","src":"1759:103:41","statements":[{"expression":{"arguments":[{"name":"dst","nativeSrc":"1780:3:41","nodeType":"YulIdentifier","src":"1780:3:41"},{"arguments":[{"name":"src","nativeSrc":"1815:3:41","nodeType":"YulIdentifier","src":"1815:3:41"}],"functionName":{"name":"abi_decode_address_fromMemory","nativeSrc":"1785:29:41","nodeType":"YulIdentifier","src":"1785:29:41"},"nativeSrc":"1785:34:41","nodeType":"YulFunctionCall","src":"1785:34:41"}],"functionName":{"name":"mstore","nativeSrc":"1773:6:41","nodeType":"YulIdentifier","src":"1773:6:41"},"nativeSrc":"1773:47:41","nodeType":"YulFunctionCall","src":"1773:47:41"},"nativeSrc":"1773:47:41","nodeType":"YulExpressionStatement","src":"1773:47:41"},{"nativeSrc":"1833:19:41","nodeType":"YulAssignment","src":"1833:19:41","value":{"arguments":[{"name":"dst","nativeSrc":"1844:3:41","nodeType":"YulIdentifier","src":"1844:3:41"},{"kind":"number","nativeSrc":"1849:2:41","nodeType":"YulLiteral","src":"1849:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1840:3:41","nodeType":"YulIdentifier","src":"1840:3:41"},"nativeSrc":"1840:12:41","nodeType":"YulFunctionCall","src":"1840:12:41"},"variableNames":[{"name":"dst","nativeSrc":"1833:3:41","nodeType":"YulIdentifier","src":"1833:3:41"}]}]},"condition":{"arguments":[{"name":"src","nativeSrc":"1714:3:41","nodeType":"YulIdentifier","src":"1714:3:41"},{"name":"srcEnd","nativeSrc":"1719:6:41","nodeType":"YulIdentifier","src":"1719:6:41"}],"functionName":{"name":"lt","nativeSrc":"1711:2:41","nodeType":"YulIdentifier","src":"1711:2:41"},"nativeSrc":"1711:15:41","nodeType":"YulFunctionCall","src":"1711:15:41"},"nativeSrc":"1703:159:41","nodeType":"YulForLoop","post":{"nativeSrc":"1727:23:41","nodeType":"YulBlock","src":"1727:23:41","statements":[{"nativeSrc":"1729:19:41","nodeType":"YulAssignment","src":"1729:19:41","value":{"arguments":[{"name":"src","nativeSrc":"1740:3:41","nodeType":"YulIdentifier","src":"1740:3:41"},{"kind":"number","nativeSrc":"1745:2:41","nodeType":"YulLiteral","src":"1745:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1736:3:41","nodeType":"YulIdentifier","src":"1736:3:41"},"nativeSrc":"1736:12:41","nodeType":"YulFunctionCall","src":"1736:12:41"},"variableNames":[{"name":"src","nativeSrc":"1729:3:41","nodeType":"YulIdentifier","src":"1729:3:41"}]}]},"pre":{"nativeSrc":"1707:3:41","nodeType":"YulBlock","src":"1707:3:41","statements":[]},"src":"1703:159:41"},{"nativeSrc":"1871:16:41","nodeType":"YulAssignment","src":"1871:16:41","value":{"name":"memPtr","nativeSrc":"1881:6:41","nodeType":"YulIdentifier","src":"1881:6:41"},"variableNames":[{"name":"value2","nativeSrc":"1871:6:41","nodeType":"YulIdentifier","src":"1871:6:41"}]}]},"name":"abi_decode_tuple_t_contract$_IEntryPoint_$909t_addresst_array$_t_address_$dyn_memory_ptr_fromMemory","nativeSrc":"451:1442:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"560:9:41","nodeType":"YulTypedName","src":"560:9:41","type":""},{"name":"dataEnd","nativeSrc":"571:7:41","nodeType":"YulTypedName","src":"571:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"583:6:41","nodeType":"YulTypedName","src":"583:6:41","type":""},{"name":"value1","nativeSrc":"591:6:41","nodeType":"YulTypedName","src":"591:6:41","type":""},{"name":"value2","nativeSrc":"599:6:41","nodeType":"YulTypedName","src":"599:6:41","type":""}],"src":"451:1442:41"},{"body":{"nativeSrc":"1930:95:41","nodeType":"YulBlock","src":"1930:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1947:1:41","nodeType":"YulLiteral","src":"1947:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1954:3:41","nodeType":"YulLiteral","src":"1954:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"1959:10:41","nodeType":"YulLiteral","src":"1959:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1950:3:41","nodeType":"YulIdentifier","src":"1950:3:41"},"nativeSrc":"1950:20:41","nodeType":"YulFunctionCall","src":"1950:20:41"}],"functionName":{"name":"mstore","nativeSrc":"1940:6:41","nodeType":"YulIdentifier","src":"1940:6:41"},"nativeSrc":"1940:31:41","nodeType":"YulFunctionCall","src":"1940:31:41"},"nativeSrc":"1940:31:41","nodeType":"YulExpressionStatement","src":"1940:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1987:1:41","nodeType":"YulLiteral","src":"1987:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"1990:4:41","nodeType":"YulLiteral","src":"1990:4:41","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"1980:6:41","nodeType":"YulIdentifier","src":"1980:6:41"},"nativeSrc":"1980:15:41","nodeType":"YulFunctionCall","src":"1980:15:41"},"nativeSrc":"1980:15:41","nodeType":"YulExpressionStatement","src":"1980:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2011:1:41","nodeType":"YulLiteral","src":"2011:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2014:4:41","nodeType":"YulLiteral","src":"2014:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"2004:6:41","nodeType":"YulIdentifier","src":"2004:6:41"},"nativeSrc":"2004:15:41","nodeType":"YulFunctionCall","src":"2004:15:41"},"nativeSrc":"2004:15:41","nodeType":"YulExpressionStatement","src":"2004:15:41"}]},"name":"panic_error_0x32","nativeSrc":"1898:127:41","nodeType":"YulFunctionDefinition","src":"1898:127:41"}]},"contents":"{\n    { }\n    function validator_revert_contract_IEntryPoint(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_address_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_contract_IEntryPoint(value)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function abi_decode_tuple_t_contract$_IEntryPoint_$909t_addresst_array$_t_address_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IEntryPoint(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IEntryPoint(value_1)\n        value1 := value_1\n        let offset := mload(add(headStart, 64))\n        if gt(offset, sub(shl(64, 1), 1)) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := mload(_1)\n        if gt(length, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        let _2 := shl(5, length)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(_2, 63), not(31)))\n        if or(gt(newFreePtr, sub(shl(64, 1), 1)), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        let dst := memPtr\n        mstore(memPtr, length)\n        dst := add(memPtr, 32)\n        let srcEnd := add(add(_1, _2), 32)\n        if gt(srcEnd, dataEnd) { revert(0, 0) }\n        let src := add(_1, 32)\n        for { } lt(src, srcEnd) { src := add(src, 32) }\n        {\n            mstore(dst, abi_decode_address_fromMemory(src))\n            dst := add(dst, 32)\n        }\n        value2 := memPtr\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n}","id":41,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60a060405234801561000f575f5ffd5b506040516114e03803806114e083398101604081905261002e91610190565b6001600160a01b0383166080526100455f836100ac565b505f5b81518110156100a35761009a7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6383838151811061008757610087610282565b60200260200101516100ac60201b60201c565b50600101610048565b50505050610296565b5f828152602081815260408083206001600160a01b038516845290915281205460ff1661014c575f838152602081815260408083206001600160a01b03861684529091529020805460ff191660011790556101043390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600161014f565b505f5b92915050565b6001600160a01b0381168114610169575f5ffd5b50565b805161017781610155565b919050565b634e487b7160e01b5f52604160045260245ffd5b5f5f5f606084860312156101a2575f5ffd5b83516101ad81610155565b60208501519093506101be81610155565b60408501519092506001600160401b038111156101d9575f5ffd5b8401601f810186136101e9575f5ffd5b80516001600160401b038111156102025761020261017c565b604051600582901b90603f8201601f191681016001600160401b03811182821017156102305761023061017c565b60405291825260208184018101929081018984111561024d575f5ffd5b6020850194505b83851015610273576102658561016c565b815260209485019401610254565b50809450505050509250925092565b634e487b7160e01b5f52603260045260245ffd5b6080516112086102d85f395f818161029b015281816105c3015281816106690152818161077301528181610808015281816108660152610af201526112085ff3fe6080604052600436106100fd575f3560e01c80634d44560d11610092578063b61d27f611610062578063b61d27f6146102c5578063c399ec88146102e4578063d087d288146102f8578063d547741f1461030c578063e02023a11461032b575f5ffd5b80634d44560d1461023157806391d1485414610250578063a217fddf1461026f578063b0d691fe14610282575f5ffd5b80632f2ff15d116100cd5780632f2ff15d146101ca57806336568abe146101eb57806347e1da2a1461020a5780634a58db1914610229575f5ffd5b806301ffc9a71461010857806307bd02651461013c57806319822f7c1461017d578063248a9ca31461019c575f5ffd5b3661010457005b5f5ffd5b348015610113575f5ffd5b50610127610122366004610eba565b61035e565b60405190151581526020015b60405180910390f35b348015610147575f5ffd5b5061016f7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b604051908152602001610133565b348015610188575f5ffd5b5061016f610197366004610ee1565b610394565b3480156101a7575f5ffd5b5061016f6101b6366004610f30565b5f9081526020819052604090206001015490565b3480156101d5575f5ffd5b506101e96101e4366004610f5b565b6103b9565b005b3480156101f6575f5ffd5b506101e9610205366004610f5b565b6103e3565b348015610215575f5ffd5b506101e9610224366004610fd1565b61041b565b6101e96105c1565b34801561023c575f5ffd5b506101e961024b366004611070565b61063d565b34801561025b575f5ffd5b5061012761026a366004610f5b565b6106e3565b34801561027a575f5ffd5b5061016f5f81565b34801561028d575f5ffd5b506040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602001610133565b3480156102d0575f5ffd5b506101e96102df36600461109a565b61070b565b3480156102ef575f5ffd5b5061016f610754565b348015610303575f5ffd5b5061016f6107e2565b348015610317575f5ffd5b506101e9610326366004610f5b565b610837565b348015610336575f5ffd5b5061016f7f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec81565b5f6001600160e01b03198216637965db0b60e01b148061038e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b5f61039d61085b565b6103a784846108da565b90506103b28261099c565b9392505050565b5f828152602081905260409020600101546103d3816109e5565b6103dd83836109ef565b50505050565b6001600160a01b038116331461040c5760405163334bd91960e11b815260040160405180910390fd5b6104168282610a7e565b505050565b610423610ae7565b848114158061043c5750821580159061043c5750828114155b1561045a5760405163150072e360e11b815260040160405180910390fd5b5f839003610502575f5b858110156104fc576104f38787838181106104815761048161111f565b90506020020160208101906104969190611133565b8484848181106104a8576104a861111f565b90506020028101906104ba919061114e565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201829052509250610b67915050565b50600101610464565b506105b9565b5f5b858110156105b7576105ae8787838181106105215761052161111f565b90506020020160208101906105369190611133565b8484848181106105485761054861111f565b905060200281019061055a919061114e565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152508a92508991508690508181106105a2576105a261111f565b90506020020135610b67565b50600101610504565b505b505050505050565b7f000000000000000000000000000000000000000000000000000000000000000060405163b760faf960e01b81523060048201526001600160a01b03919091169063b760faf99034906024015f604051808303818588803b158015610624575f5ffd5b505af1158015610636573d5f5f3e3d5ffd5b5050505050565b7f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec610667816109e5565b7f000000000000000000000000000000000000000000000000000000000000000060405163040b850f60e31b81526001600160a01b03858116600483015260248201859052919091169063205c2878906044015f604051808303815f87803b1580156106d1575f5ffd5b505af11580156105b7573d5f5f3e3d5ffd5b5f918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b610713610ae7565b6106368483838080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250889250610b67915050565b6040516370a0823160e01b81523060048201525f906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a08231906024015b602060405180830381865afa1580156107b9573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107dd9190611191565b905090565b604051631aab3f0d60e11b81523060048201525f60248201819052906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906335567e1a9060440161079e565b5f82815260208190526040902060010154610851816109e5565b6103dd8383610a7e565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146108d85760405162461bcd60e51b815260206004820152601c60248201527f6163636f756e743a206e6f742066726f6d20456e747279506f696e740000000060448201526064015b60405180910390fd5b565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c829052603c81205f6109548261091b61010088018861114e565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250610c0792505050565b90506109807fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63826106e3565b61098f5760019250505061038e565b505f949350505050565b50565b8015610999576040515f9033905f1990849084818181858888f193505050503d805f8114610636576040519150601f19603f3d011682016040523d82523d5f602084013e610636565b6109998133610c2f565b5f6109fa83836106e3565b610a77575f838152602081815260408083206001600160a01b03861684529091529020805460ff19166001179055610a2f3390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600161038e565b505f61038e565b5f610a8983836106e3565b15610a77575f838152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a450600161038e565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801590610b475750610b457fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63336106e3565b155b156108d857604051633c687f6b60e21b81523360048201526024016108cf565b606081471015610b935760405163cf47918160e01b8152476004820152602481018390526044016108cf565b5f5f856001600160a01b03168486604051610bae91906111a8565b5f6040518083038185875af1925050503d805f8114610be8576040519150601f19603f3d011682016040523d82523d5f602084013e610bed565b606091505b5091509150610bfd868383610c6c565b9695505050505050565b5f5f5f5f610c158686610cc8565b925092509250610c258282610d11565b5090949350505050565b610c3982826106e3565b610c685760405163e2517d3f60e01b81526001600160a01b0382166004820152602481018390526044016108cf565b5050565b606082610c8157610c7c82610dc9565b6103b2565b8151158015610c9857506001600160a01b0384163b155b15610cc157604051639996b31560e01b81526001600160a01b03851660048201526024016108cf565b50806103b2565b5f5f5f8351604103610cff576020840151604085015160608601515f1a610cf188828585610df2565b955095509550505050610d0a565b505081515f91506002905b9250925092565b5f826003811115610d2457610d246111be565b03610d2d575050565b6001826003811115610d4157610d416111be565b03610d5f5760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610d7357610d736111be565b03610d945760405163fce698f760e01b8152600481018290526024016108cf565b6003826003811115610da857610da86111be565b03610c68576040516335e2f38360e21b8152600481018290526024016108cf565b805115610dd95780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610e2b57505f91506003905082610eb0565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610e7c573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b038116610ea757505f925060019150829050610eb0565b92505f91508190505b9450945094915050565b5f60208284031215610eca575f5ffd5b81356001600160e01b0319811681146103b2575f5ffd5b5f5f5f60608486031215610ef3575f5ffd5b833567ffffffffffffffff811115610f09575f5ffd5b84016101208187031215610f1b575f5ffd5b95602085013595506040909401359392505050565b5f60208284031215610f40575f5ffd5b5035919050565b6001600160a01b0381168114610999575f5ffd5b5f5f60408385031215610f6c575f5ffd5b823591506020830135610f7e81610f47565b809150509250929050565b5f5f83601f840112610f99575f5ffd5b50813567ffffffffffffffff811115610fb0575f5ffd5b6020830191508360208260051b8501011115610fca575f5ffd5b9250929050565b5f5f5f5f5f5f60608789031215610fe6575f5ffd5b863567ffffffffffffffff811115610ffc575f5ffd5b61100889828a01610f89565b909750955050602087013567ffffffffffffffff811115611027575f5ffd5b61103389828a01610f89565b909550935050604087013567ffffffffffffffff811115611052575f5ffd5b61105e89828a01610f89565b979a9699509497509295939492505050565b5f5f60408385031215611081575f5ffd5b823561108c81610f47565b946020939093013593505050565b5f5f5f5f606085870312156110ad575f5ffd5b84356110b881610f47565b935060208501359250604085013567ffffffffffffffff8111156110da575f5ffd5b8501601f810187136110ea575f5ffd5b803567ffffffffffffffff811115611100575f5ffd5b876020828401011115611111575f5ffd5b949793965060200194505050565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611143575f5ffd5b81356103b281610f47565b5f5f8335601e19843603018112611163575f5ffd5b83018035915067ffffffffffffffff82111561117d575f5ffd5b602001915036819003821315610fca575f5ffd5b5f602082840312156111a1575f5ffd5b5051919050565b5f82518060208501845e5f920191825250919050565b634e487b7160e01b5f52602160045260245ffdfea264697066735822122027bc23623c2e9510d5151f8eb11f974d01aaa110295cf92fde6378b56b39ddfe64736f6c634300081c0033","opcodes":"PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x14E0 CODESIZE SUB DUP1 PUSH2 0x14E0 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2E SWAP2 PUSH2 0x190 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x80 MSTORE PUSH2 0x45 PUSH0 DUP4 PUSH2 0xAC JUMP JUMPDEST POP PUSH0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xA3 JUMPI PUSH2 0x9A PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x87 JUMPI PUSH2 0x87 PUSH2 0x282 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xAC PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x48 JUMP JUMPDEST POP POP POP POP PUSH2 0x296 JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x14C JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH2 0x104 CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x14F JUMP JUMPDEST POP PUSH0 JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x169 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST DUP1 MLOAD PUSH2 0x177 DUP2 PUSH2 0x155 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 MLOAD PUSH2 0x1AD DUP2 PUSH2 0x155 JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MLOAD SWAP1 SWAP4 POP PUSH2 0x1BE DUP2 PUSH2 0x155 JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x1E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x202 JUMPI PUSH2 0x202 PUSH2 0x17C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x5 DUP3 SWAP1 SHL SWAP1 PUSH1 0x3F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x230 JUMPI PUSH2 0x230 PUSH2 0x17C JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 DUP3 MSTORE PUSH1 0x20 DUP2 DUP5 ADD DUP2 ADD SWAP3 SWAP1 DUP2 ADD DUP10 DUP5 GT ISZERO PUSH2 0x24D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP6 ADD SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x273 JUMPI PUSH2 0x265 DUP6 PUSH2 0x16C JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 ADD PUSH2 0x254 JUMP JUMPDEST POP DUP1 SWAP5 POP POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x80 MLOAD PUSH2 0x1208 PUSH2 0x2D8 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x29B ADD MSTORE DUP2 DUP2 PUSH2 0x5C3 ADD MSTORE DUP2 DUP2 PUSH2 0x669 ADD MSTORE DUP2 DUP2 PUSH2 0x773 ADD MSTORE DUP2 DUP2 PUSH2 0x808 ADD MSTORE DUP2 DUP2 PUSH2 0x866 ADD MSTORE PUSH2 0xAF2 ADD MSTORE PUSH2 0x1208 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xFD JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4D44560D GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xB61D27F6 GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xB61D27F6 EQ PUSH2 0x2C5 JUMPI DUP1 PUSH4 0xC399EC88 EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0xD087D288 EQ PUSH2 0x2F8 JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x30C JUMPI DUP1 PUSH4 0xE02023A1 EQ PUSH2 0x32B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D44560D EQ PUSH2 0x231 JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x250 JUMPI DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x26F JUMPI DUP1 PUSH4 0xB0D691FE EQ PUSH2 0x282 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x2F2FF15D GT PUSH2 0xCD JUMPI DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x1EB JUMPI DUP1 PUSH4 0x47E1DA2A EQ PUSH2 0x20A JUMPI DUP1 PUSH4 0x4A58DB19 EQ PUSH2 0x229 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x108 JUMPI DUP1 PUSH4 0x7BD0265 EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x19822F7C EQ PUSH2 0x17D JUMPI DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x19C JUMPI PUSH0 PUSH0 REVERT JUMPDEST CALLDATASIZE PUSH2 0x104 JUMPI STOP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x113 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x127 PUSH2 0x122 CALLDATASIZE PUSH1 0x4 PUSH2 0xEBA JUMP JUMPDEST PUSH2 0x35E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x147 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x133 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x188 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x197 CALLDATASIZE PUSH1 0x4 PUSH2 0xEE1 JUMP JUMPDEST PUSH2 0x394 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x1B6 CALLDATASIZE PUSH1 0x4 PUSH2 0xF30 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0xF5B JUMP JUMPDEST PUSH2 0x3B9 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x205 CALLDATASIZE PUSH1 0x4 PUSH2 0xF5B JUMP JUMPDEST PUSH2 0x3E3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x215 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x224 CALLDATASIZE PUSH1 0x4 PUSH2 0xFD1 JUMP JUMPDEST PUSH2 0x41B JUMP JUMPDEST PUSH2 0x1E9 PUSH2 0x5C1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x23C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x24B CALLDATASIZE PUSH1 0x4 PUSH2 0x1070 JUMP JUMPDEST PUSH2 0x63D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x127 PUSH2 0x26A CALLDATASIZE PUSH1 0x4 PUSH2 0xF5B JUMP JUMPDEST PUSH2 0x6E3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x27A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x133 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x2DF CALLDATASIZE PUSH1 0x4 PUSH2 0x109A JUMP JUMPDEST PUSH2 0x70B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x754 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x303 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x7E2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x317 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x326 CALLDATASIZE PUSH1 0x4 PUSH2 0xF5B JUMP JUMPDEST PUSH2 0x837 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x336 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH32 0x5D8E12C39142FF96D79D04D15D1BA1269E4FE57BB9D26F43523628B34BA108EC DUP2 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x7965DB0B PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x38E JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x39D PUSH2 0x85B JUMP JUMPDEST PUSH2 0x3A7 DUP5 DUP5 PUSH2 0x8DA JUMP JUMPDEST SWAP1 POP PUSH2 0x3B2 DUP3 PUSH2 0x99C JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x3D3 DUP2 PUSH2 0x9E5 JUMP JUMPDEST PUSH2 0x3DD DUP4 DUP4 PUSH2 0x9EF JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ PUSH2 0x40C JUMPI PUSH1 0x40 MLOAD PUSH4 0x334BD919 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x416 DUP3 DUP3 PUSH2 0xA7E JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x423 PUSH2 0xAE7 JUMP JUMPDEST DUP5 DUP2 EQ ISZERO DUP1 PUSH2 0x43C JUMPI POP DUP3 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x43C JUMPI POP DUP3 DUP2 EQ ISZERO JUMPDEST ISZERO PUSH2 0x45A JUMPI PUSH1 0x40 MLOAD PUSH4 0x150072E3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP4 SWAP1 SUB PUSH2 0x502 JUMPI PUSH0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x4FC JUMPI PUSH2 0x4F3 DUP8 DUP8 DUP4 DUP2 DUP2 LT PUSH2 0x481 JUMPI PUSH2 0x481 PUSH2 0x111F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x496 SWAP2 SWAP1 PUSH2 0x1133 JUMP JUMPDEST DUP5 DUP5 DUP5 DUP2 DUP2 LT PUSH2 0x4A8 JUMPI PUSH2 0x4A8 PUSH2 0x111F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x4BA SWAP2 SWAP1 PUSH2 0x114E JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD DUP3 SWAP1 MSTORE POP SWAP3 POP PUSH2 0xB67 SWAP2 POP POP JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x464 JUMP JUMPDEST POP PUSH2 0x5B9 JUMP JUMPDEST PUSH0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x5B7 JUMPI PUSH2 0x5AE DUP8 DUP8 DUP4 DUP2 DUP2 LT PUSH2 0x521 JUMPI PUSH2 0x521 PUSH2 0x111F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x536 SWAP2 SWAP1 PUSH2 0x1133 JUMP JUMPDEST DUP5 DUP5 DUP5 DUP2 DUP2 LT PUSH2 0x548 JUMPI PUSH2 0x548 PUSH2 0x111F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x55A SWAP2 SWAP1 PUSH2 0x114E JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP DUP11 SWAP3 POP DUP10 SWAP2 POP DUP7 SWAP1 POP DUP2 DUP2 LT PUSH2 0x5A2 JUMPI PUSH2 0x5A2 PUSH2 0x111F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH2 0xB67 JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x504 JUMP JUMPDEST POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0xB760FAF9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xB760FAF9 SWAP1 CALLVALUE SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x624 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x636 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH32 0x5D8E12C39142FF96D79D04D15D1BA1269E4FE57BB9D26F43523628B34BA108EC PUSH2 0x667 DUP2 PUSH2 0x9E5 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0x40B850F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x205C2878 SWAP1 PUSH1 0x44 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x6D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x5B7 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP5 MSTORE SWAP2 SWAP1 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x713 PUSH2 0xAE7 JUMP JUMPDEST PUSH2 0x636 DUP5 DUP4 DUP4 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP DUP9 SWAP3 POP PUSH2 0xB67 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x7B9 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x7DD SWAP2 SWAP1 PUSH2 0x1191 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1AAB3F0D PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x35567E1A SWAP1 PUSH1 0x44 ADD PUSH2 0x79E JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x851 DUP2 PUSH2 0x9E5 JUMP JUMPDEST PUSH2 0x3DD DUP4 DUP4 PUSH2 0xA7E JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x8D8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6163636F756E743A206E6F742066726F6D20456E747279506F696E7400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH32 0x19457468657265756D205369676E6564204D6573736167653A0A333200000000 PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1C DUP3 SWAP1 MSTORE PUSH1 0x3C DUP2 KECCAK256 PUSH0 PUSH2 0x954 DUP3 PUSH2 0x91B PUSH2 0x100 DUP9 ADD DUP9 PUSH2 0x114E JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0xC07 SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH2 0x980 PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 DUP3 PUSH2 0x6E3 JUMP JUMPDEST PUSH2 0x98F JUMPI PUSH1 0x1 SWAP3 POP POP POP PUSH2 0x38E JUMP JUMPDEST POP PUSH0 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST POP JUMP JUMPDEST DUP1 ISZERO PUSH2 0x999 JUMPI PUSH1 0x40 MLOAD PUSH0 SWAP1 CALLER SWAP1 PUSH0 NOT SWAP1 DUP5 SWAP1 DUP5 DUP2 DUP2 DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x636 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x636 JUMP JUMPDEST PUSH2 0x999 DUP2 CALLER PUSH2 0xC2F JUMP JUMPDEST PUSH0 PUSH2 0x9FA DUP4 DUP4 PUSH2 0x6E3 JUMP JUMPDEST PUSH2 0xA77 JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH2 0xA2F CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x38E JUMP JUMPDEST POP PUSH0 PUSH2 0x38E JUMP JUMPDEST PUSH0 PUSH2 0xA89 DUP4 DUP4 PUSH2 0x6E3 JUMP JUMPDEST ISZERO PUSH2 0xA77 JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP1 DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE MLOAD CALLER SWAP3 DUP7 SWAP2 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B SWAP2 SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x38E JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO SWAP1 PUSH2 0xB47 JUMPI POP PUSH2 0xB45 PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 CALLER PUSH2 0x6E3 JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x8D8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3C687F6B PUSH1 0xE2 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x8CF JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0xB93 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x8CF JUMP JUMPDEST PUSH0 PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0xBAE SWAP2 SWAP1 PUSH2 0x11A8 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xBE8 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xBED JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0xBFD DUP7 DUP4 DUP4 PUSH2 0xC6C JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0xC15 DUP7 DUP7 PUSH2 0xCC8 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0xC25 DUP3 DUP3 PUSH2 0xD11 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0xC39 DUP3 DUP3 PUSH2 0x6E3 JUMP JUMPDEST PUSH2 0xC68 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x8CF JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0xC81 JUMPI PUSH2 0xC7C DUP3 PUSH2 0xDC9 JUMP JUMPDEST PUSH2 0x3B2 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0xC98 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0xCC1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x8CF JUMP JUMPDEST POP DUP1 PUSH2 0x3B2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x41 SUB PUSH2 0xCFF JUMPI PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH0 BYTE PUSH2 0xCF1 DUP9 DUP3 DUP6 DUP6 PUSH2 0xDF2 JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP PUSH2 0xD0A JUMP JUMPDEST POP POP DUP2 MLOAD PUSH0 SWAP2 POP PUSH1 0x2 SWAP1 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xD24 JUMPI PUSH2 0xD24 PUSH2 0x11BE JUMP JUMPDEST SUB PUSH2 0xD2D JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xD41 JUMPI PUSH2 0xD41 PUSH2 0x11BE JUMP JUMPDEST SUB PUSH2 0xD5F JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xD73 JUMPI PUSH2 0xD73 PUSH2 0x11BE JUMP JUMPDEST SUB PUSH2 0xD94 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x8CF JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xDA8 JUMPI PUSH2 0xDA8 PUSH2 0x11BE JUMP JUMPDEST SUB PUSH2 0xC68 JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x8CF JUMP JUMPDEST DUP1 MLOAD ISZERO PUSH2 0xDD9 JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0xE2B JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0xEB0 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xE7C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xEA7 JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0xEB0 JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xECA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x3B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xEF3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xF09 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH2 0x120 DUP2 DUP8 SUB SLT ISZERO PUSH2 0xF1B JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF40 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x999 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF6C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0xF7E DUP2 PUSH2 0xF47 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0xF99 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xFB0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xFCA JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP8 DUP10 SUB SLT ISZERO PUSH2 0xFE6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xFFC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1008 DUP10 DUP3 DUP11 ADD PUSH2 0xF89 JUMP JUMPDEST SWAP1 SWAP8 POP SWAP6 POP POP PUSH1 0x20 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1027 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1033 DUP10 DUP3 DUP11 ADD PUSH2 0xF89 JUMP JUMPDEST SWAP1 SWAP6 POP SWAP4 POP POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1052 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x105E DUP10 DUP3 DUP11 ADD PUSH2 0xF89 JUMP JUMPDEST SWAP8 SWAP11 SWAP7 SWAP10 POP SWAP5 SWAP8 POP SWAP3 SWAP6 SWAP4 SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1081 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x108C DUP2 PUSH2 0xF47 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x10AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x10B8 DUP2 PUSH2 0xF47 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10DA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x10EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1100 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x1111 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP5 SWAP8 SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1143 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3B2 DUP2 PUSH2 0xF47 JUMP JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x1163 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x117D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0xFCA JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11A1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP6 ADD DUP5 MCOPY PUSH0 SWAP3 ADD SWAP2 DUP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x27 0xBC 0x23 PUSH3 0x3C2E95 LT 0xD5 ISZERO 0x1F DUP15 0xB1 0x1F SWAP8 0x4D ADD 0xAA LOG1 LT 0x29 TLOAD 0xF9 0x2F 0xDE PUSH4 0x78B56B39 0xDD INVALID PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"769:3540:33:-:0;;;1319:263;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1406:26:33;;;;1438:37;2232:4:9;1469:5:33;1438:10;:37::i;:::-;;1486:9;1481:97;1501:9;:16;1497:1;:20;1481:97;;;1532:39;943:26;1558:9;1568:1;1558:12;;;;;;;;:::i;:::-;;;;;;;1532:10;;;:39;;:::i;:::-;-1:-1:-1;1519:3:33;;1481:97;;;;1319:263;;;769:3540;;6179:316:9;6256:4;2954:12;;;;;;;;;;;-1:-1:-1;;;;;2954:29:9;;;;;;;;;;;;6272:217;;6315:6;:12;;;;;;;;;;;-1:-1:-1;;;;;6315:29:9;;;;;;;;;:36;;-1:-1:-1;;6315:36:9;6347:4;6315:36;;;6397:12;735:10:20;;656:96;6397:12:9;-1:-1:-1;;;;;6370:40:9;6388:7;-1:-1:-1;;;;;6370:40:9;6382:4;6370:40;;;;;;;;;;-1:-1:-1;6431:4:9;6424:11;;6272:217;-1:-1:-1;6473:5:9;6272:217;6179:316;;;;:::o;14:144:41:-;-1:-1:-1;;;;;102:31:41;;92:42;;82:70;;148:1;145;138:12;82:70;14:144;:::o;163:151::-;242:13;;264:44;242:13;264:44;:::i;:::-;163:151;;;:::o;319:127::-;380:10;375:3;371:20;368:1;361:31;411:4;408:1;401:15;435:4;432:1;425:15;451:1442;583:6;591;599;652:2;640:9;631:7;627:23;623:32;620:52;;;668:1;665;658:12;620:52;700:9;694:16;719:44;757:5;719:44;:::i;:::-;832:2;817:18;;811:25;782:5;;-1:-1:-1;845:46:41;811:25;845:46;:::i;:::-;961:2;946:18;;940:25;910:7;;-1:-1:-1;;;;;;977:30:41;;974:50;;;1020:1;1017;1010:12;974:50;1043:22;;1096:4;1088:13;;1084:27;-1:-1:-1;1074:55:41;;1125:1;1122;1115:12;1074:55;1152:9;;-1:-1:-1;;;;;1173:30:41;;1170:56;;;1206:18;;:::i;:::-;1288:2;1282:9;1249:1;1245:14;;;;1342:2;1334:11;;-1:-1:-1;;1330:25:41;1318:38;;-1:-1:-1;;;;;1371:34:41;;1407:22;;;1368:62;1365:88;;;1433:18;;:::i;:::-;1469:2;1462:22;1519;;;1569:2;1599:11;;;1595:20;;;1519:22;1557:15;;1627:19;;;1624:39;;;1659:1;1656;1649:12;1624:39;1691:2;1687;1683:11;1672:22;;1703:159;1719:6;1714:3;1711:15;1703:159;;;1785:34;1815:3;1785:34;:::i;:::-;1773:47;;1849:2;1736:12;;;;1840;1703:159;;;1707:3;1881:6;1871:16;;;;;;451:1442;;;;;:::o;1898:127::-;1959:10;1954:3;1950:20;1947:1;1940:31;1990:4;1987:1;1980:15;2014:4;2011:1;2004:15;1898:127;769:3540:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@DEFAULT_ADMIN_ROLE_1084":{"entryPoint":null,"id":1084,"parameterSlots":0,"returnSlots":0},"@EXECUTOR_ROLE_8739":{"entryPoint":null,"id":8739,"parameterSlots":0,"returnSlots":0},"@WITHDRAW_ROLE_8734":{"entryPoint":null,"id":8734,"parameterSlots":0,"returnSlots":0},"@_8763":{"entryPoint":null,"id":8763,"parameterSlots":0,"returnSlots":0},"@_checkRole_1148":{"entryPoint":2533,"id":1148,"parameterSlots":1,"returnSlots":0},"@_checkRole_1169":{"entryPoint":3119,"id":1169,"parameterSlots":2,"returnSlots":0},"@_grantRole_1311":{"entryPoint":2543,"id":1311,"parameterSlots":2,"returnSlots":1},"@_msgSender_3080":{"entryPoint":null,"id":3080,"parameterSlots":0,"returnSlots":1},"@_payPrefund_137":{"entryPoint":2460,"id":137,"parameterSlots":1,"returnSlots":0},"@_requireFromEntryPointOrExecutor_8828":{"entryPoint":2791,"id":8828,"parameterSlots":0,"returnSlots":0},"@_requireFromEntryPoint_86":{"entryPoint":2139,"id":86,"parameterSlots":0,"returnSlots":0},"@_revert_3067":{"entryPoint":3529,"id":3067,"parameterSlots":1,"returnSlots":0},"@_revokeRole_1349":{"entryPoint":2686,"id":1349,"parameterSlots":2,"returnSlots":1},"@_throwError_4806":{"entryPoint":3345,"id":4806,"parameterSlots":2,"returnSlots":0},"@_validateNonce_104":{"entryPoint":2457,"id":104,"parameterSlots":1,"returnSlots":0},"@_validateSignature_8986":{"entryPoint":2266,"id":8986,"parameterSlots":2,"returnSlots":1},"@addDeposit_9019":{"entryPoint":1473,"id":9019,"parameterSlots":0,"returnSlots":0},"@entryPoint_8759":{"entryPoint":null,"id":8759,"parameterSlots":0,"returnSlots":1},"@executeBatch_8947":{"entryPoint":1051,"id":8947,"parameterSlots":6,"returnSlots":0},"@execute_8850":{"entryPoint":1803,"id":8850,"parameterSlots":4,"returnSlots":0},"@functionCallWithValue_2933":{"entryPoint":2919,"id":2933,"parameterSlots":3,"returnSlots":1},"@getDeposit_9002":{"entryPoint":1876,"id":9002,"parameterSlots":0,"returnSlots":1},"@getNonce_28":{"entryPoint":2018,"id":28,"parameterSlots":0,"returnSlots":1},"@getRoleAdmin_1183":{"entryPoint":null,"id":1183,"parameterSlots":1,"returnSlots":1},"@grantRole_1202":{"entryPoint":953,"id":1202,"parameterSlots":2,"returnSlots":0},"@hasRole_1135":{"entryPoint":1763,"id":1135,"parameterSlots":2,"returnSlots":1},"@recover_4563":{"entryPoint":3079,"id":4563,"parameterSlots":2,"returnSlots":1},"@renounceRole_1244":{"entryPoint":995,"id":1244,"parameterSlots":2,"returnSlots":0},"@revokeRole_1221":{"entryPoint":2103,"id":1221,"parameterSlots":2,"returnSlots":0},"@supportsInterface_1117":{"entryPoint":862,"id":1117,"parameterSlots":1,"returnSlots":1},"@supportsInterface_4904":{"entryPoint":null,"id":4904,"parameterSlots":1,"returnSlots":1},"@toEthSignedMessageHash_4822":{"entryPoint":null,"id":4822,"parameterSlots":1,"returnSlots":1},"@tryRecover_4533":{"entryPoint":3272,"id":4533,"parameterSlots":2,"returnSlots":3},"@tryRecover_4721":{"entryPoint":3570,"id":4721,"parameterSlots":4,"returnSlots":3},"@validateUserOp_69":{"entryPoint":916,"id":69,"parameterSlots":3,"returnSlots":1},"@verifyCallResultFromTarget_3025":{"entryPoint":3180,"id":3025,"parameterSlots":3,"returnSlots":1},"@withdrawDepositTo_9038":{"entryPoint":1597,"id":9038,"parameterSlots":2,"returnSlots":0},"abi_decode_array_address_dyn_calldata":{"entryPoint":3977,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_address":{"entryPoint":4403,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_payablet_uint256":{"entryPoint":4208,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256t_bytes_calldata_ptr":{"entryPoint":4250,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_uint256_$dyn_calldata_ptrt_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr":{"entryPoint":4049,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_bytes32":{"entryPoint":3888,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32t_address":{"entryPoint":3931,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes4":{"entryPoint":3770,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PackedUserOperation_$1054_calldata_ptrt_bytes32t_uint256":{"entryPoint":3809,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":4497,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":4520,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_payable_t_uint256__to_t_address_payable_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_bytes32__to_t_address_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint192__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_contract$_IEntryPoint_$909__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f684c2c0c9ec797849b62669189fe025e9077c00ba7812987ce38c0071ad7a50__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":4430,"id":null,"parameterSlots":2,"returnSlots":2},"panic_error_0x21":{"entryPoint":4542,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":4383,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":3911,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:9030:41","nodeType":"YulBlock","src":"0:9030:41","statements":[{"nativeSrc":"6:3:41","nodeType":"YulBlock","src":"6:3:41","statements":[]},{"body":{"nativeSrc":"83:217:41","nodeType":"YulBlock","src":"83:217:41","statements":[{"body":{"nativeSrc":"129:16:41","nodeType":"YulBlock","src":"129:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"138:1:41","nodeType":"YulLiteral","src":"138:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"141:1:41","nodeType":"YulLiteral","src":"141:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"131:6:41","nodeType":"YulIdentifier","src":"131:6:41"},"nativeSrc":"131:12:41","nodeType":"YulFunctionCall","src":"131:12:41"},"nativeSrc":"131:12:41","nodeType":"YulExpressionStatement","src":"131:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"104:7:41","nodeType":"YulIdentifier","src":"104:7:41"},{"name":"headStart","nativeSrc":"113:9:41","nodeType":"YulIdentifier","src":"113:9:41"}],"functionName":{"name":"sub","nativeSrc":"100:3:41","nodeType":"YulIdentifier","src":"100:3:41"},"nativeSrc":"100:23:41","nodeType":"YulFunctionCall","src":"100:23:41"},{"kind":"number","nativeSrc":"125:2:41","nodeType":"YulLiteral","src":"125:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"96:3:41","nodeType":"YulIdentifier","src":"96:3:41"},"nativeSrc":"96:32:41","nodeType":"YulFunctionCall","src":"96:32:41"},"nativeSrc":"93:52:41","nodeType":"YulIf","src":"93:52:41"},{"nativeSrc":"154:36:41","nodeType":"YulVariableDeclaration","src":"154:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"180:9:41","nodeType":"YulIdentifier","src":"180:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"167:12:41","nodeType":"YulIdentifier","src":"167:12:41"},"nativeSrc":"167:23:41","nodeType":"YulFunctionCall","src":"167:23:41"},"variables":[{"name":"value","nativeSrc":"158:5:41","nodeType":"YulTypedName","src":"158:5:41","type":""}]},{"body":{"nativeSrc":"254:16:41","nodeType":"YulBlock","src":"254:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:41","nodeType":"YulLiteral","src":"263:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:41","nodeType":"YulLiteral","src":"266:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:41","nodeType":"YulIdentifier","src":"256:6:41"},"nativeSrc":"256:12:41","nodeType":"YulFunctionCall","src":"256:12:41"},"nativeSrc":"256:12:41","nodeType":"YulExpressionStatement","src":"256:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"212:5:41","nodeType":"YulIdentifier","src":"212:5:41"},{"arguments":[{"name":"value","nativeSrc":"223:5:41","nodeType":"YulIdentifier","src":"223:5:41"},{"arguments":[{"kind":"number","nativeSrc":"234:3:41","nodeType":"YulLiteral","src":"234:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"239:10:41","nodeType":"YulLiteral","src":"239:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"230:3:41","nodeType":"YulIdentifier","src":"230:3:41"},"nativeSrc":"230:20:41","nodeType":"YulFunctionCall","src":"230:20:41"}],"functionName":{"name":"and","nativeSrc":"219:3:41","nodeType":"YulIdentifier","src":"219:3:41"},"nativeSrc":"219:32:41","nodeType":"YulFunctionCall","src":"219:32:41"}],"functionName":{"name":"eq","nativeSrc":"209:2:41","nodeType":"YulIdentifier","src":"209:2:41"},"nativeSrc":"209:43:41","nodeType":"YulFunctionCall","src":"209:43:41"}],"functionName":{"name":"iszero","nativeSrc":"202:6:41","nodeType":"YulIdentifier","src":"202:6:41"},"nativeSrc":"202:51:41","nodeType":"YulFunctionCall","src":"202:51:41"},"nativeSrc":"199:71:41","nodeType":"YulIf","src":"199:71:41"},{"nativeSrc":"279:15:41","nodeType":"YulAssignment","src":"279:15:41","value":{"name":"value","nativeSrc":"289:5:41","nodeType":"YulIdentifier","src":"289:5:41"},"variableNames":[{"name":"value0","nativeSrc":"279:6:41","nodeType":"YulIdentifier","src":"279:6:41"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14:286:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"49:9:41","nodeType":"YulTypedName","src":"49:9:41","type":""},{"name":"dataEnd","nativeSrc":"60:7:41","nodeType":"YulTypedName","src":"60:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"72:6:41","nodeType":"YulTypedName","src":"72:6:41","type":""}],"src":"14:286:41"},{"body":{"nativeSrc":"400:92:41","nodeType":"YulBlock","src":"400:92:41","statements":[{"nativeSrc":"410:26:41","nodeType":"YulAssignment","src":"410:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:41","nodeType":"YulIdentifier","src":"422:9:41"},{"kind":"number","nativeSrc":"433:2:41","nodeType":"YulLiteral","src":"433:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"418:3:41","nodeType":"YulIdentifier","src":"418:3:41"},"nativeSrc":"418:18:41","nodeType":"YulFunctionCall","src":"418:18:41"},"variableNames":[{"name":"tail","nativeSrc":"410:4:41","nodeType":"YulIdentifier","src":"410:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"452:9:41","nodeType":"YulIdentifier","src":"452:9:41"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"477:6:41","nodeType":"YulIdentifier","src":"477:6:41"}],"functionName":{"name":"iszero","nativeSrc":"470:6:41","nodeType":"YulIdentifier","src":"470:6:41"},"nativeSrc":"470:14:41","nodeType":"YulFunctionCall","src":"470:14:41"}],"functionName":{"name":"iszero","nativeSrc":"463:6:41","nodeType":"YulIdentifier","src":"463:6:41"},"nativeSrc":"463:22:41","nodeType":"YulFunctionCall","src":"463:22:41"}],"functionName":{"name":"mstore","nativeSrc":"445:6:41","nodeType":"YulIdentifier","src":"445:6:41"},"nativeSrc":"445:41:41","nodeType":"YulFunctionCall","src":"445:41:41"},"nativeSrc":"445:41:41","nodeType":"YulExpressionStatement","src":"445:41:41"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"305:187:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"369:9:41","nodeType":"YulTypedName","src":"369:9:41","type":""},{"name":"value0","nativeSrc":"380:6:41","nodeType":"YulTypedName","src":"380:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"391:4:41","nodeType":"YulTypedName","src":"391:4:41","type":""}],"src":"305:187:41"},{"body":{"nativeSrc":"598:76:41","nodeType":"YulBlock","src":"598:76:41","statements":[{"nativeSrc":"608:26:41","nodeType":"YulAssignment","src":"608:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"620:9:41","nodeType":"YulIdentifier","src":"620:9:41"},{"kind":"number","nativeSrc":"631:2:41","nodeType":"YulLiteral","src":"631:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"616:3:41","nodeType":"YulIdentifier","src":"616:3:41"},"nativeSrc":"616:18:41","nodeType":"YulFunctionCall","src":"616:18:41"},"variableNames":[{"name":"tail","nativeSrc":"608:4:41","nodeType":"YulIdentifier","src":"608:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"650:9:41","nodeType":"YulIdentifier","src":"650:9:41"},{"name":"value0","nativeSrc":"661:6:41","nodeType":"YulIdentifier","src":"661:6:41"}],"functionName":{"name":"mstore","nativeSrc":"643:6:41","nodeType":"YulIdentifier","src":"643:6:41"},"nativeSrc":"643:25:41","nodeType":"YulFunctionCall","src":"643:25:41"},"nativeSrc":"643:25:41","nodeType":"YulExpressionStatement","src":"643:25:41"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"497:177:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"567:9:41","nodeType":"YulTypedName","src":"567:9:41","type":""},{"name":"value0","nativeSrc":"578:6:41","nodeType":"YulTypedName","src":"578:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"589:4:41","nodeType":"YulTypedName","src":"589:4:41","type":""}],"src":"497:177:41"},{"body":{"nativeSrc":"822:490:41","nodeType":"YulBlock","src":"822:490:41","statements":[{"body":{"nativeSrc":"868:16:41","nodeType":"YulBlock","src":"868:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"877:1:41","nodeType":"YulLiteral","src":"877:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"880:1:41","nodeType":"YulLiteral","src":"880:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"870:6:41","nodeType":"YulIdentifier","src":"870:6:41"},"nativeSrc":"870:12:41","nodeType":"YulFunctionCall","src":"870:12:41"},"nativeSrc":"870:12:41","nodeType":"YulExpressionStatement","src":"870:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"843:7:41","nodeType":"YulIdentifier","src":"843:7:41"},{"name":"headStart","nativeSrc":"852:9:41","nodeType":"YulIdentifier","src":"852:9:41"}],"functionName":{"name":"sub","nativeSrc":"839:3:41","nodeType":"YulIdentifier","src":"839:3:41"},"nativeSrc":"839:23:41","nodeType":"YulFunctionCall","src":"839:23:41"},{"kind":"number","nativeSrc":"864:2:41","nodeType":"YulLiteral","src":"864:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"835:3:41","nodeType":"YulIdentifier","src":"835:3:41"},"nativeSrc":"835:32:41","nodeType":"YulFunctionCall","src":"835:32:41"},"nativeSrc":"832:52:41","nodeType":"YulIf","src":"832:52:41"},{"nativeSrc":"893:37:41","nodeType":"YulVariableDeclaration","src":"893:37:41","value":{"arguments":[{"name":"headStart","nativeSrc":"920:9:41","nodeType":"YulIdentifier","src":"920:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"907:12:41","nodeType":"YulIdentifier","src":"907:12:41"},"nativeSrc":"907:23:41","nodeType":"YulFunctionCall","src":"907:23:41"},"variables":[{"name":"offset","nativeSrc":"897:6:41","nodeType":"YulTypedName","src":"897:6:41","type":""}]},{"body":{"nativeSrc":"973:16:41","nodeType":"YulBlock","src":"973:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"982:1:41","nodeType":"YulLiteral","src":"982:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"985:1:41","nodeType":"YulLiteral","src":"985:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"975:6:41","nodeType":"YulIdentifier","src":"975:6:41"},"nativeSrc":"975:12:41","nodeType":"YulFunctionCall","src":"975:12:41"},"nativeSrc":"975:12:41","nodeType":"YulExpressionStatement","src":"975:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"945:6:41","nodeType":"YulIdentifier","src":"945:6:41"},{"kind":"number","nativeSrc":"953:18:41","nodeType":"YulLiteral","src":"953:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"942:2:41","nodeType":"YulIdentifier","src":"942:2:41"},"nativeSrc":"942:30:41","nodeType":"YulFunctionCall","src":"942:30:41"},"nativeSrc":"939:50:41","nodeType":"YulIf","src":"939:50:41"},{"nativeSrc":"998:32:41","nodeType":"YulVariableDeclaration","src":"998:32:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1012:9:41","nodeType":"YulIdentifier","src":"1012:9:41"},{"name":"offset","nativeSrc":"1023:6:41","nodeType":"YulIdentifier","src":"1023:6:41"}],"functionName":{"name":"add","nativeSrc":"1008:3:41","nodeType":"YulIdentifier","src":"1008:3:41"},"nativeSrc":"1008:22:41","nodeType":"YulFunctionCall","src":"1008:22:41"},"variables":[{"name":"_1","nativeSrc":"1002:2:41","nodeType":"YulTypedName","src":"1002:2:41","type":""}]},{"body":{"nativeSrc":"1069:16:41","nodeType":"YulBlock","src":"1069:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1078:1:41","nodeType":"YulLiteral","src":"1078:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1081:1:41","nodeType":"YulLiteral","src":"1081:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1071:6:41","nodeType":"YulIdentifier","src":"1071:6:41"},"nativeSrc":"1071:12:41","nodeType":"YulFunctionCall","src":"1071:12:41"},"nativeSrc":"1071:12:41","nodeType":"YulExpressionStatement","src":"1071:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1050:7:41","nodeType":"YulIdentifier","src":"1050:7:41"},{"name":"_1","nativeSrc":"1059:2:41","nodeType":"YulIdentifier","src":"1059:2:41"}],"functionName":{"name":"sub","nativeSrc":"1046:3:41","nodeType":"YulIdentifier","src":"1046:3:41"},"nativeSrc":"1046:16:41","nodeType":"YulFunctionCall","src":"1046:16:41"},{"kind":"number","nativeSrc":"1064:3:41","nodeType":"YulLiteral","src":"1064:3:41","type":"","value":"288"}],"functionName":{"name":"slt","nativeSrc":"1042:3:41","nodeType":"YulIdentifier","src":"1042:3:41"},"nativeSrc":"1042:26:41","nodeType":"YulFunctionCall","src":"1042:26:41"},"nativeSrc":"1039:46:41","nodeType":"YulIf","src":"1039:46:41"},{"nativeSrc":"1094:12:41","nodeType":"YulAssignment","src":"1094:12:41","value":{"name":"_1","nativeSrc":"1104:2:41","nodeType":"YulIdentifier","src":"1104:2:41"},"variableNames":[{"name":"value0","nativeSrc":"1094:6:41","nodeType":"YulIdentifier","src":"1094:6:41"}]},{"nativeSrc":"1115:14:41","nodeType":"YulVariableDeclaration","src":"1115:14:41","value":{"kind":"number","nativeSrc":"1128:1:41","nodeType":"YulLiteral","src":"1128:1:41","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1119:5:41","nodeType":"YulTypedName","src":"1119:5:41","type":""}]},{"nativeSrc":"1138:41:41","nodeType":"YulAssignment","src":"1138:41:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1164:9:41","nodeType":"YulIdentifier","src":"1164:9:41"},{"kind":"number","nativeSrc":"1175:2:41","nodeType":"YulLiteral","src":"1175:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1160:3:41","nodeType":"YulIdentifier","src":"1160:3:41"},"nativeSrc":"1160:18:41","nodeType":"YulFunctionCall","src":"1160:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"1147:12:41","nodeType":"YulIdentifier","src":"1147:12:41"},"nativeSrc":"1147:32:41","nodeType":"YulFunctionCall","src":"1147:32:41"},"variableNames":[{"name":"value","nativeSrc":"1138:5:41","nodeType":"YulIdentifier","src":"1138:5:41"}]},{"nativeSrc":"1188:15:41","nodeType":"YulAssignment","src":"1188:15:41","value":{"name":"value","nativeSrc":"1198:5:41","nodeType":"YulIdentifier","src":"1198:5:41"},"variableNames":[{"name":"value1","nativeSrc":"1188:6:41","nodeType":"YulIdentifier","src":"1188:6:41"}]},{"nativeSrc":"1212:16:41","nodeType":"YulVariableDeclaration","src":"1212:16:41","value":{"kind":"number","nativeSrc":"1227:1:41","nodeType":"YulLiteral","src":"1227:1:41","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"1216:7:41","nodeType":"YulTypedName","src":"1216:7:41","type":""}]},{"nativeSrc":"1237:43:41","nodeType":"YulAssignment","src":"1237:43:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1265:9:41","nodeType":"YulIdentifier","src":"1265:9:41"},{"kind":"number","nativeSrc":"1276:2:41","nodeType":"YulLiteral","src":"1276:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1261:3:41","nodeType":"YulIdentifier","src":"1261:3:41"},"nativeSrc":"1261:18:41","nodeType":"YulFunctionCall","src":"1261:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"1248:12:41","nodeType":"YulIdentifier","src":"1248:12:41"},"nativeSrc":"1248:32:41","nodeType":"YulFunctionCall","src":"1248:32:41"},"variableNames":[{"name":"value_1","nativeSrc":"1237:7:41","nodeType":"YulIdentifier","src":"1237:7:41"}]},{"nativeSrc":"1289:17:41","nodeType":"YulAssignment","src":"1289:17:41","value":{"name":"value_1","nativeSrc":"1299:7:41","nodeType":"YulIdentifier","src":"1299:7:41"},"variableNames":[{"name":"value2","nativeSrc":"1289:6:41","nodeType":"YulIdentifier","src":"1289:6:41"}]}]},"name":"abi_decode_tuple_t_struct$_PackedUserOperation_$1054_calldata_ptrt_bytes32t_uint256","nativeSrc":"679:633:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"772:9:41","nodeType":"YulTypedName","src":"772:9:41","type":""},{"name":"dataEnd","nativeSrc":"783:7:41","nodeType":"YulTypedName","src":"783:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"795:6:41","nodeType":"YulTypedName","src":"795:6:41","type":""},{"name":"value1","nativeSrc":"803:6:41","nodeType":"YulTypedName","src":"803:6:41","type":""},{"name":"value2","nativeSrc":"811:6:41","nodeType":"YulTypedName","src":"811:6:41","type":""}],"src":"679:633:41"},{"body":{"nativeSrc":"1418:76:41","nodeType":"YulBlock","src":"1418:76:41","statements":[{"nativeSrc":"1428:26:41","nodeType":"YulAssignment","src":"1428:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1440:9:41","nodeType":"YulIdentifier","src":"1440:9:41"},{"kind":"number","nativeSrc":"1451:2:41","nodeType":"YulLiteral","src":"1451:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1436:3:41","nodeType":"YulIdentifier","src":"1436:3:41"},"nativeSrc":"1436:18:41","nodeType":"YulFunctionCall","src":"1436:18:41"},"variableNames":[{"name":"tail","nativeSrc":"1428:4:41","nodeType":"YulIdentifier","src":"1428:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1470:9:41","nodeType":"YulIdentifier","src":"1470:9:41"},{"name":"value0","nativeSrc":"1481:6:41","nodeType":"YulIdentifier","src":"1481:6:41"}],"functionName":{"name":"mstore","nativeSrc":"1463:6:41","nodeType":"YulIdentifier","src":"1463:6:41"},"nativeSrc":"1463:25:41","nodeType":"YulFunctionCall","src":"1463:25:41"},"nativeSrc":"1463:25:41","nodeType":"YulExpressionStatement","src":"1463:25:41"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"1317:177:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1387:9:41","nodeType":"YulTypedName","src":"1387:9:41","type":""},{"name":"value0","nativeSrc":"1398:6:41","nodeType":"YulTypedName","src":"1398:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1409:4:41","nodeType":"YulTypedName","src":"1409:4:41","type":""}],"src":"1317:177:41"},{"body":{"nativeSrc":"1569:156:41","nodeType":"YulBlock","src":"1569:156:41","statements":[{"body":{"nativeSrc":"1615:16:41","nodeType":"YulBlock","src":"1615:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1624:1:41","nodeType":"YulLiteral","src":"1624:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1627:1:41","nodeType":"YulLiteral","src":"1627:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1617:6:41","nodeType":"YulIdentifier","src":"1617:6:41"},"nativeSrc":"1617:12:41","nodeType":"YulFunctionCall","src":"1617:12:41"},"nativeSrc":"1617:12:41","nodeType":"YulExpressionStatement","src":"1617:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1590:7:41","nodeType":"YulIdentifier","src":"1590:7:41"},{"name":"headStart","nativeSrc":"1599:9:41","nodeType":"YulIdentifier","src":"1599:9:41"}],"functionName":{"name":"sub","nativeSrc":"1586:3:41","nodeType":"YulIdentifier","src":"1586:3:41"},"nativeSrc":"1586:23:41","nodeType":"YulFunctionCall","src":"1586:23:41"},{"kind":"number","nativeSrc":"1611:2:41","nodeType":"YulLiteral","src":"1611:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1582:3:41","nodeType":"YulIdentifier","src":"1582:3:41"},"nativeSrc":"1582:32:41","nodeType":"YulFunctionCall","src":"1582:32:41"},"nativeSrc":"1579:52:41","nodeType":"YulIf","src":"1579:52:41"},{"nativeSrc":"1640:14:41","nodeType":"YulVariableDeclaration","src":"1640:14:41","value":{"kind":"number","nativeSrc":"1653:1:41","nodeType":"YulLiteral","src":"1653:1:41","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1644:5:41","nodeType":"YulTypedName","src":"1644:5:41","type":""}]},{"nativeSrc":"1663:32:41","nodeType":"YulAssignment","src":"1663:32:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1685:9:41","nodeType":"YulIdentifier","src":"1685:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"1672:12:41","nodeType":"YulIdentifier","src":"1672:12:41"},"nativeSrc":"1672:23:41","nodeType":"YulFunctionCall","src":"1672:23:41"},"variableNames":[{"name":"value","nativeSrc":"1663:5:41","nodeType":"YulIdentifier","src":"1663:5:41"}]},{"nativeSrc":"1704:15:41","nodeType":"YulAssignment","src":"1704:15:41","value":{"name":"value","nativeSrc":"1714:5:41","nodeType":"YulIdentifier","src":"1714:5:41"},"variableNames":[{"name":"value0","nativeSrc":"1704:6:41","nodeType":"YulIdentifier","src":"1704:6:41"}]}]},"name":"abi_decode_tuple_t_bytes32","nativeSrc":"1499:226:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1535:9:41","nodeType":"YulTypedName","src":"1535:9:41","type":""},{"name":"dataEnd","nativeSrc":"1546:7:41","nodeType":"YulTypedName","src":"1546:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1558:6:41","nodeType":"YulTypedName","src":"1558:6:41","type":""}],"src":"1499:226:41"},{"body":{"nativeSrc":"1775:86:41","nodeType":"YulBlock","src":"1775:86:41","statements":[{"body":{"nativeSrc":"1839:16:41","nodeType":"YulBlock","src":"1839:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1848:1:41","nodeType":"YulLiteral","src":"1848:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1851:1:41","nodeType":"YulLiteral","src":"1851:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1841:6:41","nodeType":"YulIdentifier","src":"1841:6:41"},"nativeSrc":"1841:12:41","nodeType":"YulFunctionCall","src":"1841:12:41"},"nativeSrc":"1841:12:41","nodeType":"YulExpressionStatement","src":"1841:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1798:5:41","nodeType":"YulIdentifier","src":"1798:5:41"},{"arguments":[{"name":"value","nativeSrc":"1809:5:41","nodeType":"YulIdentifier","src":"1809:5:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1824:3:41","nodeType":"YulLiteral","src":"1824:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"1829:1:41","nodeType":"YulLiteral","src":"1829:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1820:3:41","nodeType":"YulIdentifier","src":"1820:3:41"},"nativeSrc":"1820:11:41","nodeType":"YulFunctionCall","src":"1820:11:41"},{"kind":"number","nativeSrc":"1833:1:41","nodeType":"YulLiteral","src":"1833:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1816:3:41","nodeType":"YulIdentifier","src":"1816:3:41"},"nativeSrc":"1816:19:41","nodeType":"YulFunctionCall","src":"1816:19:41"}],"functionName":{"name":"and","nativeSrc":"1805:3:41","nodeType":"YulIdentifier","src":"1805:3:41"},"nativeSrc":"1805:31:41","nodeType":"YulFunctionCall","src":"1805:31:41"}],"functionName":{"name":"eq","nativeSrc":"1795:2:41","nodeType":"YulIdentifier","src":"1795:2:41"},"nativeSrc":"1795:42:41","nodeType":"YulFunctionCall","src":"1795:42:41"}],"functionName":{"name":"iszero","nativeSrc":"1788:6:41","nodeType":"YulIdentifier","src":"1788:6:41"},"nativeSrc":"1788:50:41","nodeType":"YulFunctionCall","src":"1788:50:41"},"nativeSrc":"1785:70:41","nodeType":"YulIf","src":"1785:70:41"}]},"name":"validator_revert_address","nativeSrc":"1730:131:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"1764:5:41","nodeType":"YulTypedName","src":"1764:5:41","type":""}],"src":"1730:131:41"},{"body":{"nativeSrc":"1953:280:41","nodeType":"YulBlock","src":"1953:280:41","statements":[{"body":{"nativeSrc":"1999:16:41","nodeType":"YulBlock","src":"1999:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2008:1:41","nodeType":"YulLiteral","src":"2008:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2011:1:41","nodeType":"YulLiteral","src":"2011:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2001:6:41","nodeType":"YulIdentifier","src":"2001:6:41"},"nativeSrc":"2001:12:41","nodeType":"YulFunctionCall","src":"2001:12:41"},"nativeSrc":"2001:12:41","nodeType":"YulExpressionStatement","src":"2001:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1974:7:41","nodeType":"YulIdentifier","src":"1974:7:41"},{"name":"headStart","nativeSrc":"1983:9:41","nodeType":"YulIdentifier","src":"1983:9:41"}],"functionName":{"name":"sub","nativeSrc":"1970:3:41","nodeType":"YulIdentifier","src":"1970:3:41"},"nativeSrc":"1970:23:41","nodeType":"YulFunctionCall","src":"1970:23:41"},{"kind":"number","nativeSrc":"1995:2:41","nodeType":"YulLiteral","src":"1995:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1966:3:41","nodeType":"YulIdentifier","src":"1966:3:41"},"nativeSrc":"1966:32:41","nodeType":"YulFunctionCall","src":"1966:32:41"},"nativeSrc":"1963:52:41","nodeType":"YulIf","src":"1963:52:41"},{"nativeSrc":"2024:14:41","nodeType":"YulVariableDeclaration","src":"2024:14:41","value":{"kind":"number","nativeSrc":"2037:1:41","nodeType":"YulLiteral","src":"2037:1:41","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"2028:5:41","nodeType":"YulTypedName","src":"2028:5:41","type":""}]},{"nativeSrc":"2047:32:41","nodeType":"YulAssignment","src":"2047:32:41","value":{"arguments":[{"name":"headStart","nativeSrc":"2069:9:41","nodeType":"YulIdentifier","src":"2069:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"2056:12:41","nodeType":"YulIdentifier","src":"2056:12:41"},"nativeSrc":"2056:23:41","nodeType":"YulFunctionCall","src":"2056:23:41"},"variableNames":[{"name":"value","nativeSrc":"2047:5:41","nodeType":"YulIdentifier","src":"2047:5:41"}]},{"nativeSrc":"2088:15:41","nodeType":"YulAssignment","src":"2088:15:41","value":{"name":"value","nativeSrc":"2098:5:41","nodeType":"YulIdentifier","src":"2098:5:41"},"variableNames":[{"name":"value0","nativeSrc":"2088:6:41","nodeType":"YulIdentifier","src":"2088:6:41"}]},{"nativeSrc":"2112:47:41","nodeType":"YulVariableDeclaration","src":"2112:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2144:9:41","nodeType":"YulIdentifier","src":"2144:9:41"},{"kind":"number","nativeSrc":"2155:2:41","nodeType":"YulLiteral","src":"2155:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2140:3:41","nodeType":"YulIdentifier","src":"2140:3:41"},"nativeSrc":"2140:18:41","nodeType":"YulFunctionCall","src":"2140:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"2127:12:41","nodeType":"YulIdentifier","src":"2127:12:41"},"nativeSrc":"2127:32:41","nodeType":"YulFunctionCall","src":"2127:32:41"},"variables":[{"name":"value_1","nativeSrc":"2116:7:41","nodeType":"YulTypedName","src":"2116:7:41","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"2193:7:41","nodeType":"YulIdentifier","src":"2193:7:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2168:24:41","nodeType":"YulIdentifier","src":"2168:24:41"},"nativeSrc":"2168:33:41","nodeType":"YulFunctionCall","src":"2168:33:41"},"nativeSrc":"2168:33:41","nodeType":"YulExpressionStatement","src":"2168:33:41"},{"nativeSrc":"2210:17:41","nodeType":"YulAssignment","src":"2210:17:41","value":{"name":"value_1","nativeSrc":"2220:7:41","nodeType":"YulIdentifier","src":"2220:7:41"},"variableNames":[{"name":"value1","nativeSrc":"2210:6:41","nodeType":"YulIdentifier","src":"2210:6:41"}]}]},"name":"abi_decode_tuple_t_bytes32t_address","nativeSrc":"1866:367:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1911:9:41","nodeType":"YulTypedName","src":"1911:9:41","type":""},{"name":"dataEnd","nativeSrc":"1922:7:41","nodeType":"YulTypedName","src":"1922:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1934:6:41","nodeType":"YulTypedName","src":"1934:6:41","type":""},{"name":"value1","nativeSrc":"1942:6:41","nodeType":"YulTypedName","src":"1942:6:41","type":""}],"src":"1866:367:41"},{"body":{"nativeSrc":"2322:283:41","nodeType":"YulBlock","src":"2322:283:41","statements":[{"body":{"nativeSrc":"2371:16:41","nodeType":"YulBlock","src":"2371:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2380:1:41","nodeType":"YulLiteral","src":"2380:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2383:1:41","nodeType":"YulLiteral","src":"2383:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2373:6:41","nodeType":"YulIdentifier","src":"2373:6:41"},"nativeSrc":"2373:12:41","nodeType":"YulFunctionCall","src":"2373:12:41"},"nativeSrc":"2373:12:41","nodeType":"YulExpressionStatement","src":"2373:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2350:6:41","nodeType":"YulIdentifier","src":"2350:6:41"},{"kind":"number","nativeSrc":"2358:4:41","nodeType":"YulLiteral","src":"2358:4:41","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2346:3:41","nodeType":"YulIdentifier","src":"2346:3:41"},"nativeSrc":"2346:17:41","nodeType":"YulFunctionCall","src":"2346:17:41"},{"name":"end","nativeSrc":"2365:3:41","nodeType":"YulIdentifier","src":"2365:3:41"}],"functionName":{"name":"slt","nativeSrc":"2342:3:41","nodeType":"YulIdentifier","src":"2342:3:41"},"nativeSrc":"2342:27:41","nodeType":"YulFunctionCall","src":"2342:27:41"}],"functionName":{"name":"iszero","nativeSrc":"2335:6:41","nodeType":"YulIdentifier","src":"2335:6:41"},"nativeSrc":"2335:35:41","nodeType":"YulFunctionCall","src":"2335:35:41"},"nativeSrc":"2332:55:41","nodeType":"YulIf","src":"2332:55:41"},{"nativeSrc":"2396:30:41","nodeType":"YulAssignment","src":"2396:30:41","value":{"arguments":[{"name":"offset","nativeSrc":"2419:6:41","nodeType":"YulIdentifier","src":"2419:6:41"}],"functionName":{"name":"calldataload","nativeSrc":"2406:12:41","nodeType":"YulIdentifier","src":"2406:12:41"},"nativeSrc":"2406:20:41","nodeType":"YulFunctionCall","src":"2406:20:41"},"variableNames":[{"name":"length","nativeSrc":"2396:6:41","nodeType":"YulIdentifier","src":"2396:6:41"}]},{"body":{"nativeSrc":"2469:16:41","nodeType":"YulBlock","src":"2469:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2478:1:41","nodeType":"YulLiteral","src":"2478:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2481:1:41","nodeType":"YulLiteral","src":"2481:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2471:6:41","nodeType":"YulIdentifier","src":"2471:6:41"},"nativeSrc":"2471:12:41","nodeType":"YulFunctionCall","src":"2471:12:41"},"nativeSrc":"2471:12:41","nodeType":"YulExpressionStatement","src":"2471:12:41"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"2441:6:41","nodeType":"YulIdentifier","src":"2441:6:41"},{"kind":"number","nativeSrc":"2449:18:41","nodeType":"YulLiteral","src":"2449:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2438:2:41","nodeType":"YulIdentifier","src":"2438:2:41"},"nativeSrc":"2438:30:41","nodeType":"YulFunctionCall","src":"2438:30:41"},"nativeSrc":"2435:50:41","nodeType":"YulIf","src":"2435:50:41"},{"nativeSrc":"2494:29:41","nodeType":"YulAssignment","src":"2494:29:41","value":{"arguments":[{"name":"offset","nativeSrc":"2510:6:41","nodeType":"YulIdentifier","src":"2510:6:41"},{"kind":"number","nativeSrc":"2518:4:41","nodeType":"YulLiteral","src":"2518:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2506:3:41","nodeType":"YulIdentifier","src":"2506:3:41"},"nativeSrc":"2506:17:41","nodeType":"YulFunctionCall","src":"2506:17:41"},"variableNames":[{"name":"arrayPos","nativeSrc":"2494:8:41","nodeType":"YulIdentifier","src":"2494:8:41"}]},{"body":{"nativeSrc":"2583:16:41","nodeType":"YulBlock","src":"2583:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2592:1:41","nodeType":"YulLiteral","src":"2592:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2595:1:41","nodeType":"YulLiteral","src":"2595:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2585:6:41","nodeType":"YulIdentifier","src":"2585:6:41"},"nativeSrc":"2585:12:41","nodeType":"YulFunctionCall","src":"2585:12:41"},"nativeSrc":"2585:12:41","nodeType":"YulExpressionStatement","src":"2585:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2546:6:41","nodeType":"YulIdentifier","src":"2546:6:41"},{"arguments":[{"kind":"number","nativeSrc":"2558:1:41","nodeType":"YulLiteral","src":"2558:1:41","type":"","value":"5"},{"name":"length","nativeSrc":"2561:6:41","nodeType":"YulIdentifier","src":"2561:6:41"}],"functionName":{"name":"shl","nativeSrc":"2554:3:41","nodeType":"YulIdentifier","src":"2554:3:41"},"nativeSrc":"2554:14:41","nodeType":"YulFunctionCall","src":"2554:14:41"}],"functionName":{"name":"add","nativeSrc":"2542:3:41","nodeType":"YulIdentifier","src":"2542:3:41"},"nativeSrc":"2542:27:41","nodeType":"YulFunctionCall","src":"2542:27:41"},{"kind":"number","nativeSrc":"2571:4:41","nodeType":"YulLiteral","src":"2571:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2538:3:41","nodeType":"YulIdentifier","src":"2538:3:41"},"nativeSrc":"2538:38:41","nodeType":"YulFunctionCall","src":"2538:38:41"},{"name":"end","nativeSrc":"2578:3:41","nodeType":"YulIdentifier","src":"2578:3:41"}],"functionName":{"name":"gt","nativeSrc":"2535:2:41","nodeType":"YulIdentifier","src":"2535:2:41"},"nativeSrc":"2535:47:41","nodeType":"YulFunctionCall","src":"2535:47:41"},"nativeSrc":"2532:67:41","nodeType":"YulIf","src":"2532:67:41"}]},"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"2238:367:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"2285:6:41","nodeType":"YulTypedName","src":"2285:6:41","type":""},{"name":"end","nativeSrc":"2293:3:41","nodeType":"YulTypedName","src":"2293:3:41","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"2301:8:41","nodeType":"YulTypedName","src":"2301:8:41","type":""},{"name":"length","nativeSrc":"2311:6:41","nodeType":"YulTypedName","src":"2311:6:41","type":""}],"src":"2238:367:41"},{"body":{"nativeSrc":"2830:890:41","nodeType":"YulBlock","src":"2830:890:41","statements":[{"body":{"nativeSrc":"2876:16:41","nodeType":"YulBlock","src":"2876:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2885:1:41","nodeType":"YulLiteral","src":"2885:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2888:1:41","nodeType":"YulLiteral","src":"2888:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2878:6:41","nodeType":"YulIdentifier","src":"2878:6:41"},"nativeSrc":"2878:12:41","nodeType":"YulFunctionCall","src":"2878:12:41"},"nativeSrc":"2878:12:41","nodeType":"YulExpressionStatement","src":"2878:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2851:7:41","nodeType":"YulIdentifier","src":"2851:7:41"},{"name":"headStart","nativeSrc":"2860:9:41","nodeType":"YulIdentifier","src":"2860:9:41"}],"functionName":{"name":"sub","nativeSrc":"2847:3:41","nodeType":"YulIdentifier","src":"2847:3:41"},"nativeSrc":"2847:23:41","nodeType":"YulFunctionCall","src":"2847:23:41"},{"kind":"number","nativeSrc":"2872:2:41","nodeType":"YulLiteral","src":"2872:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"2843:3:41","nodeType":"YulIdentifier","src":"2843:3:41"},"nativeSrc":"2843:32:41","nodeType":"YulFunctionCall","src":"2843:32:41"},"nativeSrc":"2840:52:41","nodeType":"YulIf","src":"2840:52:41"},{"nativeSrc":"2901:37:41","nodeType":"YulVariableDeclaration","src":"2901:37:41","value":{"arguments":[{"name":"headStart","nativeSrc":"2928:9:41","nodeType":"YulIdentifier","src":"2928:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"2915:12:41","nodeType":"YulIdentifier","src":"2915:12:41"},"nativeSrc":"2915:23:41","nodeType":"YulFunctionCall","src":"2915:23:41"},"variables":[{"name":"offset","nativeSrc":"2905:6:41","nodeType":"YulTypedName","src":"2905:6:41","type":""}]},{"body":{"nativeSrc":"2981:16:41","nodeType":"YulBlock","src":"2981:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2990:1:41","nodeType":"YulLiteral","src":"2990:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2993:1:41","nodeType":"YulLiteral","src":"2993:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2983:6:41","nodeType":"YulIdentifier","src":"2983:6:41"},"nativeSrc":"2983:12:41","nodeType":"YulFunctionCall","src":"2983:12:41"},"nativeSrc":"2983:12:41","nodeType":"YulExpressionStatement","src":"2983:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"2953:6:41","nodeType":"YulIdentifier","src":"2953:6:41"},{"kind":"number","nativeSrc":"2961:18:41","nodeType":"YulLiteral","src":"2961:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2950:2:41","nodeType":"YulIdentifier","src":"2950:2:41"},"nativeSrc":"2950:30:41","nodeType":"YulFunctionCall","src":"2950:30:41"},"nativeSrc":"2947:50:41","nodeType":"YulIf","src":"2947:50:41"},{"nativeSrc":"3006:96:41","nodeType":"YulVariableDeclaration","src":"3006:96:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3074:9:41","nodeType":"YulIdentifier","src":"3074:9:41"},{"name":"offset","nativeSrc":"3085:6:41","nodeType":"YulIdentifier","src":"3085:6:41"}],"functionName":{"name":"add","nativeSrc":"3070:3:41","nodeType":"YulIdentifier","src":"3070:3:41"},"nativeSrc":"3070:22:41","nodeType":"YulFunctionCall","src":"3070:22:41"},{"name":"dataEnd","nativeSrc":"3094:7:41","nodeType":"YulIdentifier","src":"3094:7:41"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"3032:37:41","nodeType":"YulIdentifier","src":"3032:37:41"},"nativeSrc":"3032:70:41","nodeType":"YulFunctionCall","src":"3032:70:41"},"variables":[{"name":"value0_1","nativeSrc":"3010:8:41","nodeType":"YulTypedName","src":"3010:8:41","type":""},{"name":"value1_1","nativeSrc":"3020:8:41","nodeType":"YulTypedName","src":"3020:8:41","type":""}]},{"nativeSrc":"3111:18:41","nodeType":"YulAssignment","src":"3111:18:41","value":{"name":"value0_1","nativeSrc":"3121:8:41","nodeType":"YulIdentifier","src":"3121:8:41"},"variableNames":[{"name":"value0","nativeSrc":"3111:6:41","nodeType":"YulIdentifier","src":"3111:6:41"}]},{"nativeSrc":"3138:18:41","nodeType":"YulAssignment","src":"3138:18:41","value":{"name":"value1_1","nativeSrc":"3148:8:41","nodeType":"YulIdentifier","src":"3148:8:41"},"variableNames":[{"name":"value1","nativeSrc":"3138:6:41","nodeType":"YulIdentifier","src":"3138:6:41"}]},{"nativeSrc":"3165:48:41","nodeType":"YulVariableDeclaration","src":"3165:48:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3198:9:41","nodeType":"YulIdentifier","src":"3198:9:41"},{"kind":"number","nativeSrc":"3209:2:41","nodeType":"YulLiteral","src":"3209:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3194:3:41","nodeType":"YulIdentifier","src":"3194:3:41"},"nativeSrc":"3194:18:41","nodeType":"YulFunctionCall","src":"3194:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"3181:12:41","nodeType":"YulIdentifier","src":"3181:12:41"},"nativeSrc":"3181:32:41","nodeType":"YulFunctionCall","src":"3181:32:41"},"variables":[{"name":"offset_1","nativeSrc":"3169:8:41","nodeType":"YulTypedName","src":"3169:8:41","type":""}]},{"body":{"nativeSrc":"3258:16:41","nodeType":"YulBlock","src":"3258:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3267:1:41","nodeType":"YulLiteral","src":"3267:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3270:1:41","nodeType":"YulLiteral","src":"3270:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3260:6:41","nodeType":"YulIdentifier","src":"3260:6:41"},"nativeSrc":"3260:12:41","nodeType":"YulFunctionCall","src":"3260:12:41"},"nativeSrc":"3260:12:41","nodeType":"YulExpressionStatement","src":"3260:12:41"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"3228:8:41","nodeType":"YulIdentifier","src":"3228:8:41"},{"kind":"number","nativeSrc":"3238:18:41","nodeType":"YulLiteral","src":"3238:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3225:2:41","nodeType":"YulIdentifier","src":"3225:2:41"},"nativeSrc":"3225:32:41","nodeType":"YulFunctionCall","src":"3225:32:41"},"nativeSrc":"3222:52:41","nodeType":"YulIf","src":"3222:52:41"},{"nativeSrc":"3283:98:41","nodeType":"YulVariableDeclaration","src":"3283:98:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3351:9:41","nodeType":"YulIdentifier","src":"3351:9:41"},{"name":"offset_1","nativeSrc":"3362:8:41","nodeType":"YulIdentifier","src":"3362:8:41"}],"functionName":{"name":"add","nativeSrc":"3347:3:41","nodeType":"YulIdentifier","src":"3347:3:41"},"nativeSrc":"3347:24:41","nodeType":"YulFunctionCall","src":"3347:24:41"},{"name":"dataEnd","nativeSrc":"3373:7:41","nodeType":"YulIdentifier","src":"3373:7:41"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"3309:37:41","nodeType":"YulIdentifier","src":"3309:37:41"},"nativeSrc":"3309:72:41","nodeType":"YulFunctionCall","src":"3309:72:41"},"variables":[{"name":"value2_1","nativeSrc":"3287:8:41","nodeType":"YulTypedName","src":"3287:8:41","type":""},{"name":"value3_1","nativeSrc":"3297:8:41","nodeType":"YulTypedName","src":"3297:8:41","type":""}]},{"nativeSrc":"3390:18:41","nodeType":"YulAssignment","src":"3390:18:41","value":{"name":"value2_1","nativeSrc":"3400:8:41","nodeType":"YulIdentifier","src":"3400:8:41"},"variableNames":[{"name":"value2","nativeSrc":"3390:6:41","nodeType":"YulIdentifier","src":"3390:6:41"}]},{"nativeSrc":"3417:18:41","nodeType":"YulAssignment","src":"3417:18:41","value":{"name":"value3_1","nativeSrc":"3427:8:41","nodeType":"YulIdentifier","src":"3427:8:41"},"variableNames":[{"name":"value3","nativeSrc":"3417:6:41","nodeType":"YulIdentifier","src":"3417:6:41"}]},{"nativeSrc":"3444:48:41","nodeType":"YulVariableDeclaration","src":"3444:48:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3477:9:41","nodeType":"YulIdentifier","src":"3477:9:41"},{"kind":"number","nativeSrc":"3488:2:41","nodeType":"YulLiteral","src":"3488:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3473:3:41","nodeType":"YulIdentifier","src":"3473:3:41"},"nativeSrc":"3473:18:41","nodeType":"YulFunctionCall","src":"3473:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"3460:12:41","nodeType":"YulIdentifier","src":"3460:12:41"},"nativeSrc":"3460:32:41","nodeType":"YulFunctionCall","src":"3460:32:41"},"variables":[{"name":"offset_2","nativeSrc":"3448:8:41","nodeType":"YulTypedName","src":"3448:8:41","type":""}]},{"body":{"nativeSrc":"3537:16:41","nodeType":"YulBlock","src":"3537:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3546:1:41","nodeType":"YulLiteral","src":"3546:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3549:1:41","nodeType":"YulLiteral","src":"3549:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3539:6:41","nodeType":"YulIdentifier","src":"3539:6:41"},"nativeSrc":"3539:12:41","nodeType":"YulFunctionCall","src":"3539:12:41"},"nativeSrc":"3539:12:41","nodeType":"YulExpressionStatement","src":"3539:12:41"}]},"condition":{"arguments":[{"name":"offset_2","nativeSrc":"3507:8:41","nodeType":"YulIdentifier","src":"3507:8:41"},{"kind":"number","nativeSrc":"3517:18:41","nodeType":"YulLiteral","src":"3517:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3504:2:41","nodeType":"YulIdentifier","src":"3504:2:41"},"nativeSrc":"3504:32:41","nodeType":"YulFunctionCall","src":"3504:32:41"},"nativeSrc":"3501:52:41","nodeType":"YulIf","src":"3501:52:41"},{"nativeSrc":"3562:98:41","nodeType":"YulVariableDeclaration","src":"3562:98:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3630:9:41","nodeType":"YulIdentifier","src":"3630:9:41"},{"name":"offset_2","nativeSrc":"3641:8:41","nodeType":"YulIdentifier","src":"3641:8:41"}],"functionName":{"name":"add","nativeSrc":"3626:3:41","nodeType":"YulIdentifier","src":"3626:3:41"},"nativeSrc":"3626:24:41","nodeType":"YulFunctionCall","src":"3626:24:41"},{"name":"dataEnd","nativeSrc":"3652:7:41","nodeType":"YulIdentifier","src":"3652:7:41"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"3588:37:41","nodeType":"YulIdentifier","src":"3588:37:41"},"nativeSrc":"3588:72:41","nodeType":"YulFunctionCall","src":"3588:72:41"},"variables":[{"name":"value4_1","nativeSrc":"3566:8:41","nodeType":"YulTypedName","src":"3566:8:41","type":""},{"name":"value5_1","nativeSrc":"3576:8:41","nodeType":"YulTypedName","src":"3576:8:41","type":""}]},{"nativeSrc":"3669:18:41","nodeType":"YulAssignment","src":"3669:18:41","value":{"name":"value4_1","nativeSrc":"3679:8:41","nodeType":"YulIdentifier","src":"3679:8:41"},"variableNames":[{"name":"value4","nativeSrc":"3669:6:41","nodeType":"YulIdentifier","src":"3669:6:41"}]},{"nativeSrc":"3696:18:41","nodeType":"YulAssignment","src":"3696:18:41","value":{"name":"value5_1","nativeSrc":"3706:8:41","nodeType":"YulIdentifier","src":"3706:8:41"},"variableNames":[{"name":"value5","nativeSrc":"3696:6:41","nodeType":"YulIdentifier","src":"3696:6:41"}]}]},"name":"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_uint256_$dyn_calldata_ptrt_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","nativeSrc":"2610:1110:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2756:9:41","nodeType":"YulTypedName","src":"2756:9:41","type":""},{"name":"dataEnd","nativeSrc":"2767:7:41","nodeType":"YulTypedName","src":"2767:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2779:6:41","nodeType":"YulTypedName","src":"2779:6:41","type":""},{"name":"value1","nativeSrc":"2787:6:41","nodeType":"YulTypedName","src":"2787:6:41","type":""},{"name":"value2","nativeSrc":"2795:6:41","nodeType":"YulTypedName","src":"2795:6:41","type":""},{"name":"value3","nativeSrc":"2803:6:41","nodeType":"YulTypedName","src":"2803:6:41","type":""},{"name":"value4","nativeSrc":"2811:6:41","nodeType":"YulTypedName","src":"2811:6:41","type":""},{"name":"value5","nativeSrc":"2819:6:41","nodeType":"YulTypedName","src":"2819:6:41","type":""}],"src":"2610:1110:41"},{"body":{"nativeSrc":"3820:280:41","nodeType":"YulBlock","src":"3820:280:41","statements":[{"body":{"nativeSrc":"3866:16:41","nodeType":"YulBlock","src":"3866:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3875:1:41","nodeType":"YulLiteral","src":"3875:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3878:1:41","nodeType":"YulLiteral","src":"3878:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3868:6:41","nodeType":"YulIdentifier","src":"3868:6:41"},"nativeSrc":"3868:12:41","nodeType":"YulFunctionCall","src":"3868:12:41"},"nativeSrc":"3868:12:41","nodeType":"YulExpressionStatement","src":"3868:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3841:7:41","nodeType":"YulIdentifier","src":"3841:7:41"},{"name":"headStart","nativeSrc":"3850:9:41","nodeType":"YulIdentifier","src":"3850:9:41"}],"functionName":{"name":"sub","nativeSrc":"3837:3:41","nodeType":"YulIdentifier","src":"3837:3:41"},"nativeSrc":"3837:23:41","nodeType":"YulFunctionCall","src":"3837:23:41"},{"kind":"number","nativeSrc":"3862:2:41","nodeType":"YulLiteral","src":"3862:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3833:3:41","nodeType":"YulIdentifier","src":"3833:3:41"},"nativeSrc":"3833:32:41","nodeType":"YulFunctionCall","src":"3833:32:41"},"nativeSrc":"3830:52:41","nodeType":"YulIf","src":"3830:52:41"},{"nativeSrc":"3891:36:41","nodeType":"YulVariableDeclaration","src":"3891:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"3917:9:41","nodeType":"YulIdentifier","src":"3917:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"3904:12:41","nodeType":"YulIdentifier","src":"3904:12:41"},"nativeSrc":"3904:23:41","nodeType":"YulFunctionCall","src":"3904:23:41"},"variables":[{"name":"value","nativeSrc":"3895:5:41","nodeType":"YulTypedName","src":"3895:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3961:5:41","nodeType":"YulIdentifier","src":"3961:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3936:24:41","nodeType":"YulIdentifier","src":"3936:24:41"},"nativeSrc":"3936:31:41","nodeType":"YulFunctionCall","src":"3936:31:41"},"nativeSrc":"3936:31:41","nodeType":"YulExpressionStatement","src":"3936:31:41"},{"nativeSrc":"3976:15:41","nodeType":"YulAssignment","src":"3976:15:41","value":{"name":"value","nativeSrc":"3986:5:41","nodeType":"YulIdentifier","src":"3986:5:41"},"variableNames":[{"name":"value0","nativeSrc":"3976:6:41","nodeType":"YulIdentifier","src":"3976:6:41"}]},{"nativeSrc":"4000:16:41","nodeType":"YulVariableDeclaration","src":"4000:16:41","value":{"kind":"number","nativeSrc":"4015:1:41","nodeType":"YulLiteral","src":"4015:1:41","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"4004:7:41","nodeType":"YulTypedName","src":"4004:7:41","type":""}]},{"nativeSrc":"4025:43:41","nodeType":"YulAssignment","src":"4025:43:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4053:9:41","nodeType":"YulIdentifier","src":"4053:9:41"},{"kind":"number","nativeSrc":"4064:2:41","nodeType":"YulLiteral","src":"4064:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4049:3:41","nodeType":"YulIdentifier","src":"4049:3:41"},"nativeSrc":"4049:18:41","nodeType":"YulFunctionCall","src":"4049:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"4036:12:41","nodeType":"YulIdentifier","src":"4036:12:41"},"nativeSrc":"4036:32:41","nodeType":"YulFunctionCall","src":"4036:32:41"},"variableNames":[{"name":"value_1","nativeSrc":"4025:7:41","nodeType":"YulIdentifier","src":"4025:7:41"}]},{"nativeSrc":"4077:17:41","nodeType":"YulAssignment","src":"4077:17:41","value":{"name":"value_1","nativeSrc":"4087:7:41","nodeType":"YulIdentifier","src":"4087:7:41"},"variableNames":[{"name":"value1","nativeSrc":"4077:6:41","nodeType":"YulIdentifier","src":"4077:6:41"}]}]},"name":"abi_decode_tuple_t_address_payablet_uint256","nativeSrc":"3725:375:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3778:9:41","nodeType":"YulTypedName","src":"3778:9:41","type":""},{"name":"dataEnd","nativeSrc":"3789:7:41","nodeType":"YulTypedName","src":"3789:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3801:6:41","nodeType":"YulTypedName","src":"3801:6:41","type":""},{"name":"value1","nativeSrc":"3809:6:41","nodeType":"YulTypedName","src":"3809:6:41","type":""}],"src":"3725:375:41"},{"body":{"nativeSrc":"4225:102:41","nodeType":"YulBlock","src":"4225:102:41","statements":[{"nativeSrc":"4235:26:41","nodeType":"YulAssignment","src":"4235:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"4247:9:41","nodeType":"YulIdentifier","src":"4247:9:41"},{"kind":"number","nativeSrc":"4258:2:41","nodeType":"YulLiteral","src":"4258:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4243:3:41","nodeType":"YulIdentifier","src":"4243:3:41"},"nativeSrc":"4243:18:41","nodeType":"YulFunctionCall","src":"4243:18:41"},"variableNames":[{"name":"tail","nativeSrc":"4235:4:41","nodeType":"YulIdentifier","src":"4235:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4277:9:41","nodeType":"YulIdentifier","src":"4277:9:41"},{"arguments":[{"name":"value0","nativeSrc":"4292:6:41","nodeType":"YulIdentifier","src":"4292:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4308:3:41","nodeType":"YulLiteral","src":"4308:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"4313:1:41","nodeType":"YulLiteral","src":"4313:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4304:3:41","nodeType":"YulIdentifier","src":"4304:3:41"},"nativeSrc":"4304:11:41","nodeType":"YulFunctionCall","src":"4304:11:41"},{"kind":"number","nativeSrc":"4317:1:41","nodeType":"YulLiteral","src":"4317:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4300:3:41","nodeType":"YulIdentifier","src":"4300:3:41"},"nativeSrc":"4300:19:41","nodeType":"YulFunctionCall","src":"4300:19:41"}],"functionName":{"name":"and","nativeSrc":"4288:3:41","nodeType":"YulIdentifier","src":"4288:3:41"},"nativeSrc":"4288:32:41","nodeType":"YulFunctionCall","src":"4288:32:41"}],"functionName":{"name":"mstore","nativeSrc":"4270:6:41","nodeType":"YulIdentifier","src":"4270:6:41"},"nativeSrc":"4270:51:41","nodeType":"YulFunctionCall","src":"4270:51:41"},"nativeSrc":"4270:51:41","nodeType":"YulExpressionStatement","src":"4270:51:41"}]},"name":"abi_encode_tuple_t_contract$_IEntryPoint_$909__to_t_address__fromStack_reversed","nativeSrc":"4105:222:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4194:9:41","nodeType":"YulTypedName","src":"4194:9:41","type":""},{"name":"value0","nativeSrc":"4205:6:41","nodeType":"YulTypedName","src":"4205:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4216:4:41","nodeType":"YulTypedName","src":"4216:4:41","type":""}],"src":"4105:222:41"},{"body":{"nativeSrc":"4455:718:41","nodeType":"YulBlock","src":"4455:718:41","statements":[{"body":{"nativeSrc":"4501:16:41","nodeType":"YulBlock","src":"4501:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4510:1:41","nodeType":"YulLiteral","src":"4510:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"4513:1:41","nodeType":"YulLiteral","src":"4513:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4503:6:41","nodeType":"YulIdentifier","src":"4503:6:41"},"nativeSrc":"4503:12:41","nodeType":"YulFunctionCall","src":"4503:12:41"},"nativeSrc":"4503:12:41","nodeType":"YulExpressionStatement","src":"4503:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4476:7:41","nodeType":"YulIdentifier","src":"4476:7:41"},{"name":"headStart","nativeSrc":"4485:9:41","nodeType":"YulIdentifier","src":"4485:9:41"}],"functionName":{"name":"sub","nativeSrc":"4472:3:41","nodeType":"YulIdentifier","src":"4472:3:41"},"nativeSrc":"4472:23:41","nodeType":"YulFunctionCall","src":"4472:23:41"},{"kind":"number","nativeSrc":"4497:2:41","nodeType":"YulLiteral","src":"4497:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"4468:3:41","nodeType":"YulIdentifier","src":"4468:3:41"},"nativeSrc":"4468:32:41","nodeType":"YulFunctionCall","src":"4468:32:41"},"nativeSrc":"4465:52:41","nodeType":"YulIf","src":"4465:52:41"},{"nativeSrc":"4526:36:41","nodeType":"YulVariableDeclaration","src":"4526:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"4552:9:41","nodeType":"YulIdentifier","src":"4552:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"4539:12:41","nodeType":"YulIdentifier","src":"4539:12:41"},"nativeSrc":"4539:23:41","nodeType":"YulFunctionCall","src":"4539:23:41"},"variables":[{"name":"value","nativeSrc":"4530:5:41","nodeType":"YulTypedName","src":"4530:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4596:5:41","nodeType":"YulIdentifier","src":"4596:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4571:24:41","nodeType":"YulIdentifier","src":"4571:24:41"},"nativeSrc":"4571:31:41","nodeType":"YulFunctionCall","src":"4571:31:41"},"nativeSrc":"4571:31:41","nodeType":"YulExpressionStatement","src":"4571:31:41"},{"nativeSrc":"4611:15:41","nodeType":"YulAssignment","src":"4611:15:41","value":{"name":"value","nativeSrc":"4621:5:41","nodeType":"YulIdentifier","src":"4621:5:41"},"variableNames":[{"name":"value0","nativeSrc":"4611:6:41","nodeType":"YulIdentifier","src":"4611:6:41"}]},{"nativeSrc":"4635:16:41","nodeType":"YulVariableDeclaration","src":"4635:16:41","value":{"kind":"number","nativeSrc":"4650:1:41","nodeType":"YulLiteral","src":"4650:1:41","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"4639:7:41","nodeType":"YulTypedName","src":"4639:7:41","type":""}]},{"nativeSrc":"4660:43:41","nodeType":"YulAssignment","src":"4660:43:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4688:9:41","nodeType":"YulIdentifier","src":"4688:9:41"},{"kind":"number","nativeSrc":"4699:2:41","nodeType":"YulLiteral","src":"4699:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4684:3:41","nodeType":"YulIdentifier","src":"4684:3:41"},"nativeSrc":"4684:18:41","nodeType":"YulFunctionCall","src":"4684:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"4671:12:41","nodeType":"YulIdentifier","src":"4671:12:41"},"nativeSrc":"4671:32:41","nodeType":"YulFunctionCall","src":"4671:32:41"},"variableNames":[{"name":"value_1","nativeSrc":"4660:7:41","nodeType":"YulIdentifier","src":"4660:7:41"}]},{"nativeSrc":"4712:17:41","nodeType":"YulAssignment","src":"4712:17:41","value":{"name":"value_1","nativeSrc":"4722:7:41","nodeType":"YulIdentifier","src":"4722:7:41"},"variableNames":[{"name":"value1","nativeSrc":"4712:6:41","nodeType":"YulIdentifier","src":"4712:6:41"}]},{"nativeSrc":"4738:46:41","nodeType":"YulVariableDeclaration","src":"4738:46:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4769:9:41","nodeType":"YulIdentifier","src":"4769:9:41"},{"kind":"number","nativeSrc":"4780:2:41","nodeType":"YulLiteral","src":"4780:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4765:3:41","nodeType":"YulIdentifier","src":"4765:3:41"},"nativeSrc":"4765:18:41","nodeType":"YulFunctionCall","src":"4765:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"4752:12:41","nodeType":"YulIdentifier","src":"4752:12:41"},"nativeSrc":"4752:32:41","nodeType":"YulFunctionCall","src":"4752:32:41"},"variables":[{"name":"offset","nativeSrc":"4742:6:41","nodeType":"YulTypedName","src":"4742:6:41","type":""}]},{"body":{"nativeSrc":"4827:16:41","nodeType":"YulBlock","src":"4827:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4836:1:41","nodeType":"YulLiteral","src":"4836:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"4839:1:41","nodeType":"YulLiteral","src":"4839:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4829:6:41","nodeType":"YulIdentifier","src":"4829:6:41"},"nativeSrc":"4829:12:41","nodeType":"YulFunctionCall","src":"4829:12:41"},"nativeSrc":"4829:12:41","nodeType":"YulExpressionStatement","src":"4829:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"4799:6:41","nodeType":"YulIdentifier","src":"4799:6:41"},{"kind":"number","nativeSrc":"4807:18:41","nodeType":"YulLiteral","src":"4807:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4796:2:41","nodeType":"YulIdentifier","src":"4796:2:41"},"nativeSrc":"4796:30:41","nodeType":"YulFunctionCall","src":"4796:30:41"},"nativeSrc":"4793:50:41","nodeType":"YulIf","src":"4793:50:41"},{"nativeSrc":"4852:32:41","nodeType":"YulVariableDeclaration","src":"4852:32:41","value":{"arguments":[{"name":"headStart","nativeSrc":"4866:9:41","nodeType":"YulIdentifier","src":"4866:9:41"},{"name":"offset","nativeSrc":"4877:6:41","nodeType":"YulIdentifier","src":"4877:6:41"}],"functionName":{"name":"add","nativeSrc":"4862:3:41","nodeType":"YulIdentifier","src":"4862:3:41"},"nativeSrc":"4862:22:41","nodeType":"YulFunctionCall","src":"4862:22:41"},"variables":[{"name":"_1","nativeSrc":"4856:2:41","nodeType":"YulTypedName","src":"4856:2:41","type":""}]},{"body":{"nativeSrc":"4932:16:41","nodeType":"YulBlock","src":"4932:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4941:1:41","nodeType":"YulLiteral","src":"4941:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"4944:1:41","nodeType":"YulLiteral","src":"4944:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4934:6:41","nodeType":"YulIdentifier","src":"4934:6:41"},"nativeSrc":"4934:12:41","nodeType":"YulFunctionCall","src":"4934:12:41"},"nativeSrc":"4934:12:41","nodeType":"YulExpressionStatement","src":"4934:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"4911:2:41","nodeType":"YulIdentifier","src":"4911:2:41"},{"kind":"number","nativeSrc":"4915:4:41","nodeType":"YulLiteral","src":"4915:4:41","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"4907:3:41","nodeType":"YulIdentifier","src":"4907:3:41"},"nativeSrc":"4907:13:41","nodeType":"YulFunctionCall","src":"4907:13:41"},{"name":"dataEnd","nativeSrc":"4922:7:41","nodeType":"YulIdentifier","src":"4922:7:41"}],"functionName":{"name":"slt","nativeSrc":"4903:3:41","nodeType":"YulIdentifier","src":"4903:3:41"},"nativeSrc":"4903:27:41","nodeType":"YulFunctionCall","src":"4903:27:41"}],"functionName":{"name":"iszero","nativeSrc":"4896:6:41","nodeType":"YulIdentifier","src":"4896:6:41"},"nativeSrc":"4896:35:41","nodeType":"YulFunctionCall","src":"4896:35:41"},"nativeSrc":"4893:55:41","nodeType":"YulIf","src":"4893:55:41"},{"nativeSrc":"4957:30:41","nodeType":"YulVariableDeclaration","src":"4957:30:41","value":{"arguments":[{"name":"_1","nativeSrc":"4984:2:41","nodeType":"YulIdentifier","src":"4984:2:41"}],"functionName":{"name":"calldataload","nativeSrc":"4971:12:41","nodeType":"YulIdentifier","src":"4971:12:41"},"nativeSrc":"4971:16:41","nodeType":"YulFunctionCall","src":"4971:16:41"},"variables":[{"name":"length","nativeSrc":"4961:6:41","nodeType":"YulTypedName","src":"4961:6:41","type":""}]},{"body":{"nativeSrc":"5030:16:41","nodeType":"YulBlock","src":"5030:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5039:1:41","nodeType":"YulLiteral","src":"5039:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"5042:1:41","nodeType":"YulLiteral","src":"5042:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5032:6:41","nodeType":"YulIdentifier","src":"5032:6:41"},"nativeSrc":"5032:12:41","nodeType":"YulFunctionCall","src":"5032:12:41"},"nativeSrc":"5032:12:41","nodeType":"YulExpressionStatement","src":"5032:12:41"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"5002:6:41","nodeType":"YulIdentifier","src":"5002:6:41"},{"kind":"number","nativeSrc":"5010:18:41","nodeType":"YulLiteral","src":"5010:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4999:2:41","nodeType":"YulIdentifier","src":"4999:2:41"},"nativeSrc":"4999:30:41","nodeType":"YulFunctionCall","src":"4999:30:41"},"nativeSrc":"4996:50:41","nodeType":"YulIf","src":"4996:50:41"},{"body":{"nativeSrc":"5096:16:41","nodeType":"YulBlock","src":"5096:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5105:1:41","nodeType":"YulLiteral","src":"5105:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"5108:1:41","nodeType":"YulLiteral","src":"5108:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5098:6:41","nodeType":"YulIdentifier","src":"5098:6:41"},"nativeSrc":"5098:12:41","nodeType":"YulFunctionCall","src":"5098:12:41"},"nativeSrc":"5098:12:41","nodeType":"YulExpressionStatement","src":"5098:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"5069:2:41","nodeType":"YulIdentifier","src":"5069:2:41"},{"name":"length","nativeSrc":"5073:6:41","nodeType":"YulIdentifier","src":"5073:6:41"}],"functionName":{"name":"add","nativeSrc":"5065:3:41","nodeType":"YulIdentifier","src":"5065:3:41"},"nativeSrc":"5065:15:41","nodeType":"YulFunctionCall","src":"5065:15:41"},{"kind":"number","nativeSrc":"5082:2:41","nodeType":"YulLiteral","src":"5082:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5061:3:41","nodeType":"YulIdentifier","src":"5061:3:41"},"nativeSrc":"5061:24:41","nodeType":"YulFunctionCall","src":"5061:24:41"},{"name":"dataEnd","nativeSrc":"5087:7:41","nodeType":"YulIdentifier","src":"5087:7:41"}],"functionName":{"name":"gt","nativeSrc":"5058:2:41","nodeType":"YulIdentifier","src":"5058:2:41"},"nativeSrc":"5058:37:41","nodeType":"YulFunctionCall","src":"5058:37:41"},"nativeSrc":"5055:57:41","nodeType":"YulIf","src":"5055:57:41"},{"nativeSrc":"5121:21:41","nodeType":"YulAssignment","src":"5121:21:41","value":{"arguments":[{"name":"_1","nativeSrc":"5135:2:41","nodeType":"YulIdentifier","src":"5135:2:41"},{"kind":"number","nativeSrc":"5139:2:41","nodeType":"YulLiteral","src":"5139:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5131:3:41","nodeType":"YulIdentifier","src":"5131:3:41"},"nativeSrc":"5131:11:41","nodeType":"YulFunctionCall","src":"5131:11:41"},"variableNames":[{"name":"value2","nativeSrc":"5121:6:41","nodeType":"YulIdentifier","src":"5121:6:41"}]},{"nativeSrc":"5151:16:41","nodeType":"YulAssignment","src":"5151:16:41","value":{"name":"length","nativeSrc":"5161:6:41","nodeType":"YulIdentifier","src":"5161:6:41"},"variableNames":[{"name":"value3","nativeSrc":"5151:6:41","nodeType":"YulIdentifier","src":"5151:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_bytes_calldata_ptr","nativeSrc":"4332:841:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4397:9:41","nodeType":"YulTypedName","src":"4397:9:41","type":""},{"name":"dataEnd","nativeSrc":"4408:7:41","nodeType":"YulTypedName","src":"4408:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4420:6:41","nodeType":"YulTypedName","src":"4420:6:41","type":""},{"name":"value1","nativeSrc":"4428:6:41","nodeType":"YulTypedName","src":"4428:6:41","type":""},{"name":"value2","nativeSrc":"4436:6:41","nodeType":"YulTypedName","src":"4436:6:41","type":""},{"name":"value3","nativeSrc":"4444:6:41","nodeType":"YulTypedName","src":"4444:6:41","type":""}],"src":"4332:841:41"},{"body":{"nativeSrc":"5210:95:41","nodeType":"YulBlock","src":"5210:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5227:1:41","nodeType":"YulLiteral","src":"5227:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5234:3:41","nodeType":"YulLiteral","src":"5234:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"5239:10:41","nodeType":"YulLiteral","src":"5239:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5230:3:41","nodeType":"YulIdentifier","src":"5230:3:41"},"nativeSrc":"5230:20:41","nodeType":"YulFunctionCall","src":"5230:20:41"}],"functionName":{"name":"mstore","nativeSrc":"5220:6:41","nodeType":"YulIdentifier","src":"5220:6:41"},"nativeSrc":"5220:31:41","nodeType":"YulFunctionCall","src":"5220:31:41"},"nativeSrc":"5220:31:41","nodeType":"YulExpressionStatement","src":"5220:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5267:1:41","nodeType":"YulLiteral","src":"5267:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"5270:4:41","nodeType":"YulLiteral","src":"5270:4:41","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"5260:6:41","nodeType":"YulIdentifier","src":"5260:6:41"},"nativeSrc":"5260:15:41","nodeType":"YulFunctionCall","src":"5260:15:41"},"nativeSrc":"5260:15:41","nodeType":"YulExpressionStatement","src":"5260:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5291:1:41","nodeType":"YulLiteral","src":"5291:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"5294:4:41","nodeType":"YulLiteral","src":"5294:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5284:6:41","nodeType":"YulIdentifier","src":"5284:6:41"},"nativeSrc":"5284:15:41","nodeType":"YulFunctionCall","src":"5284:15:41"},"nativeSrc":"5284:15:41","nodeType":"YulExpressionStatement","src":"5284:15:41"}]},"name":"panic_error_0x32","nativeSrc":"5178:127:41","nodeType":"YulFunctionDefinition","src":"5178:127:41"},{"body":{"nativeSrc":"5380:177:41","nodeType":"YulBlock","src":"5380:177:41","statements":[{"body":{"nativeSrc":"5426:16:41","nodeType":"YulBlock","src":"5426:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5435:1:41","nodeType":"YulLiteral","src":"5435:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"5438:1:41","nodeType":"YulLiteral","src":"5438:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5428:6:41","nodeType":"YulIdentifier","src":"5428:6:41"},"nativeSrc":"5428:12:41","nodeType":"YulFunctionCall","src":"5428:12:41"},"nativeSrc":"5428:12:41","nodeType":"YulExpressionStatement","src":"5428:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5401:7:41","nodeType":"YulIdentifier","src":"5401:7:41"},{"name":"headStart","nativeSrc":"5410:9:41","nodeType":"YulIdentifier","src":"5410:9:41"}],"functionName":{"name":"sub","nativeSrc":"5397:3:41","nodeType":"YulIdentifier","src":"5397:3:41"},"nativeSrc":"5397:23:41","nodeType":"YulFunctionCall","src":"5397:23:41"},{"kind":"number","nativeSrc":"5422:2:41","nodeType":"YulLiteral","src":"5422:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5393:3:41","nodeType":"YulIdentifier","src":"5393:3:41"},"nativeSrc":"5393:32:41","nodeType":"YulFunctionCall","src":"5393:32:41"},"nativeSrc":"5390:52:41","nodeType":"YulIf","src":"5390:52:41"},{"nativeSrc":"5451:36:41","nodeType":"YulVariableDeclaration","src":"5451:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"5477:9:41","nodeType":"YulIdentifier","src":"5477:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"5464:12:41","nodeType":"YulIdentifier","src":"5464:12:41"},"nativeSrc":"5464:23:41","nodeType":"YulFunctionCall","src":"5464:23:41"},"variables":[{"name":"value","nativeSrc":"5455:5:41","nodeType":"YulTypedName","src":"5455:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5521:5:41","nodeType":"YulIdentifier","src":"5521:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"5496:24:41","nodeType":"YulIdentifier","src":"5496:24:41"},"nativeSrc":"5496:31:41","nodeType":"YulFunctionCall","src":"5496:31:41"},"nativeSrc":"5496:31:41","nodeType":"YulExpressionStatement","src":"5496:31:41"},{"nativeSrc":"5536:15:41","nodeType":"YulAssignment","src":"5536:15:41","value":{"name":"value","nativeSrc":"5546:5:41","nodeType":"YulIdentifier","src":"5546:5:41"},"variableNames":[{"name":"value0","nativeSrc":"5536:6:41","nodeType":"YulIdentifier","src":"5536:6:41"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"5310:247:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5346:9:41","nodeType":"YulTypedName","src":"5346:9:41","type":""},{"name":"dataEnd","nativeSrc":"5357:7:41","nodeType":"YulTypedName","src":"5357:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5369:6:41","nodeType":"YulTypedName","src":"5369:6:41","type":""}],"src":"5310:247:41"},{"body":{"nativeSrc":"5656:427:41","nodeType":"YulBlock","src":"5656:427:41","statements":[{"nativeSrc":"5666:51:41","nodeType":"YulVariableDeclaration","src":"5666:51:41","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"5705:11:41","nodeType":"YulIdentifier","src":"5705:11:41"}],"functionName":{"name":"calldataload","nativeSrc":"5692:12:41","nodeType":"YulIdentifier","src":"5692:12:41"},"nativeSrc":"5692:25:41","nodeType":"YulFunctionCall","src":"5692:25:41"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"5670:18:41","nodeType":"YulTypedName","src":"5670:18:41","type":""}]},{"body":{"nativeSrc":"5806:16:41","nodeType":"YulBlock","src":"5806:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5815:1:41","nodeType":"YulLiteral","src":"5815:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"5818:1:41","nodeType":"YulLiteral","src":"5818:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5808:6:41","nodeType":"YulIdentifier","src":"5808:6:41"},"nativeSrc":"5808:12:41","nodeType":"YulFunctionCall","src":"5808:12:41"},"nativeSrc":"5808:12:41","nodeType":"YulExpressionStatement","src":"5808:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"5740:18:41","nodeType":"YulIdentifier","src":"5740:18:41"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"5768:12:41","nodeType":"YulIdentifier","src":"5768:12:41"},"nativeSrc":"5768:14:41","nodeType":"YulFunctionCall","src":"5768:14:41"},{"name":"base_ref","nativeSrc":"5784:8:41","nodeType":"YulIdentifier","src":"5784:8:41"}],"functionName":{"name":"sub","nativeSrc":"5764:3:41","nodeType":"YulIdentifier","src":"5764:3:41"},"nativeSrc":"5764:29:41","nodeType":"YulFunctionCall","src":"5764:29:41"},{"arguments":[{"kind":"number","nativeSrc":"5799:2:41","nodeType":"YulLiteral","src":"5799:2:41","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"5795:3:41","nodeType":"YulIdentifier","src":"5795:3:41"},"nativeSrc":"5795:7:41","nodeType":"YulFunctionCall","src":"5795:7:41"}],"functionName":{"name":"add","nativeSrc":"5760:3:41","nodeType":"YulIdentifier","src":"5760:3:41"},"nativeSrc":"5760:43:41","nodeType":"YulFunctionCall","src":"5760:43:41"}],"functionName":{"name":"slt","nativeSrc":"5736:3:41","nodeType":"YulIdentifier","src":"5736:3:41"},"nativeSrc":"5736:68:41","nodeType":"YulFunctionCall","src":"5736:68:41"}],"functionName":{"name":"iszero","nativeSrc":"5729:6:41","nodeType":"YulIdentifier","src":"5729:6:41"},"nativeSrc":"5729:76:41","nodeType":"YulFunctionCall","src":"5729:76:41"},"nativeSrc":"5726:96:41","nodeType":"YulIf","src":"5726:96:41"},{"nativeSrc":"5831:47:41","nodeType":"YulVariableDeclaration","src":"5831:47:41","value":{"arguments":[{"name":"base_ref","nativeSrc":"5849:8:41","nodeType":"YulIdentifier","src":"5849:8:41"},{"name":"rel_offset_of_tail","nativeSrc":"5859:18:41","nodeType":"YulIdentifier","src":"5859:18:41"}],"functionName":{"name":"add","nativeSrc":"5845:3:41","nodeType":"YulIdentifier","src":"5845:3:41"},"nativeSrc":"5845:33:41","nodeType":"YulFunctionCall","src":"5845:33:41"},"variables":[{"name":"addr_1","nativeSrc":"5835:6:41","nodeType":"YulTypedName","src":"5835:6:41","type":""}]},{"nativeSrc":"5887:30:41","nodeType":"YulAssignment","src":"5887:30:41","value":{"arguments":[{"name":"addr_1","nativeSrc":"5910:6:41","nodeType":"YulIdentifier","src":"5910:6:41"}],"functionName":{"name":"calldataload","nativeSrc":"5897:12:41","nodeType":"YulIdentifier","src":"5897:12:41"},"nativeSrc":"5897:20:41","nodeType":"YulFunctionCall","src":"5897:20:41"},"variableNames":[{"name":"length","nativeSrc":"5887:6:41","nodeType":"YulIdentifier","src":"5887:6:41"}]},{"body":{"nativeSrc":"5960:16:41","nodeType":"YulBlock","src":"5960:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5969:1:41","nodeType":"YulLiteral","src":"5969:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"5972:1:41","nodeType":"YulLiteral","src":"5972:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5962:6:41","nodeType":"YulIdentifier","src":"5962:6:41"},"nativeSrc":"5962:12:41","nodeType":"YulFunctionCall","src":"5962:12:41"},"nativeSrc":"5962:12:41","nodeType":"YulExpressionStatement","src":"5962:12:41"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"5932:6:41","nodeType":"YulIdentifier","src":"5932:6:41"},{"kind":"number","nativeSrc":"5940:18:41","nodeType":"YulLiteral","src":"5940:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"5929:2:41","nodeType":"YulIdentifier","src":"5929:2:41"},"nativeSrc":"5929:30:41","nodeType":"YulFunctionCall","src":"5929:30:41"},"nativeSrc":"5926:50:41","nodeType":"YulIf","src":"5926:50:41"},{"nativeSrc":"5985:25:41","nodeType":"YulAssignment","src":"5985:25:41","value":{"arguments":[{"name":"addr_1","nativeSrc":"5997:6:41","nodeType":"YulIdentifier","src":"5997:6:41"},{"kind":"number","nativeSrc":"6005:4:41","nodeType":"YulLiteral","src":"6005:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5993:3:41","nodeType":"YulIdentifier","src":"5993:3:41"},"nativeSrc":"5993:17:41","nodeType":"YulFunctionCall","src":"5993:17:41"},"variableNames":[{"name":"addr","nativeSrc":"5985:4:41","nodeType":"YulIdentifier","src":"5985:4:41"}]},{"body":{"nativeSrc":"6061:16:41","nodeType":"YulBlock","src":"6061:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6070:1:41","nodeType":"YulLiteral","src":"6070:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"6073:1:41","nodeType":"YulLiteral","src":"6073:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6063:6:41","nodeType":"YulIdentifier","src":"6063:6:41"},"nativeSrc":"6063:12:41","nodeType":"YulFunctionCall","src":"6063:12:41"},"nativeSrc":"6063:12:41","nodeType":"YulExpressionStatement","src":"6063:12:41"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"6026:4:41","nodeType":"YulIdentifier","src":"6026:4:41"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"6036:12:41","nodeType":"YulIdentifier","src":"6036:12:41"},"nativeSrc":"6036:14:41","nodeType":"YulFunctionCall","src":"6036:14:41"},{"name":"length","nativeSrc":"6052:6:41","nodeType":"YulIdentifier","src":"6052:6:41"}],"functionName":{"name":"sub","nativeSrc":"6032:3:41","nodeType":"YulIdentifier","src":"6032:3:41"},"nativeSrc":"6032:27:41","nodeType":"YulFunctionCall","src":"6032:27:41"}],"functionName":{"name":"sgt","nativeSrc":"6022:3:41","nodeType":"YulIdentifier","src":"6022:3:41"},"nativeSrc":"6022:38:41","nodeType":"YulFunctionCall","src":"6022:38:41"},"nativeSrc":"6019:58:41","nodeType":"YulIf","src":"6019:58:41"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"5562:521:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"5613:8:41","nodeType":"YulTypedName","src":"5613:8:41","type":""},{"name":"ptr_to_tail","nativeSrc":"5623:11:41","nodeType":"YulTypedName","src":"5623:11:41","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"5639:4:41","nodeType":"YulTypedName","src":"5639:4:41","type":""},{"name":"length","nativeSrc":"5645:6:41","nodeType":"YulTypedName","src":"5645:6:41","type":""}],"src":"5562:521:41"},{"body":{"nativeSrc":"6189:102:41","nodeType":"YulBlock","src":"6189:102:41","statements":[{"nativeSrc":"6199:26:41","nodeType":"YulAssignment","src":"6199:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"6211:9:41","nodeType":"YulIdentifier","src":"6211:9:41"},{"kind":"number","nativeSrc":"6222:2:41","nodeType":"YulLiteral","src":"6222:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6207:3:41","nodeType":"YulIdentifier","src":"6207:3:41"},"nativeSrc":"6207:18:41","nodeType":"YulFunctionCall","src":"6207:18:41"},"variableNames":[{"name":"tail","nativeSrc":"6199:4:41","nodeType":"YulIdentifier","src":"6199:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6241:9:41","nodeType":"YulIdentifier","src":"6241:9:41"},{"arguments":[{"name":"value0","nativeSrc":"6256:6:41","nodeType":"YulIdentifier","src":"6256:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6272:3:41","nodeType":"YulLiteral","src":"6272:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"6277:1:41","nodeType":"YulLiteral","src":"6277:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6268:3:41","nodeType":"YulIdentifier","src":"6268:3:41"},"nativeSrc":"6268:11:41","nodeType":"YulFunctionCall","src":"6268:11:41"},{"kind":"number","nativeSrc":"6281:1:41","nodeType":"YulLiteral","src":"6281:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6264:3:41","nodeType":"YulIdentifier","src":"6264:3:41"},"nativeSrc":"6264:19:41","nodeType":"YulFunctionCall","src":"6264:19:41"}],"functionName":{"name":"and","nativeSrc":"6252:3:41","nodeType":"YulIdentifier","src":"6252:3:41"},"nativeSrc":"6252:32:41","nodeType":"YulFunctionCall","src":"6252:32:41"}],"functionName":{"name":"mstore","nativeSrc":"6234:6:41","nodeType":"YulIdentifier","src":"6234:6:41"},"nativeSrc":"6234:51:41","nodeType":"YulFunctionCall","src":"6234:51:41"},"nativeSrc":"6234:51:41","nodeType":"YulExpressionStatement","src":"6234:51:41"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"6088:203:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6158:9:41","nodeType":"YulTypedName","src":"6158:9:41","type":""},{"name":"value0","nativeSrc":"6169:6:41","nodeType":"YulTypedName","src":"6169:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6180:4:41","nodeType":"YulTypedName","src":"6180:4:41","type":""}],"src":"6088:203:41"},{"body":{"nativeSrc":"6441:145:41","nodeType":"YulBlock","src":"6441:145:41","statements":[{"nativeSrc":"6451:26:41","nodeType":"YulAssignment","src":"6451:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"6463:9:41","nodeType":"YulIdentifier","src":"6463:9:41"},{"kind":"number","nativeSrc":"6474:2:41","nodeType":"YulLiteral","src":"6474:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6459:3:41","nodeType":"YulIdentifier","src":"6459:3:41"},"nativeSrc":"6459:18:41","nodeType":"YulFunctionCall","src":"6459:18:41"},"variableNames":[{"name":"tail","nativeSrc":"6451:4:41","nodeType":"YulIdentifier","src":"6451:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6493:9:41","nodeType":"YulIdentifier","src":"6493:9:41"},{"arguments":[{"name":"value0","nativeSrc":"6508:6:41","nodeType":"YulIdentifier","src":"6508:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6524:3:41","nodeType":"YulLiteral","src":"6524:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"6529:1:41","nodeType":"YulLiteral","src":"6529:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6520:3:41","nodeType":"YulIdentifier","src":"6520:3:41"},"nativeSrc":"6520:11:41","nodeType":"YulFunctionCall","src":"6520:11:41"},{"kind":"number","nativeSrc":"6533:1:41","nodeType":"YulLiteral","src":"6533:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6516:3:41","nodeType":"YulIdentifier","src":"6516:3:41"},"nativeSrc":"6516:19:41","nodeType":"YulFunctionCall","src":"6516:19:41"}],"functionName":{"name":"and","nativeSrc":"6504:3:41","nodeType":"YulIdentifier","src":"6504:3:41"},"nativeSrc":"6504:32:41","nodeType":"YulFunctionCall","src":"6504:32:41"}],"functionName":{"name":"mstore","nativeSrc":"6486:6:41","nodeType":"YulIdentifier","src":"6486:6:41"},"nativeSrc":"6486:51:41","nodeType":"YulFunctionCall","src":"6486:51:41"},"nativeSrc":"6486:51:41","nodeType":"YulExpressionStatement","src":"6486:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6557:9:41","nodeType":"YulIdentifier","src":"6557:9:41"},{"kind":"number","nativeSrc":"6568:2:41","nodeType":"YulLiteral","src":"6568:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6553:3:41","nodeType":"YulIdentifier","src":"6553:3:41"},"nativeSrc":"6553:18:41","nodeType":"YulFunctionCall","src":"6553:18:41"},{"name":"value1","nativeSrc":"6573:6:41","nodeType":"YulIdentifier","src":"6573:6:41"}],"functionName":{"name":"mstore","nativeSrc":"6546:6:41","nodeType":"YulIdentifier","src":"6546:6:41"},"nativeSrc":"6546:34:41","nodeType":"YulFunctionCall","src":"6546:34:41"},"nativeSrc":"6546:34:41","nodeType":"YulExpressionStatement","src":"6546:34:41"}]},"name":"abi_encode_tuple_t_address_payable_t_uint256__to_t_address_payable_t_uint256__fromStack_reversed","nativeSrc":"6296:290:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6402:9:41","nodeType":"YulTypedName","src":"6402:9:41","type":""},{"name":"value1","nativeSrc":"6413:6:41","nodeType":"YulTypedName","src":"6413:6:41","type":""},{"name":"value0","nativeSrc":"6421:6:41","nodeType":"YulTypedName","src":"6421:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6432:4:41","nodeType":"YulTypedName","src":"6432:4:41","type":""}],"src":"6296:290:41"},{"body":{"nativeSrc":"6672:103:41","nodeType":"YulBlock","src":"6672:103:41","statements":[{"body":{"nativeSrc":"6718:16:41","nodeType":"YulBlock","src":"6718:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6727:1:41","nodeType":"YulLiteral","src":"6727:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"6730:1:41","nodeType":"YulLiteral","src":"6730:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6720:6:41","nodeType":"YulIdentifier","src":"6720:6:41"},"nativeSrc":"6720:12:41","nodeType":"YulFunctionCall","src":"6720:12:41"},"nativeSrc":"6720:12:41","nodeType":"YulExpressionStatement","src":"6720:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6693:7:41","nodeType":"YulIdentifier","src":"6693:7:41"},{"name":"headStart","nativeSrc":"6702:9:41","nodeType":"YulIdentifier","src":"6702:9:41"}],"functionName":{"name":"sub","nativeSrc":"6689:3:41","nodeType":"YulIdentifier","src":"6689:3:41"},"nativeSrc":"6689:23:41","nodeType":"YulFunctionCall","src":"6689:23:41"},{"kind":"number","nativeSrc":"6714:2:41","nodeType":"YulLiteral","src":"6714:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"6685:3:41","nodeType":"YulIdentifier","src":"6685:3:41"},"nativeSrc":"6685:32:41","nodeType":"YulFunctionCall","src":"6685:32:41"},"nativeSrc":"6682:52:41","nodeType":"YulIf","src":"6682:52:41"},{"nativeSrc":"6743:26:41","nodeType":"YulAssignment","src":"6743:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"6759:9:41","nodeType":"YulIdentifier","src":"6759:9:41"}],"functionName":{"name":"mload","nativeSrc":"6753:5:41","nodeType":"YulIdentifier","src":"6753:5:41"},"nativeSrc":"6753:16:41","nodeType":"YulFunctionCall","src":"6753:16:41"},"variableNames":[{"name":"value0","nativeSrc":"6743:6:41","nodeType":"YulIdentifier","src":"6743:6:41"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"6591:184:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6638:9:41","nodeType":"YulTypedName","src":"6638:9:41","type":""},{"name":"dataEnd","nativeSrc":"6649:7:41","nodeType":"YulTypedName","src":"6649:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6661:6:41","nodeType":"YulTypedName","src":"6661:6:41","type":""}],"src":"6591:184:41"},{"body":{"nativeSrc":"6917:171:41","nodeType":"YulBlock","src":"6917:171:41","statements":[{"nativeSrc":"6927:26:41","nodeType":"YulAssignment","src":"6927:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"6939:9:41","nodeType":"YulIdentifier","src":"6939:9:41"},{"kind":"number","nativeSrc":"6950:2:41","nodeType":"YulLiteral","src":"6950:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6935:3:41","nodeType":"YulIdentifier","src":"6935:3:41"},"nativeSrc":"6935:18:41","nodeType":"YulFunctionCall","src":"6935:18:41"},"variableNames":[{"name":"tail","nativeSrc":"6927:4:41","nodeType":"YulIdentifier","src":"6927:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6969:9:41","nodeType":"YulIdentifier","src":"6969:9:41"},{"arguments":[{"name":"value0","nativeSrc":"6984:6:41","nodeType":"YulIdentifier","src":"6984:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7000:3:41","nodeType":"YulLiteral","src":"7000:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"7005:1:41","nodeType":"YulLiteral","src":"7005:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6996:3:41","nodeType":"YulIdentifier","src":"6996:3:41"},"nativeSrc":"6996:11:41","nodeType":"YulFunctionCall","src":"6996:11:41"},{"kind":"number","nativeSrc":"7009:1:41","nodeType":"YulLiteral","src":"7009:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6992:3:41","nodeType":"YulIdentifier","src":"6992:3:41"},"nativeSrc":"6992:19:41","nodeType":"YulFunctionCall","src":"6992:19:41"}],"functionName":{"name":"and","nativeSrc":"6980:3:41","nodeType":"YulIdentifier","src":"6980:3:41"},"nativeSrc":"6980:32:41","nodeType":"YulFunctionCall","src":"6980:32:41"}],"functionName":{"name":"mstore","nativeSrc":"6962:6:41","nodeType":"YulIdentifier","src":"6962:6:41"},"nativeSrc":"6962:51:41","nodeType":"YulFunctionCall","src":"6962:51:41"},"nativeSrc":"6962:51:41","nodeType":"YulExpressionStatement","src":"6962:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7033:9:41","nodeType":"YulIdentifier","src":"7033:9:41"},{"kind":"number","nativeSrc":"7044:2:41","nodeType":"YulLiteral","src":"7044:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7029:3:41","nodeType":"YulIdentifier","src":"7029:3:41"},"nativeSrc":"7029:18:41","nodeType":"YulFunctionCall","src":"7029:18:41"},{"arguments":[{"name":"value1","nativeSrc":"7053:6:41","nodeType":"YulIdentifier","src":"7053:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7069:3:41","nodeType":"YulLiteral","src":"7069:3:41","type":"","value":"192"},{"kind":"number","nativeSrc":"7074:1:41","nodeType":"YulLiteral","src":"7074:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7065:3:41","nodeType":"YulIdentifier","src":"7065:3:41"},"nativeSrc":"7065:11:41","nodeType":"YulFunctionCall","src":"7065:11:41"},{"kind":"number","nativeSrc":"7078:1:41","nodeType":"YulLiteral","src":"7078:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7061:3:41","nodeType":"YulIdentifier","src":"7061:3:41"},"nativeSrc":"7061:19:41","nodeType":"YulFunctionCall","src":"7061:19:41"}],"functionName":{"name":"and","nativeSrc":"7049:3:41","nodeType":"YulIdentifier","src":"7049:3:41"},"nativeSrc":"7049:32:41","nodeType":"YulFunctionCall","src":"7049:32:41"}],"functionName":{"name":"mstore","nativeSrc":"7022:6:41","nodeType":"YulIdentifier","src":"7022:6:41"},"nativeSrc":"7022:60:41","nodeType":"YulFunctionCall","src":"7022:60:41"},"nativeSrc":"7022:60:41","nodeType":"YulExpressionStatement","src":"7022:60:41"}]},"name":"abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint192__fromStack_reversed","nativeSrc":"6780:308:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6878:9:41","nodeType":"YulTypedName","src":"6878:9:41","type":""},{"name":"value1","nativeSrc":"6889:6:41","nodeType":"YulTypedName","src":"6889:6:41","type":""},{"name":"value0","nativeSrc":"6897:6:41","nodeType":"YulTypedName","src":"6897:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6908:4:41","nodeType":"YulTypedName","src":"6908:4:41","type":""}],"src":"6780:308:41"},{"body":{"nativeSrc":"7267:178:41","nodeType":"YulBlock","src":"7267:178:41","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7284:9:41","nodeType":"YulIdentifier","src":"7284:9:41"},{"kind":"number","nativeSrc":"7295:2:41","nodeType":"YulLiteral","src":"7295:2:41","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"7277:6:41","nodeType":"YulIdentifier","src":"7277:6:41"},"nativeSrc":"7277:21:41","nodeType":"YulFunctionCall","src":"7277:21:41"},"nativeSrc":"7277:21:41","nodeType":"YulExpressionStatement","src":"7277:21:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7318:9:41","nodeType":"YulIdentifier","src":"7318:9:41"},{"kind":"number","nativeSrc":"7329:2:41","nodeType":"YulLiteral","src":"7329:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7314:3:41","nodeType":"YulIdentifier","src":"7314:3:41"},"nativeSrc":"7314:18:41","nodeType":"YulFunctionCall","src":"7314:18:41"},{"kind":"number","nativeSrc":"7334:2:41","nodeType":"YulLiteral","src":"7334:2:41","type":"","value":"28"}],"functionName":{"name":"mstore","nativeSrc":"7307:6:41","nodeType":"YulIdentifier","src":"7307:6:41"},"nativeSrc":"7307:30:41","nodeType":"YulFunctionCall","src":"7307:30:41"},"nativeSrc":"7307:30:41","nodeType":"YulExpressionStatement","src":"7307:30:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7357:9:41","nodeType":"YulIdentifier","src":"7357:9:41"},{"kind":"number","nativeSrc":"7368:2:41","nodeType":"YulLiteral","src":"7368:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7353:3:41","nodeType":"YulIdentifier","src":"7353:3:41"},"nativeSrc":"7353:18:41","nodeType":"YulFunctionCall","src":"7353:18:41"},{"hexValue":"6163636f756e743a206e6f742066726f6d20456e747279506f696e74","kind":"string","nativeSrc":"7373:30:41","nodeType":"YulLiteral","src":"7373:30:41","type":"","value":"account: not from EntryPoint"}],"functionName":{"name":"mstore","nativeSrc":"7346:6:41","nodeType":"YulIdentifier","src":"7346:6:41"},"nativeSrc":"7346:58:41","nodeType":"YulFunctionCall","src":"7346:58:41"},"nativeSrc":"7346:58:41","nodeType":"YulExpressionStatement","src":"7346:58:41"},{"nativeSrc":"7413:26:41","nodeType":"YulAssignment","src":"7413:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"7425:9:41","nodeType":"YulIdentifier","src":"7425:9:41"},{"kind":"number","nativeSrc":"7436:2:41","nodeType":"YulLiteral","src":"7436:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"7421:3:41","nodeType":"YulIdentifier","src":"7421:3:41"},"nativeSrc":"7421:18:41","nodeType":"YulFunctionCall","src":"7421:18:41"},"variableNames":[{"name":"tail","nativeSrc":"7413:4:41","nodeType":"YulIdentifier","src":"7413:4:41"}]}]},"name":"abi_encode_tuple_t_stringliteral_f684c2c0c9ec797849b62669189fe025e9077c00ba7812987ce38c0071ad7a50__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"7093:352:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7244:9:41","nodeType":"YulTypedName","src":"7244:9:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7258:4:41","nodeType":"YulTypedName","src":"7258:4:41","type":""}],"src":"7093:352:41"},{"body":{"nativeSrc":"7641:14:41","nodeType":"YulBlock","src":"7641:14:41","statements":[{"nativeSrc":"7643:10:41","nodeType":"YulAssignment","src":"7643:10:41","value":{"name":"pos","nativeSrc":"7650:3:41","nodeType":"YulIdentifier","src":"7650:3:41"},"variableNames":[{"name":"end","nativeSrc":"7643:3:41","nodeType":"YulIdentifier","src":"7643:3:41"}]}]},"name":"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"7450:205:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"7625:3:41","nodeType":"YulTypedName","src":"7625:3:41","type":""}],"returnVariables":[{"name":"end","nativeSrc":"7633:3:41","nodeType":"YulTypedName","src":"7633:3:41","type":""}],"src":"7450:205:41"},{"body":{"nativeSrc":"7789:119:41","nodeType":"YulBlock","src":"7789:119:41","statements":[{"nativeSrc":"7799:26:41","nodeType":"YulAssignment","src":"7799:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"7811:9:41","nodeType":"YulIdentifier","src":"7811:9:41"},{"kind":"number","nativeSrc":"7822:2:41","nodeType":"YulLiteral","src":"7822:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7807:3:41","nodeType":"YulIdentifier","src":"7807:3:41"},"nativeSrc":"7807:18:41","nodeType":"YulFunctionCall","src":"7807:18:41"},"variableNames":[{"name":"tail","nativeSrc":"7799:4:41","nodeType":"YulIdentifier","src":"7799:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7841:9:41","nodeType":"YulIdentifier","src":"7841:9:41"},{"name":"value0","nativeSrc":"7852:6:41","nodeType":"YulIdentifier","src":"7852:6:41"}],"functionName":{"name":"mstore","nativeSrc":"7834:6:41","nodeType":"YulIdentifier","src":"7834:6:41"},"nativeSrc":"7834:25:41","nodeType":"YulFunctionCall","src":"7834:25:41"},"nativeSrc":"7834:25:41","nodeType":"YulExpressionStatement","src":"7834:25:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7879:9:41","nodeType":"YulIdentifier","src":"7879:9:41"},{"kind":"number","nativeSrc":"7890:2:41","nodeType":"YulLiteral","src":"7890:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7875:3:41","nodeType":"YulIdentifier","src":"7875:3:41"},"nativeSrc":"7875:18:41","nodeType":"YulFunctionCall","src":"7875:18:41"},{"name":"value1","nativeSrc":"7895:6:41","nodeType":"YulIdentifier","src":"7895:6:41"}],"functionName":{"name":"mstore","nativeSrc":"7868:6:41","nodeType":"YulIdentifier","src":"7868:6:41"},"nativeSrc":"7868:34:41","nodeType":"YulFunctionCall","src":"7868:34:41"},"nativeSrc":"7868:34:41","nodeType":"YulExpressionStatement","src":"7868:34:41"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"7660:248:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7750:9:41","nodeType":"YulTypedName","src":"7750:9:41","type":""},{"name":"value1","nativeSrc":"7761:6:41","nodeType":"YulTypedName","src":"7761:6:41","type":""},{"name":"value0","nativeSrc":"7769:6:41","nodeType":"YulTypedName","src":"7769:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7780:4:41","nodeType":"YulTypedName","src":"7780:4:41","type":""}],"src":"7660:248:41"},{"body":{"nativeSrc":"8050:164:41","nodeType":"YulBlock","src":"8050:164:41","statements":[{"nativeSrc":"8060:27:41","nodeType":"YulVariableDeclaration","src":"8060:27:41","value":{"arguments":[{"name":"value0","nativeSrc":"8080:6:41","nodeType":"YulIdentifier","src":"8080:6:41"}],"functionName":{"name":"mload","nativeSrc":"8074:5:41","nodeType":"YulIdentifier","src":"8074:5:41"},"nativeSrc":"8074:13:41","nodeType":"YulFunctionCall","src":"8074:13:41"},"variables":[{"name":"length","nativeSrc":"8064:6:41","nodeType":"YulTypedName","src":"8064:6:41","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"8102:3:41","nodeType":"YulIdentifier","src":"8102:3:41"},{"arguments":[{"name":"value0","nativeSrc":"8111:6:41","nodeType":"YulIdentifier","src":"8111:6:41"},{"kind":"number","nativeSrc":"8119:4:41","nodeType":"YulLiteral","src":"8119:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"8107:3:41","nodeType":"YulIdentifier","src":"8107:3:41"},"nativeSrc":"8107:17:41","nodeType":"YulFunctionCall","src":"8107:17:41"},{"name":"length","nativeSrc":"8126:6:41","nodeType":"YulIdentifier","src":"8126:6:41"}],"functionName":{"name":"mcopy","nativeSrc":"8096:5:41","nodeType":"YulIdentifier","src":"8096:5:41"},"nativeSrc":"8096:37:41","nodeType":"YulFunctionCall","src":"8096:37:41"},"nativeSrc":"8096:37:41","nodeType":"YulExpressionStatement","src":"8096:37:41"},{"nativeSrc":"8142:26:41","nodeType":"YulVariableDeclaration","src":"8142:26:41","value":{"arguments":[{"name":"pos","nativeSrc":"8156:3:41","nodeType":"YulIdentifier","src":"8156:3:41"},{"name":"length","nativeSrc":"8161:6:41","nodeType":"YulIdentifier","src":"8161:6:41"}],"functionName":{"name":"add","nativeSrc":"8152:3:41","nodeType":"YulIdentifier","src":"8152:3:41"},"nativeSrc":"8152:16:41","nodeType":"YulFunctionCall","src":"8152:16:41"},"variables":[{"name":"_1","nativeSrc":"8146:2:41","nodeType":"YulTypedName","src":"8146:2:41","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"8184:2:41","nodeType":"YulIdentifier","src":"8184:2:41"},{"kind":"number","nativeSrc":"8188:1:41","nodeType":"YulLiteral","src":"8188:1:41","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"8177:6:41","nodeType":"YulIdentifier","src":"8177:6:41"},"nativeSrc":"8177:13:41","nodeType":"YulFunctionCall","src":"8177:13:41"},"nativeSrc":"8177:13:41","nodeType":"YulExpressionStatement","src":"8177:13:41"},{"nativeSrc":"8199:9:41","nodeType":"YulAssignment","src":"8199:9:41","value":{"name":"_1","nativeSrc":"8206:2:41","nodeType":"YulIdentifier","src":"8206:2:41"},"variableNames":[{"name":"end","nativeSrc":"8199:3:41","nodeType":"YulIdentifier","src":"8199:3:41"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"7913:301:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"8026:3:41","nodeType":"YulTypedName","src":"8026:3:41","type":""},{"name":"value0","nativeSrc":"8031:6:41","nodeType":"YulTypedName","src":"8031:6:41","type":""}],"returnVariables":[{"name":"end","nativeSrc":"8042:3:41","nodeType":"YulTypedName","src":"8042:3:41","type":""}],"src":"7913:301:41"},{"body":{"nativeSrc":"8348:145:41","nodeType":"YulBlock","src":"8348:145:41","statements":[{"nativeSrc":"8358:26:41","nodeType":"YulAssignment","src":"8358:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"8370:9:41","nodeType":"YulIdentifier","src":"8370:9:41"},{"kind":"number","nativeSrc":"8381:2:41","nodeType":"YulLiteral","src":"8381:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8366:3:41","nodeType":"YulIdentifier","src":"8366:3:41"},"nativeSrc":"8366:18:41","nodeType":"YulFunctionCall","src":"8366:18:41"},"variableNames":[{"name":"tail","nativeSrc":"8358:4:41","nodeType":"YulIdentifier","src":"8358:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8400:9:41","nodeType":"YulIdentifier","src":"8400:9:41"},{"arguments":[{"name":"value0","nativeSrc":"8415:6:41","nodeType":"YulIdentifier","src":"8415:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"8431:3:41","nodeType":"YulLiteral","src":"8431:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"8436:1:41","nodeType":"YulLiteral","src":"8436:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"8427:3:41","nodeType":"YulIdentifier","src":"8427:3:41"},"nativeSrc":"8427:11:41","nodeType":"YulFunctionCall","src":"8427:11:41"},{"kind":"number","nativeSrc":"8440:1:41","nodeType":"YulLiteral","src":"8440:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"8423:3:41","nodeType":"YulIdentifier","src":"8423:3:41"},"nativeSrc":"8423:19:41","nodeType":"YulFunctionCall","src":"8423:19:41"}],"functionName":{"name":"and","nativeSrc":"8411:3:41","nodeType":"YulIdentifier","src":"8411:3:41"},"nativeSrc":"8411:32:41","nodeType":"YulFunctionCall","src":"8411:32:41"}],"functionName":{"name":"mstore","nativeSrc":"8393:6:41","nodeType":"YulIdentifier","src":"8393:6:41"},"nativeSrc":"8393:51:41","nodeType":"YulFunctionCall","src":"8393:51:41"},"nativeSrc":"8393:51:41","nodeType":"YulExpressionStatement","src":"8393:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8464:9:41","nodeType":"YulIdentifier","src":"8464:9:41"},{"kind":"number","nativeSrc":"8475:2:41","nodeType":"YulLiteral","src":"8475:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8460:3:41","nodeType":"YulIdentifier","src":"8460:3:41"},"nativeSrc":"8460:18:41","nodeType":"YulFunctionCall","src":"8460:18:41"},{"name":"value1","nativeSrc":"8480:6:41","nodeType":"YulIdentifier","src":"8480:6:41"}],"functionName":{"name":"mstore","nativeSrc":"8453:6:41","nodeType":"YulIdentifier","src":"8453:6:41"},"nativeSrc":"8453:34:41","nodeType":"YulFunctionCall","src":"8453:34:41"},"nativeSrc":"8453:34:41","nodeType":"YulExpressionStatement","src":"8453:34:41"}]},"name":"abi_encode_tuple_t_address_t_bytes32__to_t_address_t_bytes32__fromStack_reversed","nativeSrc":"8219:274:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8309:9:41","nodeType":"YulTypedName","src":"8309:9:41","type":""},{"name":"value1","nativeSrc":"8320:6:41","nodeType":"YulTypedName","src":"8320:6:41","type":""},{"name":"value0","nativeSrc":"8328:6:41","nodeType":"YulTypedName","src":"8328:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8339:4:41","nodeType":"YulTypedName","src":"8339:4:41","type":""}],"src":"8219:274:41"},{"body":{"nativeSrc":"8530:95:41","nodeType":"YulBlock","src":"8530:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8547:1:41","nodeType":"YulLiteral","src":"8547:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"8554:3:41","nodeType":"YulLiteral","src":"8554:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"8559:10:41","nodeType":"YulLiteral","src":"8559:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"8550:3:41","nodeType":"YulIdentifier","src":"8550:3:41"},"nativeSrc":"8550:20:41","nodeType":"YulFunctionCall","src":"8550:20:41"}],"functionName":{"name":"mstore","nativeSrc":"8540:6:41","nodeType":"YulIdentifier","src":"8540:6:41"},"nativeSrc":"8540:31:41","nodeType":"YulFunctionCall","src":"8540:31:41"},"nativeSrc":"8540:31:41","nodeType":"YulExpressionStatement","src":"8540:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8587:1:41","nodeType":"YulLiteral","src":"8587:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"8590:4:41","nodeType":"YulLiteral","src":"8590:4:41","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"8580:6:41","nodeType":"YulIdentifier","src":"8580:6:41"},"nativeSrc":"8580:15:41","nodeType":"YulFunctionCall","src":"8580:15:41"},"nativeSrc":"8580:15:41","nodeType":"YulExpressionStatement","src":"8580:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8611:1:41","nodeType":"YulLiteral","src":"8611:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"8614:4:41","nodeType":"YulLiteral","src":"8614:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"8604:6:41","nodeType":"YulIdentifier","src":"8604:6:41"},"nativeSrc":"8604:15:41","nodeType":"YulFunctionCall","src":"8604:15:41"},"nativeSrc":"8604:15:41","nodeType":"YulExpressionStatement","src":"8604:15:41"}]},"name":"panic_error_0x21","nativeSrc":"8498:127:41","nodeType":"YulFunctionDefinition","src":"8498:127:41"},{"body":{"nativeSrc":"8811:217:41","nodeType":"YulBlock","src":"8811:217:41","statements":[{"nativeSrc":"8821:27:41","nodeType":"YulAssignment","src":"8821:27:41","value":{"arguments":[{"name":"headStart","nativeSrc":"8833:9:41","nodeType":"YulIdentifier","src":"8833:9:41"},{"kind":"number","nativeSrc":"8844:3:41","nodeType":"YulLiteral","src":"8844:3:41","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"8829:3:41","nodeType":"YulIdentifier","src":"8829:3:41"},"nativeSrc":"8829:19:41","nodeType":"YulFunctionCall","src":"8829:19:41"},"variableNames":[{"name":"tail","nativeSrc":"8821:4:41","nodeType":"YulIdentifier","src":"8821:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8864:9:41","nodeType":"YulIdentifier","src":"8864:9:41"},{"name":"value0","nativeSrc":"8875:6:41","nodeType":"YulIdentifier","src":"8875:6:41"}],"functionName":{"name":"mstore","nativeSrc":"8857:6:41","nodeType":"YulIdentifier","src":"8857:6:41"},"nativeSrc":"8857:25:41","nodeType":"YulFunctionCall","src":"8857:25:41"},"nativeSrc":"8857:25:41","nodeType":"YulExpressionStatement","src":"8857:25:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8902:9:41","nodeType":"YulIdentifier","src":"8902:9:41"},{"kind":"number","nativeSrc":"8913:2:41","nodeType":"YulLiteral","src":"8913:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8898:3:41","nodeType":"YulIdentifier","src":"8898:3:41"},"nativeSrc":"8898:18:41","nodeType":"YulFunctionCall","src":"8898:18:41"},{"arguments":[{"name":"value1","nativeSrc":"8922:6:41","nodeType":"YulIdentifier","src":"8922:6:41"},{"kind":"number","nativeSrc":"8930:4:41","nodeType":"YulLiteral","src":"8930:4:41","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"8918:3:41","nodeType":"YulIdentifier","src":"8918:3:41"},"nativeSrc":"8918:17:41","nodeType":"YulFunctionCall","src":"8918:17:41"}],"functionName":{"name":"mstore","nativeSrc":"8891:6:41","nodeType":"YulIdentifier","src":"8891:6:41"},"nativeSrc":"8891:45:41","nodeType":"YulFunctionCall","src":"8891:45:41"},"nativeSrc":"8891:45:41","nodeType":"YulExpressionStatement","src":"8891:45:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8956:9:41","nodeType":"YulIdentifier","src":"8956:9:41"},{"kind":"number","nativeSrc":"8967:2:41","nodeType":"YulLiteral","src":"8967:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8952:3:41","nodeType":"YulIdentifier","src":"8952:3:41"},"nativeSrc":"8952:18:41","nodeType":"YulFunctionCall","src":"8952:18:41"},{"name":"value2","nativeSrc":"8972:6:41","nodeType":"YulIdentifier","src":"8972:6:41"}],"functionName":{"name":"mstore","nativeSrc":"8945:6:41","nodeType":"YulIdentifier","src":"8945:6:41"},"nativeSrc":"8945:34:41","nodeType":"YulFunctionCall","src":"8945:34:41"},"nativeSrc":"8945:34:41","nodeType":"YulExpressionStatement","src":"8945:34:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8999:9:41","nodeType":"YulIdentifier","src":"8999:9:41"},{"kind":"number","nativeSrc":"9010:2:41","nodeType":"YulLiteral","src":"9010:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8995:3:41","nodeType":"YulIdentifier","src":"8995:3:41"},"nativeSrc":"8995:18:41","nodeType":"YulFunctionCall","src":"8995:18:41"},{"name":"value3","nativeSrc":"9015:6:41","nodeType":"YulIdentifier","src":"9015:6:41"}],"functionName":{"name":"mstore","nativeSrc":"8988:6:41","nodeType":"YulIdentifier","src":"8988:6:41"},"nativeSrc":"8988:34:41","nodeType":"YulFunctionCall","src":"8988:34:41"},"nativeSrc":"8988:34:41","nodeType":"YulExpressionStatement","src":"8988:34:41"}]},"name":"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"8630:398:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8756:9:41","nodeType":"YulTypedName","src":"8756:9:41","type":""},{"name":"value3","nativeSrc":"8767:6:41","nodeType":"YulTypedName","src":"8767:6:41","type":""},{"name":"value2","nativeSrc":"8775:6:41","nodeType":"YulTypedName","src":"8775:6:41","type":""},{"name":"value1","nativeSrc":"8783:6:41","nodeType":"YulTypedName","src":"8783:6:41","type":""},{"name":"value0","nativeSrc":"8791:6:41","nodeType":"YulTypedName","src":"8791:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8802:4:41","nodeType":"YulTypedName","src":"8802:4:41","type":""}],"src":"8630:398:41"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_struct$_PackedUserOperation_$1054_calldata_ptrt_bytes32t_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if slt(sub(dataEnd, _1), 288) { revert(0, 0) }\n        value0 := _1\n        let value := 0\n        value := calldataload(add(headStart, 32))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 64))\n        value2 := value_1\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_bytes32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_bytes32t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_decode_array_address_dyn_calldata(offset, end) -> arrayPos, length\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        length := calldataload(offset)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        arrayPos := add(offset, 0x20)\n        if gt(add(add(offset, shl(5, length)), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_uint256_$dyn_calldata_ptrt_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_array_address_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        let value2_1, value3_1 := abi_decode_array_address_dyn_calldata(add(headStart, offset_1), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\n        let offset_2 := calldataload(add(headStart, 64))\n        if gt(offset_2, 0xffffffffffffffff) { revert(0, 0) }\n        let value4_1, value5_1 := abi_decode_array_address_dyn_calldata(add(headStart, offset_2), dataEnd)\n        value4 := value4_1\n        value5 := value5_1\n    }\n    function abi_decode_tuple_t_address_payablet_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_contract$_IEntryPoint_$909__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let offset := calldataload(add(headStart, 64))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        value2 := add(_1, 32)\n        value3 := length\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function access_calldata_tail_t_bytes_calldata_ptr(base_ref, ptr_to_tail) -> addr, length\n    {\n        let rel_offset_of_tail := calldataload(ptr_to_tail)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(30)))) { revert(0, 0) }\n        let addr_1 := add(base_ref, rel_offset_of_tail)\n        length := calldataload(addr_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        addr := add(addr_1, 0x20)\n        if sgt(addr, sub(calldatasize(), length)) { revert(0, 0) }\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_address_payable_t_uint256__to_t_address_payable_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint192__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(192, 1), 1)))\n    }\n    function abi_encode_tuple_t_stringliteral_f684c2c0c9ec797849b62669189fe025e9077c00ba7812987ce38c0071ad7a50__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"account: not from EntryPoint\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos) -> end\n    { end := pos }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        mcopy(pos, add(value0, 0x20), length)\n        let _1 := add(pos, length)\n        mstore(_1, 0)\n        end := _1\n    }\n    function abi_encode_tuple_t_address_t_bytes32__to_t_address_t_bytes32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n}","id":41,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"8742":[{"length":32,"start":667},{"length":32,"start":1475},{"length":32,"start":1641},{"length":32,"start":1907},{"length":32,"start":2056},{"length":32,"start":2150},{"length":32,"start":2802}]},"linkReferences":{},"object":"6080604052600436106100fd575f3560e01c80634d44560d11610092578063b61d27f611610062578063b61d27f6146102c5578063c399ec88146102e4578063d087d288146102f8578063d547741f1461030c578063e02023a11461032b575f5ffd5b80634d44560d1461023157806391d1485414610250578063a217fddf1461026f578063b0d691fe14610282575f5ffd5b80632f2ff15d116100cd5780632f2ff15d146101ca57806336568abe146101eb57806347e1da2a1461020a5780634a58db1914610229575f5ffd5b806301ffc9a71461010857806307bd02651461013c57806319822f7c1461017d578063248a9ca31461019c575f5ffd5b3661010457005b5f5ffd5b348015610113575f5ffd5b50610127610122366004610eba565b61035e565b60405190151581526020015b60405180910390f35b348015610147575f5ffd5b5061016f7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b604051908152602001610133565b348015610188575f5ffd5b5061016f610197366004610ee1565b610394565b3480156101a7575f5ffd5b5061016f6101b6366004610f30565b5f9081526020819052604090206001015490565b3480156101d5575f5ffd5b506101e96101e4366004610f5b565b6103b9565b005b3480156101f6575f5ffd5b506101e9610205366004610f5b565b6103e3565b348015610215575f5ffd5b506101e9610224366004610fd1565b61041b565b6101e96105c1565b34801561023c575f5ffd5b506101e961024b366004611070565b61063d565b34801561025b575f5ffd5b5061012761026a366004610f5b565b6106e3565b34801561027a575f5ffd5b5061016f5f81565b34801561028d575f5ffd5b506040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602001610133565b3480156102d0575f5ffd5b506101e96102df36600461109a565b61070b565b3480156102ef575f5ffd5b5061016f610754565b348015610303575f5ffd5b5061016f6107e2565b348015610317575f5ffd5b506101e9610326366004610f5b565b610837565b348015610336575f5ffd5b5061016f7f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec81565b5f6001600160e01b03198216637965db0b60e01b148061038e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b5f61039d61085b565b6103a784846108da565b90506103b28261099c565b9392505050565b5f828152602081905260409020600101546103d3816109e5565b6103dd83836109ef565b50505050565b6001600160a01b038116331461040c5760405163334bd91960e11b815260040160405180910390fd5b6104168282610a7e565b505050565b610423610ae7565b848114158061043c5750821580159061043c5750828114155b1561045a5760405163150072e360e11b815260040160405180910390fd5b5f839003610502575f5b858110156104fc576104f38787838181106104815761048161111f565b90506020020160208101906104969190611133565b8484848181106104a8576104a861111f565b90506020028101906104ba919061114e565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201829052509250610b67915050565b50600101610464565b506105b9565b5f5b858110156105b7576105ae8787838181106105215761052161111f565b90506020020160208101906105369190611133565b8484848181106105485761054861111f565b905060200281019061055a919061114e565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152508a92508991508690508181106105a2576105a261111f565b90506020020135610b67565b50600101610504565b505b505050505050565b7f000000000000000000000000000000000000000000000000000000000000000060405163b760faf960e01b81523060048201526001600160a01b03919091169063b760faf99034906024015f604051808303818588803b158015610624575f5ffd5b505af1158015610636573d5f5f3e3d5ffd5b5050505050565b7f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec610667816109e5565b7f000000000000000000000000000000000000000000000000000000000000000060405163040b850f60e31b81526001600160a01b03858116600483015260248201859052919091169063205c2878906044015f604051808303815f87803b1580156106d1575f5ffd5b505af11580156105b7573d5f5f3e3d5ffd5b5f918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b610713610ae7565b6106368483838080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250889250610b67915050565b6040516370a0823160e01b81523060048201525f906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a08231906024015b602060405180830381865afa1580156107b9573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107dd9190611191565b905090565b604051631aab3f0d60e11b81523060048201525f60248201819052906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906335567e1a9060440161079e565b5f82815260208190526040902060010154610851816109e5565b6103dd8383610a7e565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146108d85760405162461bcd60e51b815260206004820152601c60248201527f6163636f756e743a206e6f742066726f6d20456e747279506f696e740000000060448201526064015b60405180910390fd5b565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c829052603c81205f6109548261091b61010088018861114e565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250610c0792505050565b90506109807fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63826106e3565b61098f5760019250505061038e565b505f949350505050565b50565b8015610999576040515f9033905f1990849084818181858888f193505050503d805f8114610636576040519150601f19603f3d011682016040523d82523d5f602084013e610636565b6109998133610c2f565b5f6109fa83836106e3565b610a77575f838152602081815260408083206001600160a01b03861684529091529020805460ff19166001179055610a2f3390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600161038e565b505f61038e565b5f610a8983836106e3565b15610a77575f838152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a450600161038e565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801590610b475750610b457fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63336106e3565b155b156108d857604051633c687f6b60e21b81523360048201526024016108cf565b606081471015610b935760405163cf47918160e01b8152476004820152602481018390526044016108cf565b5f5f856001600160a01b03168486604051610bae91906111a8565b5f6040518083038185875af1925050503d805f8114610be8576040519150601f19603f3d011682016040523d82523d5f602084013e610bed565b606091505b5091509150610bfd868383610c6c565b9695505050505050565b5f5f5f5f610c158686610cc8565b925092509250610c258282610d11565b5090949350505050565b610c3982826106e3565b610c685760405163e2517d3f60e01b81526001600160a01b0382166004820152602481018390526044016108cf565b5050565b606082610c8157610c7c82610dc9565b6103b2565b8151158015610c9857506001600160a01b0384163b155b15610cc157604051639996b31560e01b81526001600160a01b03851660048201526024016108cf565b50806103b2565b5f5f5f8351604103610cff576020840151604085015160608601515f1a610cf188828585610df2565b955095509550505050610d0a565b505081515f91506002905b9250925092565b5f826003811115610d2457610d246111be565b03610d2d575050565b6001826003811115610d4157610d416111be565b03610d5f5760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610d7357610d736111be565b03610d945760405163fce698f760e01b8152600481018290526024016108cf565b6003826003811115610da857610da86111be565b03610c68576040516335e2f38360e21b8152600481018290526024016108cf565b805115610dd95780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610e2b57505f91506003905082610eb0565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610e7c573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b038116610ea757505f925060019150829050610eb0565b92505f91508190505b9450945094915050565b5f60208284031215610eca575f5ffd5b81356001600160e01b0319811681146103b2575f5ffd5b5f5f5f60608486031215610ef3575f5ffd5b833567ffffffffffffffff811115610f09575f5ffd5b84016101208187031215610f1b575f5ffd5b95602085013595506040909401359392505050565b5f60208284031215610f40575f5ffd5b5035919050565b6001600160a01b0381168114610999575f5ffd5b5f5f60408385031215610f6c575f5ffd5b823591506020830135610f7e81610f47565b809150509250929050565b5f5f83601f840112610f99575f5ffd5b50813567ffffffffffffffff811115610fb0575f5ffd5b6020830191508360208260051b8501011115610fca575f5ffd5b9250929050565b5f5f5f5f5f5f60608789031215610fe6575f5ffd5b863567ffffffffffffffff811115610ffc575f5ffd5b61100889828a01610f89565b909750955050602087013567ffffffffffffffff811115611027575f5ffd5b61103389828a01610f89565b909550935050604087013567ffffffffffffffff811115611052575f5ffd5b61105e89828a01610f89565b979a9699509497509295939492505050565b5f5f60408385031215611081575f5ffd5b823561108c81610f47565b946020939093013593505050565b5f5f5f5f606085870312156110ad575f5ffd5b84356110b881610f47565b935060208501359250604085013567ffffffffffffffff8111156110da575f5ffd5b8501601f810187136110ea575f5ffd5b803567ffffffffffffffff811115611100575f5ffd5b876020828401011115611111575f5ffd5b949793965060200194505050565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611143575f5ffd5b81356103b281610f47565b5f5f8335601e19843603018112611163575f5ffd5b83018035915067ffffffffffffffff82111561117d575f5ffd5b602001915036819003821315610fca575f5ffd5b5f602082840312156111a1575f5ffd5b5051919050565b5f82518060208501845e5f920191825250919050565b634e487b7160e01b5f52602160045260245ffdfea264697066735822122027bc23623c2e9510d5151f8eb11f974d01aaa110295cf92fde6378b56b39ddfe64736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xFD JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4D44560D GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xB61D27F6 GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xB61D27F6 EQ PUSH2 0x2C5 JUMPI DUP1 PUSH4 0xC399EC88 EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0xD087D288 EQ PUSH2 0x2F8 JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x30C JUMPI DUP1 PUSH4 0xE02023A1 EQ PUSH2 0x32B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D44560D EQ PUSH2 0x231 JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x250 JUMPI DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x26F JUMPI DUP1 PUSH4 0xB0D691FE EQ PUSH2 0x282 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x2F2FF15D GT PUSH2 0xCD JUMPI DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x1EB JUMPI DUP1 PUSH4 0x47E1DA2A EQ PUSH2 0x20A JUMPI DUP1 PUSH4 0x4A58DB19 EQ PUSH2 0x229 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x108 JUMPI DUP1 PUSH4 0x7BD0265 EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x19822F7C EQ PUSH2 0x17D JUMPI DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x19C JUMPI PUSH0 PUSH0 REVERT JUMPDEST CALLDATASIZE PUSH2 0x104 JUMPI STOP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x113 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x127 PUSH2 0x122 CALLDATASIZE PUSH1 0x4 PUSH2 0xEBA JUMP JUMPDEST PUSH2 0x35E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x147 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x133 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x188 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x197 CALLDATASIZE PUSH1 0x4 PUSH2 0xEE1 JUMP JUMPDEST PUSH2 0x394 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x1B6 CALLDATASIZE PUSH1 0x4 PUSH2 0xF30 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0xF5B JUMP JUMPDEST PUSH2 0x3B9 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x205 CALLDATASIZE PUSH1 0x4 PUSH2 0xF5B JUMP JUMPDEST PUSH2 0x3E3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x215 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x224 CALLDATASIZE PUSH1 0x4 PUSH2 0xFD1 JUMP JUMPDEST PUSH2 0x41B JUMP JUMPDEST PUSH2 0x1E9 PUSH2 0x5C1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x23C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x24B CALLDATASIZE PUSH1 0x4 PUSH2 0x1070 JUMP JUMPDEST PUSH2 0x63D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x127 PUSH2 0x26A CALLDATASIZE PUSH1 0x4 PUSH2 0xF5B JUMP JUMPDEST PUSH2 0x6E3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x27A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x133 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x2DF CALLDATASIZE PUSH1 0x4 PUSH2 0x109A JUMP JUMPDEST PUSH2 0x70B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x754 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x303 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x7E2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x317 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x326 CALLDATASIZE PUSH1 0x4 PUSH2 0xF5B JUMP JUMPDEST PUSH2 0x837 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x336 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH32 0x5D8E12C39142FF96D79D04D15D1BA1269E4FE57BB9D26F43523628B34BA108EC DUP2 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x7965DB0B PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x38E JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x39D PUSH2 0x85B JUMP JUMPDEST PUSH2 0x3A7 DUP5 DUP5 PUSH2 0x8DA JUMP JUMPDEST SWAP1 POP PUSH2 0x3B2 DUP3 PUSH2 0x99C JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x3D3 DUP2 PUSH2 0x9E5 JUMP JUMPDEST PUSH2 0x3DD DUP4 DUP4 PUSH2 0x9EF JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ PUSH2 0x40C JUMPI PUSH1 0x40 MLOAD PUSH4 0x334BD919 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x416 DUP3 DUP3 PUSH2 0xA7E JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x423 PUSH2 0xAE7 JUMP JUMPDEST DUP5 DUP2 EQ ISZERO DUP1 PUSH2 0x43C JUMPI POP DUP3 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x43C JUMPI POP DUP3 DUP2 EQ ISZERO JUMPDEST ISZERO PUSH2 0x45A JUMPI PUSH1 0x40 MLOAD PUSH4 0x150072E3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP4 SWAP1 SUB PUSH2 0x502 JUMPI PUSH0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x4FC JUMPI PUSH2 0x4F3 DUP8 DUP8 DUP4 DUP2 DUP2 LT PUSH2 0x481 JUMPI PUSH2 0x481 PUSH2 0x111F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x496 SWAP2 SWAP1 PUSH2 0x1133 JUMP JUMPDEST DUP5 DUP5 DUP5 DUP2 DUP2 LT PUSH2 0x4A8 JUMPI PUSH2 0x4A8 PUSH2 0x111F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x4BA SWAP2 SWAP1 PUSH2 0x114E JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD DUP3 SWAP1 MSTORE POP SWAP3 POP PUSH2 0xB67 SWAP2 POP POP JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x464 JUMP JUMPDEST POP PUSH2 0x5B9 JUMP JUMPDEST PUSH0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x5B7 JUMPI PUSH2 0x5AE DUP8 DUP8 DUP4 DUP2 DUP2 LT PUSH2 0x521 JUMPI PUSH2 0x521 PUSH2 0x111F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x536 SWAP2 SWAP1 PUSH2 0x1133 JUMP JUMPDEST DUP5 DUP5 DUP5 DUP2 DUP2 LT PUSH2 0x548 JUMPI PUSH2 0x548 PUSH2 0x111F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x55A SWAP2 SWAP1 PUSH2 0x114E JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP DUP11 SWAP3 POP DUP10 SWAP2 POP DUP7 SWAP1 POP DUP2 DUP2 LT PUSH2 0x5A2 JUMPI PUSH2 0x5A2 PUSH2 0x111F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH2 0xB67 JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x504 JUMP JUMPDEST POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0xB760FAF9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xB760FAF9 SWAP1 CALLVALUE SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x624 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x636 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH32 0x5D8E12C39142FF96D79D04D15D1BA1269E4FE57BB9D26F43523628B34BA108EC PUSH2 0x667 DUP2 PUSH2 0x9E5 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0x40B850F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x205C2878 SWAP1 PUSH1 0x44 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x6D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x5B7 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP5 MSTORE SWAP2 SWAP1 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x713 PUSH2 0xAE7 JUMP JUMPDEST PUSH2 0x636 DUP5 DUP4 DUP4 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP DUP9 SWAP3 POP PUSH2 0xB67 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x7B9 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x7DD SWAP2 SWAP1 PUSH2 0x1191 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1AAB3F0D PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x35567E1A SWAP1 PUSH1 0x44 ADD PUSH2 0x79E JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x851 DUP2 PUSH2 0x9E5 JUMP JUMPDEST PUSH2 0x3DD DUP4 DUP4 PUSH2 0xA7E JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x8D8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6163636F756E743A206E6F742066726F6D20456E747279506F696E7400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH32 0x19457468657265756D205369676E6564204D6573736167653A0A333200000000 PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1C DUP3 SWAP1 MSTORE PUSH1 0x3C DUP2 KECCAK256 PUSH0 PUSH2 0x954 DUP3 PUSH2 0x91B PUSH2 0x100 DUP9 ADD DUP9 PUSH2 0x114E JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0xC07 SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH2 0x980 PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 DUP3 PUSH2 0x6E3 JUMP JUMPDEST PUSH2 0x98F JUMPI PUSH1 0x1 SWAP3 POP POP POP PUSH2 0x38E JUMP JUMPDEST POP PUSH0 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST POP JUMP JUMPDEST DUP1 ISZERO PUSH2 0x999 JUMPI PUSH1 0x40 MLOAD PUSH0 SWAP1 CALLER SWAP1 PUSH0 NOT SWAP1 DUP5 SWAP1 DUP5 DUP2 DUP2 DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x636 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x636 JUMP JUMPDEST PUSH2 0x999 DUP2 CALLER PUSH2 0xC2F JUMP JUMPDEST PUSH0 PUSH2 0x9FA DUP4 DUP4 PUSH2 0x6E3 JUMP JUMPDEST PUSH2 0xA77 JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH2 0xA2F CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x38E JUMP JUMPDEST POP PUSH0 PUSH2 0x38E JUMP JUMPDEST PUSH0 PUSH2 0xA89 DUP4 DUP4 PUSH2 0x6E3 JUMP JUMPDEST ISZERO PUSH2 0xA77 JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP1 DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE MLOAD CALLER SWAP3 DUP7 SWAP2 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B SWAP2 SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x38E JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO SWAP1 PUSH2 0xB47 JUMPI POP PUSH2 0xB45 PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 CALLER PUSH2 0x6E3 JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x8D8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3C687F6B PUSH1 0xE2 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x8CF JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0xB93 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x8CF JUMP JUMPDEST PUSH0 PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0xBAE SWAP2 SWAP1 PUSH2 0x11A8 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xBE8 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xBED JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0xBFD DUP7 DUP4 DUP4 PUSH2 0xC6C JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0xC15 DUP7 DUP7 PUSH2 0xCC8 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0xC25 DUP3 DUP3 PUSH2 0xD11 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0xC39 DUP3 DUP3 PUSH2 0x6E3 JUMP JUMPDEST PUSH2 0xC68 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x8CF JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0xC81 JUMPI PUSH2 0xC7C DUP3 PUSH2 0xDC9 JUMP JUMPDEST PUSH2 0x3B2 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0xC98 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0xCC1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x8CF JUMP JUMPDEST POP DUP1 PUSH2 0x3B2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x41 SUB PUSH2 0xCFF JUMPI PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH0 BYTE PUSH2 0xCF1 DUP9 DUP3 DUP6 DUP6 PUSH2 0xDF2 JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP PUSH2 0xD0A JUMP JUMPDEST POP POP DUP2 MLOAD PUSH0 SWAP2 POP PUSH1 0x2 SWAP1 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xD24 JUMPI PUSH2 0xD24 PUSH2 0x11BE JUMP JUMPDEST SUB PUSH2 0xD2D JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xD41 JUMPI PUSH2 0xD41 PUSH2 0x11BE JUMP JUMPDEST SUB PUSH2 0xD5F JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xD73 JUMPI PUSH2 0xD73 PUSH2 0x11BE JUMP JUMPDEST SUB PUSH2 0xD94 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x8CF JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xDA8 JUMPI PUSH2 0xDA8 PUSH2 0x11BE JUMP JUMPDEST SUB PUSH2 0xC68 JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x8CF JUMP JUMPDEST DUP1 MLOAD ISZERO PUSH2 0xDD9 JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0xE2B JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0xEB0 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xE7C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xEA7 JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0xEB0 JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xECA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x3B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xEF3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xF09 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH2 0x120 DUP2 DUP8 SUB SLT ISZERO PUSH2 0xF1B JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF40 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x999 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF6C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0xF7E DUP2 PUSH2 0xF47 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0xF99 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xFB0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xFCA JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP8 DUP10 SUB SLT ISZERO PUSH2 0xFE6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xFFC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1008 DUP10 DUP3 DUP11 ADD PUSH2 0xF89 JUMP JUMPDEST SWAP1 SWAP8 POP SWAP6 POP POP PUSH1 0x20 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1027 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1033 DUP10 DUP3 DUP11 ADD PUSH2 0xF89 JUMP JUMPDEST SWAP1 SWAP6 POP SWAP4 POP POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1052 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x105E DUP10 DUP3 DUP11 ADD PUSH2 0xF89 JUMP JUMPDEST SWAP8 SWAP11 SWAP7 SWAP10 POP SWAP5 SWAP8 POP SWAP3 SWAP6 SWAP4 SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1081 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x108C DUP2 PUSH2 0xF47 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x10AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x10B8 DUP2 PUSH2 0xF47 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10DA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x10EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1100 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x1111 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP5 SWAP8 SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1143 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3B2 DUP2 PUSH2 0xF47 JUMP JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x1163 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x117D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0xFCA JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11A1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP6 ADD DUP5 MCOPY PUSH0 SWAP3 ADD SWAP2 DUP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x27 0xBC 0x23 PUSH3 0x3C2E95 LT 0xD5 ISZERO 0x1F DUP15 0xB1 0x1F SWAP8 0x4D ADD 0xAA LOG1 LT 0x29 TLOAD 0xF9 0x2F 0xDE PUSH4 0x78B56B39 0xDD INVALID PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"769:3540:33:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2565:202:9;;;;;;;;;;-1:-1:-1;2565:202:9;;;;;:::i;:::-;;:::i;:::-;;;470:14:41;;463:22;445:41;;433:2;418:18;2565:202:9;;;;;;;;903:66:33;;;;;;;;;;;;943:26;903:66;;;;;643:25:41;;;631:2;616:18;903:66:33;497:177:41;1139:385:0;;;;;;;;;;-1:-1:-1;1139:385:0;;;;;:::i;:::-;;:::i;3810:120:9:-;;;;;;;;;;-1:-1:-1;3810:120:9;;;;;:::i;:::-;3875:7;3901:12;;;;;;;;;;:22;;;;3810:120;4226:136;;;;;;;;;;-1:-1:-1;4226:136:9;;;;;:::i;:::-;;:::i;:::-;;5328:245;;;;;;;;;;-1:-1:-1;5328:245:9;;;;;:::i;:::-;;:::i;2633:558:33:-;;;;;;;;;;-1:-1:-1;2633:558:33;;;;;:::i;:::-;;:::i;3898:103::-;;;:::i;4141:166::-;;;;;;;;;;-1:-1:-1;4141:166:33;;;;;:::i;:::-;;:::i;2854:136:9:-;;;;;;;;;;-1:-1:-1;2854:136:9;;;;;:::i;:::-;;:::i;2187:49::-;;;;;;;;;;-1:-1:-1;2187:49:9;2232:4;2187:49;;1133:102:33;;;;;;;;;;-1:-1:-1;1133:102:33;;-1:-1:-1;;;;;1219:11:33;4288:32:41;4270:51;;4258:2;4243:18;1133:102:33;4105:222:41;2087:175:33;;;;;;;;;;-1:-1:-1;2087:175:33;;;;;:::i;:::-;;:::i;3716:107::-;;;;;;;;;;;;;:::i;771:121:0:-;;;;;;;;;;;;;:::i;4642:138:9:-;;;;;;;;;;-1:-1:-1;4642:138:9;;;;;:::i;:::-;;:::i;833:66:33:-;;;;;;;;;;;;873:26;833:66;;2565:202:9;2650:4;-1:-1:-1;;;;;;2673:47:9;;-1:-1:-1;;;2673:47:9;;:87;;-1:-1:-1;;;;;;;;;;862:40:27;;;2724:36:9;2666:94;2565:202;-1:-1:-1;;2565:202:9:o;1139:385:0:-;1314:22;1348:24;:22;:24::i;:::-;1399:38;1418:6;1426:10;1399:18;:38::i;:::-;1382:55;;1485:32;1497:19;1485:11;:32::i;:::-;1139:385;;;;;:::o;4226:136:9:-;3875:7;3901:12;;;;;;;;;;:22;;;2464:16;2475:4;2464:10;:16::i;:::-;4330:25:::1;4341:4;4347:7;4330:10;:25::i;:::-;;4226:136:::0;;;:::o;5328:245::-;-1:-1:-1;;;;;5421:34:9;;735:10:20;5421:34:9;5417:102;;5478:30;;-1:-1:-1;;;5478:30:9;;;;;;;;;;;5417:102;5529:37;5541:4;5547:18;5529:11;:37::i;:::-;;5328:245;;:::o;2633:558:33:-;2744:34;:32;:34::i;:::-;2788:26;;;;;:80;;-1:-1:-1;2819:17:33;;;;;:48;;-1:-1:-1;2840:27:33;;;;2819:48;2784:111;;;2877:18;;-1:-1:-1;;;2877:18:33;;;;;;;;;;;2784:111;2921:1;2905:17;;;2901:286;;2937:9;2932:111;2952:15;;;2932:111;;;2984:50;3014:4;;3019:1;3014:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3023:4;;3028:1;3023:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;2984:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2984:50:33;-1:-1:-1;2984:29:33;;-1:-1:-1;;2984:50:33:i;:::-;-1:-1:-1;2969:3:33;;2932:111;;;;2901:286;;;3068:9;3063:118;3083:15;;;3063:118;;;3115:57;3145:4;;3150:1;3145:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3154:4;;3159:1;3154:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;3115:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3163:5:33;;-1:-1:-1;3163:5:33;;-1:-1:-1;3169:1:33;;-1:-1:-1;3163:8:33;;;;;;;:::i;:::-;;;;;;;3115:29;:57::i;:::-;-1:-1:-1;3100:3:33;;3063:118;;;;2901:286;2633:558;;;;;;:::o;3898:103::-;1219:11;3941:55;;-1:-1:-1;;;3941:55:33;;3990:4;3941:55;;;4270:51:41;-1:-1:-1;;;;;3941:22:33;;;;;;;3971:9;;4243:18:41;;3941:55:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3898:103::o;4141:166::-;873:26;2464:16:9;2475:4;2464:10;:16::i;:::-;1219:11:33;4254:48:::1;::::0;-1:-1:-1;;;4254:48:33;;-1:-1:-1;;;;;6504:32:41;;;4254:48:33::1;::::0;::::1;6486:51:41::0;6553:18;;;6546:34;;;4254:23:33;;;::::1;::::0;::::1;::::0;6459:18:41;;4254:48:33::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2854:136:9::0;2931:4;2954:12;;;;;;;;;;;-1:-1:-1;;;;;2954:29:9;;;;;;;;;;;;;;;2854:136::o;2087:175:33:-;2169:34;:32;:34::i;:::-;2209:48;2239:4;2245;;2209:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2251:5:33;;-1:-1:-1;2209:29:33;;-1:-1:-1;;2209:48:33:i;3716:107::-;3781:37;;-1:-1:-1;;;3781:37:33;;3812:4;3781:37;;;4270:51:41;3759:7:33;;-1:-1:-1;;;;;1219:11:33;3781:22;;;;4243:18:41;;3781:37:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3774:44;;3716:107;:::o;771:121:0:-;846:39;;-1:-1:-1;;;846:39:0;;876:4;846:39;;;6962:51:41;820:7:0;7029:18:41;;;7022:60;;;820:7:0;-1:-1:-1;;;;;1219:11:33;846:21:0;;;;6935:18:41;;846:39:0;6780:308:41;4642:138:9;3875:7;3901:12;;;;;;;;;;:22;;;2464:16;2475:4;2464:10;:16::i;:::-;4747:26:::1;4759:4;4765:7;4747:11;:26::i;1605:183:0:-:0;1692:10;-1:-1:-1;;;;;1219:11:33;1692:35:0;;1671:110;;;;-1:-1:-1;;;1671:110:0;;7295:2:41;1671:110:0;;;7277:21:41;7334:2;7314:18;;;7307:30;7373;7353:18;;;7346:58;7421:18;;1671:110:0;;;;;;;;;1605:183::o;3242:405:33:-;1376:34:26;3374:22:33;1363:48:26;;;1472:4;1465:25;;;1570:4;1554:21;;3476:17:33;3496:37;3404:66;3516:16;;;;:6;:16;:::i;:::-;3496:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3496:13:33;;-1:-1:-1;;;3496:37:33:i;:::-;3476:57;;3544:33;943:26;3567:9;3544:7;:33::i;:::-;3539:68;;305:1:1;3579:28:33;;;;;;3539:68;-1:-1:-1;465:1:1;;3242:405:33;-1:-1:-1;;;;3242:405:33:o;3713:68:0:-;;:::o;4356:382::-;4437:24;;4433:299;;4496:126;;4478:12;;4504:10;;-1:-1:-1;;4587:17:0;4545:19;;4478:12;4496:126;4478:12;4496:126;4545:19;4504:10;4587:17;4496:126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3199:103:9;3265:30;3276:4;735:10:20;3265::9;:30::i;6179:316::-;6256:4;6277:22;6285:4;6291:7;6277;:22::i;:::-;6272:217;;6315:6;:12;;;;;;;;;;;-1:-1:-1;;;;;6315:29:9;;;;;;;;;:36;;-1:-1:-1;;6315:36:9;6347:4;6315:36;;;6397:12;735:10:20;;656:96;6397:12:9;-1:-1:-1;;;;;6370:40:9;6388:7;-1:-1:-1;;;;;6370:40:9;6382:4;6370:40;;;;;;;;;;-1:-1:-1;6431:4:9;6424:11;;6272:217;-1:-1:-1;6473:5:9;6466:12;;6730:317;6808:4;6828:22;6836:4;6842:7;6828;:22::i;:::-;6824:217;;;6898:5;6866:12;;;;;;;;;;;-1:-1:-1;;;;;6866:29:9;;;;;;;;;;:37;;-1:-1:-1;;6866:37:9;;;6922:40;735:10:20;;6866:12:9;;6922:40;;6898:5;6922:40;-1:-1:-1;6983:4:9;6976:11;;1650:202:33;1718:10;-1:-1:-1;;;;;1219:11:33;1718:35;;;;;:74;;;1758:34;943:26;1781:10;1758:7;:34::i;:::-;1757:35;1718:74;1714:133;;;1807:40;;-1:-1:-1;;;1807:40:33;;1836:10;1807:40;;;4270:51:41;4243:18;;1807:40:33;4105:222:41;2975:407:19;3074:12;3126:5;3102:21;:29;3098:123;;;3154:56;;-1:-1:-1;;;3154:56:19;;3181:21;3154:56;;;7834:25:41;7875:18;;;7868:34;;;7807:18;;3154:56:19;7660:248:41;3098:123:19;3231:12;3245:23;3272:6;-1:-1:-1;;;;;3272:11:19;3291:5;3298:4;3272:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3230:73;;;;3320:55;3347:6;3355:7;3364:10;3320:26;:55::i;:::-;3313:62;2975:407;-1:-1:-1;;;;;;2975:407:19:o;3714:255:25:-;3792:7;3812:17;3831:18;3851:16;3871:27;3882:4;3888:9;3871:10;:27::i;:::-;3811:87;;;;;;3908:28;3920:5;3927:8;3908:11;:28::i;:::-;-1:-1:-1;3953:9:25;;3714:255;-1:-1:-1;;;;3714:255:25:o;3432:197:9:-;3520:22;3528:4;3534:7;3520;:22::i;:::-;3515:108;;3565:47;;-1:-1:-1;;;3565:47:9;;-1:-1:-1;;;;;6504:32:41;;3565:47:9;;;6486:51:41;6553:18;;;6546:34;;;6459:18;;3565:47:9;6296:290:41;3515:108:9;3432:197;;:::o;4437:582:19:-;4581:12;4610:7;4605:408;;4633:19;4641:10;4633:7;:19::i;:::-;4605:408;;;4857:17;;:22;:49;;;;-1:-1:-1;;;;;;4883:18:19;;;:23;4857:49;4853:119;;;4933:24;;-1:-1:-1;;;4933:24:19;;-1:-1:-1;;;;;4288:32:41;;4933:24:19;;;4270:51:41;4243:18;;4933:24:19;4105:222:41;4853:119:19;-1:-1:-1;4992:10:19;4985:17;;2129:778:25;2232:17;2251:16;2269:14;2299:9;:16;2319:2;2299:22;2295:606;;2604:4;2589:20;;2583:27;2653:4;2638:20;;2632:27;2710:4;2695:20;;2689:27;2337:9;2681:36;2751:25;2762:4;2681:36;2583:27;2632;2751:10;:25::i;:::-;2744:32;;;;;;;;;;;2295:606;-1:-1:-1;;2872:16:25;;2823:1;;-1:-1:-1;2827:35:25;;2295:606;2129:778;;;;;:::o;7280:532::-;7375:20;7366:5;:29;;;;;;;;:::i;:::-;;7362:444;;7280:532;;:::o;7362:444::-;7471:29;7462:5;:38;;;;;;;;:::i;:::-;;7458:348;;7523:23;;-1:-1:-1;;;7523:23:25;;;;;;;;;;;7458:348;7576:35;7567:5;:44;;;;;;;;:::i;:::-;;7563:243;;7634:46;;-1:-1:-1;;;7634:46:25;;;;;643:25:41;;;616:18;;7634:46:25;497:177:41;7563:243:25;7710:30;7701:5;:39;;;;;;;;:::i;:::-;;7697:109;;7763:32;;-1:-1:-1;;;7763:32:25;;;;;643:25:41;;;616:18;;7763:32:25;497:177:41;5559:487:19;5690:17;;:21;5686:354;;5887:10;5881:17;5943:15;5930:10;5926:2;5922:19;5915:44;5686:354;6010:19;;-1:-1:-1;;;6010:19:19;;;;;;;;;;;5203:1551:25;5329:17;;;6283:66;6270:79;;6266:164;;;-1:-1:-1;6381:1:25;;-1:-1:-1;6385:30:25;;-1:-1:-1;6417:1:25;6365:54;;6266:164;6541:24;;;6524:14;6541:24;;;;;;;;;8857:25:41;;;8930:4;8918:17;;8898:18;;;8891:45;;;;8952:18;;;8945:34;;;8995:18;;;8988:34;;;6541:24:25;;8829:19:41;;6541:24:25;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6541:24:25;;-1:-1:-1;;6541:24:25;;;-1:-1:-1;;;;;;;6579:20:25;;6575:113;;-1:-1:-1;6631:1:25;;-1:-1:-1;6635:29:25;;-1:-1:-1;6631:1:25;;-1:-1:-1;6615:62:25;;6575:113;6706:6;-1:-1:-1;6714:20:25;;-1:-1:-1;6714:20:25;;-1:-1:-1;5203:1551:25;;;;;;;;;:::o;14:286:41:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:41;;209:43;;199:71;;266:1;263;256:12;679:633;795:6;803;811;864:2;852:9;843:7;839:23;835:32;832:52;;;880:1;877;870:12;832:52;920:9;907:23;953:18;945:6;942:30;939:50;;;985:1;982;975:12;939:50;1008:22;;1064:3;1046:16;;;1042:26;1039:46;;;1081:1;1078;1071:12;1039:46;1104:2;1175;1160:18;;1147:32;;-1:-1:-1;1276:2:41;1261:18;;;1248:32;;679:633;-1:-1:-1;;;679:633:41:o;1499:226::-;1558:6;1611:2;1599:9;1590:7;1586:23;1582:32;1579:52;;;1627:1;1624;1617:12;1579:52;-1:-1:-1;1672:23:41;;1499:226;-1:-1:-1;1499:226:41:o;1730:131::-;-1:-1:-1;;;;;1805:31:41;;1795:42;;1785:70;;1851:1;1848;1841:12;1866:367;1934:6;1942;1995:2;1983:9;1974:7;1970:23;1966:32;1963:52;;;2011:1;2008;2001:12;1963:52;2056:23;;;-1:-1:-1;2155:2:41;2140:18;;2127:32;2168:33;2127:32;2168:33;:::i;:::-;2220:7;2210:17;;;1866:367;;;;;:::o;2238:::-;2301:8;2311:6;2365:3;2358:4;2350:6;2346:17;2342:27;2332:55;;2383:1;2380;2373:12;2332:55;-1:-1:-1;2406:20:41;;2449:18;2438:30;;2435:50;;;2481:1;2478;2471:12;2435:50;2518:4;2510:6;2506:17;2494:29;;2578:3;2571:4;2561:6;2558:1;2554:14;2546:6;2542:27;2538:38;2535:47;2532:67;;;2595:1;2592;2585:12;2532:67;2238:367;;;;;:::o;2610:1110::-;2779:6;2787;2795;2803;2811;2819;2872:2;2860:9;2851:7;2847:23;2843:32;2840:52;;;2888:1;2885;2878:12;2840:52;2928:9;2915:23;2961:18;2953:6;2950:30;2947:50;;;2993:1;2990;2983:12;2947:50;3032:70;3094:7;3085:6;3074:9;3070:22;3032:70;:::i;:::-;3121:8;;-1:-1:-1;3006:96:41;-1:-1:-1;;3209:2:41;3194:18;;3181:32;3238:18;3225:32;;3222:52;;;3270:1;3267;3260:12;3222:52;3309:72;3373:7;3362:8;3351:9;3347:24;3309:72;:::i;:::-;3400:8;;-1:-1:-1;3283:98:41;-1:-1:-1;;3488:2:41;3473:18;;3460:32;3517:18;3504:32;;3501:52;;;3549:1;3546;3539:12;3501:52;3588:72;3652:7;3641:8;3630:9;3626:24;3588:72;:::i;:::-;2610:1110;;;;-1:-1:-1;2610:1110:41;;-1:-1:-1;2610:1110:41;;3679:8;;2610:1110;-1:-1:-1;;;2610:1110:41:o;3725:375::-;3801:6;3809;3862:2;3850:9;3841:7;3837:23;3833:32;3830:52;;;3878:1;3875;3868:12;3830:52;3917:9;3904:23;3936:31;3961:5;3936:31;:::i;:::-;3986:5;4064:2;4049:18;;;;4036:32;;-1:-1:-1;;;3725:375:41:o;4332:841::-;4420:6;4428;4436;4444;4497:2;4485:9;4476:7;4472:23;4468:32;4465:52;;;4513:1;4510;4503:12;4465:52;4552:9;4539:23;4571:31;4596:5;4571:31;:::i;:::-;4621:5;-1:-1:-1;4699:2:41;4684:18;;4671:32;;-1:-1:-1;4780:2:41;4765:18;;4752:32;4807:18;4796:30;;4793:50;;;4839:1;4836;4829:12;4793:50;4862:22;;4915:4;4907:13;;4903:27;-1:-1:-1;4893:55:41;;4944:1;4941;4934:12;4893:55;4984:2;4971:16;5010:18;5002:6;4999:30;4996:50;;;5042:1;5039;5032:12;4996:50;5087:7;5082:2;5073:6;5069:2;5065:15;5061:24;5058:37;5055:57;;;5108:1;5105;5098:12;5055:57;4332:841;;;;-1:-1:-1;5139:2:41;5131:11;;-1:-1:-1;;;4332:841:41:o;5178:127::-;5239:10;5234:3;5230:20;5227:1;5220:31;5270:4;5267:1;5260:15;5294:4;5291:1;5284:15;5310:247;5369:6;5422:2;5410:9;5401:7;5397:23;5393:32;5390:52;;;5438:1;5435;5428:12;5390:52;5477:9;5464:23;5496:31;5521:5;5496:31;:::i;5562:521::-;5639:4;5645:6;5705:11;5692:25;5799:2;5795:7;5784:8;5768:14;5764:29;5760:43;5740:18;5736:68;5726:96;;5818:1;5815;5808:12;5726:96;5845:33;;5897:20;;;-1:-1:-1;5940:18:41;5929:30;;5926:50;;;5972:1;5969;5962:12;5926:50;6005:4;5993:17;;-1:-1:-1;6036:14:41;6032:27;;;6022:38;;6019:58;;;6073:1;6070;6063:12;6591:184;6661:6;6714:2;6702:9;6693:7;6689:23;6685:32;6682:52;;;6730:1;6727;6720:12;6682:52;-1:-1:-1;6753:16:41;;6591:184;-1:-1:-1;6591:184:41:o;7913:301::-;8042:3;8080:6;8074:13;8126:6;8119:4;8111:6;8107:17;8102:3;8096:37;8188:1;8152:16;;8177:13;;;-1:-1:-1;8152:16:41;7913:301;-1:-1:-1;7913:301:41:o;8498:127::-;8559:10;8554:3;8550:20;8547:1;8540:31;8590:4;8587:1;8580:15;8614:4;8611:1;8604:15"},"methodIdentifiers":{"DEFAULT_ADMIN_ROLE()":"a217fddf","EXECUTOR_ROLE()":"07bd0265","WITHDRAW_ROLE()":"e02023a1","addDeposit()":"4a58db19","entryPoint()":"b0d691fe","execute(address,uint256,bytes)":"b61d27f6","executeBatch(address[],uint256[],bytes[])":"47e1da2a","getDeposit()":"c399ec88","getNonce()":"d087d288","getRoleAdmin(bytes32)":"248a9ca3","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f","supportsInterface(bytes4)":"01ffc9a7","validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)":"19822f7c","withdrawDepositTo(address,uint256)":"4d44560d"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IEntryPoint\",\"name\":\"anEntryPoint\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"admin\",\"type\":\"address\"},{\"internalType\":\"address[]\",\"name\":\"executors\",\"type\":\"address[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RequiredEntryPointOrExecutor\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"WrongArrayLength\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DEFAULT_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXECUTOR_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"WITHDRAW_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"addDeposit\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"entryPoint\",\"outputs\":[{\"internalType\":\"contract IEntryPoint\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"dest\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"func\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"dest\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"value\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"func\",\"type\":\"bytes[]\"}],\"name\":\"executeBatch\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation\",\"name\":\"userOp\",\"type\":\"tuple\"},{\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"missingAccountFunds\",\"type\":\"uint256\"}],\"name\":\"validateUserOp\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"validationData\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawDepositTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}],\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InsufficientBalance(uint256,uint256)\":[{\"details\":\"The ETH balance of the account is not enough to perform the operation.\"}]},\"events\":{\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted signaling this.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call:   - if using `revokeRole`, it is the admin role bearer   - if using `renounceRole`, it is the role bearer (i.e. `account`)\"}},\"kind\":\"dev\",\"methods\":{\"execute(address,uint256,bytes)\":{\"params\":{\"dest\":\"destination address to call\",\"func\":\"the calldata to pass in this call\",\"value\":\"the value to pass in this call\"}},\"executeBatch(address[],uint256[],bytes[])\":{\"details\":\"to reduce gas consumption for trivial case (no value), use a zero-length array to mean zero value\",\"params\":{\"dest\":\"an array of destination addresses\",\"func\":\"an array of calldata to pass to each call\",\"value\":\"an array of values to pass to each call. can be zero-length for no-value calls\"}},\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {_setRoleAdmin}.\"},\"grantRole(bytes32,address)\":{\"details\":\"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleGranted} event.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been revoked `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`. May emit a {RoleRevoked} event.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleRevoked} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"details\":\"Must validate caller is the entryPoint.      Must validate the signature and nonce\",\"params\":{\"missingAccountFunds\":\"- Missing funds on the account's deposit in the entrypoint.                              This is the minimum amount to transfer to the sender(entryPoint) to be                              able to make the call. The excess is left as a deposit in the entrypoint                              for future calls. Can be withdrawn anytime using \\\"entryPoint.withdrawTo()\\\".                              In case there is a paymaster in the request (or the current deposit is high                              enough), this value will be zero.\",\"userOp\":\"- The operation that is about to be executed.\",\"userOpHash\":\"- Hash of the user's request data. can be used as the basis for signature.\"},\"returns\":{\"validationData\":\"      - Packaged ValidationData structure. use `_packValidationData` and                              `_unpackValidationData` to encode and decode.                              <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,                                 otherwise, an address of an \\\"authorizer\\\" contract.                              <6-byte> validUntil - Last timestamp this operation is valid. 0 for \\\"indefinite\\\"                              <6-byte> validAfter - First timestamp this operation is valid                                                    If an account doesn't use time-range, it is enough to                                                    return SIG_VALIDATION_FAILED value (1) for signature failure.                              Note that the validation code cannot use block.timestamp (or block.number) directly.\"}},\"withdrawDepositTo(address,uint256)\":{\"params\":{\"amount\":\"to withdraw\",\"withdrawAddress\":\"target to send to\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"addDeposit()\":{\"notice\":\"deposit more funds for this account in the entryPoint\"},\"entryPoint()\":{\"notice\":\"Return the entryPoint used by this account. Subclass should return the current entryPoint used by this account.\"},\"execute(address,uint256,bytes)\":{\"notice\":\"execute a transaction (called directly from owner, or by entryPoint)\"},\"executeBatch(address[],uint256[],bytes[])\":{\"notice\":\"execute a sequence of transactions\"},\"getDeposit()\":{\"notice\":\"check current account deposit in the entryPoint\"},\"getNonce()\":{\"notice\":\"Return the account nonce. This method returns the next sequential nonce. For a nonce of a specific key, use `entrypoint.getNonce(account, key)`\"},\"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"notice\":\"Validate user's signature and nonce the entryPoint will make the call to the recipient only if this validation call returns successfully. signature failure should be reported by returning SIG_VALIDATION_FAILED (1). This allows making a \\\"simulation call\\\" without a valid signature Other failures (e.g. nonce mismatch, or invalid signature format) should still revert to signal failure.\"},\"withdrawDepositTo(address,uint256)\":{\"notice\":\"withdraw value from the account's deposit\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/AccessControlAccount.sol\":\"AccessControlAccount\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/core/BaseAccount.sol\":{\"keccak256\":\"0x2736272f077d1699b8b8bf8be18d1c20e506668fc52b3293da70d17e63794358\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://35744475cf48405d7fd6edf6a96c84ef9da3ce844d8dfe3e2e1ffc30edf21d07\",\"dweb:/ipfs/QmUdau9VjVQ7iuRbdTmFSrXP7Hcasd9Cc57LP9thK78bwj\"]},\"@account-abstraction/contracts/core/Helpers.sol\":{\"keccak256\":\"0x6247e011a6cb0b263b3aa098822977181674d91b62e5bdfe04c6e66f72da25d6\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://ca829a69b3fbc74fec8e140d42a2bf93bc3512609272f031c846470f61f0ab7e\",\"dweb:/ipfs/QmP3r3MBgAN39KeVB1rCGJWwcBcotNt26ALtAR54poQ1Jc\"]},\"@account-abstraction/contracts/core/UserOperationLib.sol\":{\"keccak256\":\"0x9d50ece985d35f82e33e5da417595c86fac10449e3d10895d08363d33aad454b\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://b1d11cc364c8bf7ed5388268c895b5ffed16e87dfbcb320ddeeba5e7974315dc\",\"dweb:/ipfs/QmYSpvjxEjweietQrYZagwQ52ipy7eXx4rwvnTzXKeGeMS\"]},\"@account-abstraction/contracts/interfaces/IAccount.sol\":{\"keccak256\":\"0x38710bec0cb20ff4ceef46a80475b5bdabc27b7efd2687fd473db68332f61b78\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://dea7a723e1ef852e8764e69914a345d2e8bc5e13facfc9d5c29d791cb4ab0020\",\"dweb:/ipfs/QmU8dYgyF4DBJXFqjwLAtnE3q8q259ChfoEk9a6wyhHzEP\"]},\"@account-abstraction/contracts/interfaces/IAggregator.sol\":{\"keccak256\":\"0xf100d6fcc0c3b450b13e979b6a42c628c292a1bc340eccc2e7796b80e3975588\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://192938b5b27234d35c8098a319e879363c79f750eea4d0e409dc889a8ce5b155\",\"dweb:/ipfs/QmURpaJFPqEtkKP2ngBsgZhAGN8wAWh5XQpYmCkiz4Urz5\"]},\"@account-abstraction/contracts/interfaces/IEntryPoint.sol\":{\"keccak256\":\"0x1972a5fcb3a808b58c85af5741949ef6af11ab0debd3ae8c708171ae1ae0d0c4\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://baa9837ae73b9e2362a47d42d081d7c0f3d8e878e5edb381117d94a6968949c9\",\"dweb:/ipfs/QmUmo6FUE7fv5z1WzW1YFjxp8PqaeN2JrEee9au59w3Xhe\"]},\"@account-abstraction/contracts/interfaces/INonceManager.sol\":{\"keccak256\":\"0xd575af0f6ebbd5f0b2933307d44cd7b4e03a69f4b817a67db5409bd3c89aeecb\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://3b1e2dea9b05cfba9d13339ed16d96457dc861013cc4f3f35b71a80f82448db3\",\"dweb:/ipfs/QmVaGy5uGDMSiU2SzyokTjoHFyb39VVG5wtaM9KTnHyZSk\"]},\"@account-abstraction/contracts/interfaces/IStakeManager.sol\":{\"keccak256\":\"0xbe5ca9e7f254d031687419e7b96ef48c9c63e9398bbe992dc72ffc6dc14e0a04\",\"license\":\"GPL-3.0-only\",\"urls\":[\"bzz-raw://1fffec71c38627a26fabb423350148009579f092623fb02b471a12d973763a00\",\"dweb:/ipfs/QmRBi31QEYXHj3x1AnQ2jKa2eziZH1b9av396P3b4dw6bj\"]},\"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\":{\"keccak256\":\"0x1129b46381db68eddbc5cb49e50664667b66b03c480453858e7b25eabe444359\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://499a948aba60480dba6e25c763b8d918f1c246eb7a3302e04f493e080f3295be\",\"dweb:/ipfs/QmeRhhswf4NACcBKam2PyjpTP2ddSm648kah5kkQJsvwz3\"]},\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80\",\"dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"contracts/AccessControlAccount.sol\":{\"keccak256\":\"0xdffd61dbaacbd286d813a1ab05a59ac3ea4327dd3f2cf7a1d03d13f997288205\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fbf4ff51ff8a761da72d67d1bf2d3292650c8562050d4abc82ae10650a6bf494\",\"dweb:/ipfs/QmeWw2Qm6MaU3Fwjipw5HJFjyzn2LNTB8EmDusQZkW4nQG\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":1081,"contract":"contracts/AccessControlAccount.sol:AccessControlAccount","label":"_roles","offset":0,"slot":"0","type":"t_mapping(t_bytes32,t_struct(RoleData)1076_storage)"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_mapping(t_address,t_bool)":{"encoding":"mapping","key":"t_address","label":"mapping(address => bool)","numberOfBytes":"32","value":"t_bool"},"t_mapping(t_bytes32,t_struct(RoleData)1076_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct AccessControl.RoleData)","numberOfBytes":"32","value":"t_struct(RoleData)1076_storage"},"t_struct(RoleData)1076_storage":{"encoding":"inplace","label":"struct AccessControl.RoleData","members":[{"astId":1073,"contract":"contracts/AccessControlAccount.sol:AccessControlAccount","label":"hasRole","offset":0,"slot":"0","type":"t_mapping(t_address,t_bool)"},{"astId":1075,"contract":"contracts/AccessControlAccount.sol:AccessControlAccount","label":"adminRole","offset":0,"slot":"1","type":"t_bytes32"}],"numberOfBytes":"64"}}}}},"contracts/AccessManagerAccount.sol":{"AccessManagerAccount":{"abi":[{"inputs":[{"internalType":"contract IEntryPoint","name":"anEntryPoint","type":"address"},{"internalType":"address","name":"initialAdmin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerAlreadyScheduled","type":"error"},{"inputs":[],"name":"AccessManagerBadConfirmation","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerExpired","type":"error"},{"inputs":[{"internalType":"address","name":"initialAdmin","type":"address"}],"name":"AccessManagerInvalidInitialAdmin","type":"error"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"AccessManagerLockedRole","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerNotReady","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerNotScheduled","type":"error"},{"inputs":[{"internalType":"address","name":"msgsender","type":"address"},{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"AccessManagerUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"AccessManagerUnauthorizedCall","type":"error"},{"inputs":[{"internalType":"address","name":"msgsender","type":"address"},{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"AccessManagerUnauthorizedCancel","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AccessManagerUnauthorizedConsume","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[],"name":"DelayNotAllowed","type":"error"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[{"internalType":"bytes4","name":"receivedSelector","type":"bytes4"}],"name":"OnlyExecuteAllowedFromEntryPoint","type":"error"},{"inputs":[],"name":"OnlyExternalTargets","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"}],"name":"OperationCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"}],"name":"OperationExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"schedule","type":"uint48"},{"indexed":false,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"OperationScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"uint64","name":"admin","type":"uint64"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"}],"name":"RoleGrantDelayChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"},{"indexed":false,"internalType":"bool","name":"newMember","type":"bool"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"uint64","name":"guardian","type":"uint64"}],"name":"RoleGuardianChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":false,"internalType":"string","name":"label","type":"string"}],"name":"RoleLabel","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"}],"name":"TargetAdminDelayUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bool","name":"closed","type":"bool"}],"name":"TargetClosed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes4","name":"selector","type":"bytes4"},{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"TargetFunctionRoleUpdated","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_ROLE","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addDeposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"canCall","outputs":[{"internalType":"bool","name":"immediate","type":"bool"},{"internalType":"uint32","name":"delay","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"cancel","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"consumeScheduledOp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"entryPoint","outputs":[{"internalType":"contract IEntryPoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"execute","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"dest","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"func","type":"bytes"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"expiration","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"getAccess","outputs":[{"internalType":"uint48","name":"since","type":"uint48"},{"internalType":"uint32","name":"currentDelay","type":"uint32"},{"internalType":"uint32","name":"pendingDelay","type":"uint32"},{"internalType":"uint48","name":"effect","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getNonce","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleAdmin","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleGrantDelay","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleGuardian","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getSchedule","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"getTargetAdminDelay","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"getTargetFunctionRole","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"executionDelay","type":"uint32"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"isMember","type":"bool"},{"internalType":"uint32","name":"executionDelay","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"hashOperation","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"isTargetClosed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"string","name":"label","type":"string"}],"name":"labelRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minSetback","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint48","name":"when","type":"uint48"}],"name":"schedule","outputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"},{"internalType":"uint32","name":"nonce","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint32","name":"newDelay","type":"uint32"}],"name":"setGrantDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint64","name":"admin","type":"uint64"}],"name":"setRoleAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint64","name":"guardian","type":"uint64"}],"name":"setRoleGuardian","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"newDelay","type":"uint32"}],"name":"setTargetAdminDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"closed","type":"bool"}],"name":"setTargetClosed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4[]","name":"selectors","type":"bytes4[]"},{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"setTargetFunctionRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"address","name":"newAuthority","type":"address"}],"name":"updateAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation","name":"userOp","type":"tuple"},{"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"internalType":"uint256","name":"missingAccountFunds","type":"uint256"}],"name":"validateUserOp","outputs":[{"internalType":"uint256","name":"validationData","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawDepositTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"@_10037":{"entryPoint":null,"id":10037,"parameterSlots":1,"returnSlots":0},"@_9117":{"entryPoint":null,"id":9117,"parameterSlots":2,"returnSlots":0},"@_getFullAt_8522":{"entryPoint":1030,"id":8522,"parameterSlots":2,"returnSlots":3},"@_grantRole_10567":{"entryPoint":125,"id":10567,"parameterSlots":4,"returnSlots":1},"@getFull_8542":{"entryPoint":997,"id":8542,"parameterSlots":1,"returnSlots":3},"@get_8560":{"entryPoint":951,"id":8560,"parameterSlots":1,"returnSlots":1},"@max_5133":{"entryPoint":981,"id":5133,"parameterSlots":2,"returnSlots":1},"@pack_8705":{"entryPoint":null,"id":8705,"parameterSlots":3,"returnSlots":1},"@ternary_5114":{"entryPoint":null,"id":5114,"parameterSlots":3,"returnSlots":1},"@timestamp_8454":{"entryPoint":707,"id":8454,"parameterSlots":0,"returnSlots":1},"@toDelay_8484":{"entryPoint":722,"id":8484,"parameterSlots":1,"returnSlots":1},"@toUint48_7278":{"entryPoint":897,"id":7278,"parameterSlots":1,"returnSlots":1},"@toUint_8287":{"entryPoint":null,"id":8287,"parameterSlots":1,"returnSlots":1},"@unpack_8667":{"entryPoint":null,"id":8667,"parameterSlots":1,"returnSlots":3},"@withUpdate_8616":{"entryPoint":731,"id":8616,"parameterSlots":3,"returnSlots":2},"abi_decode_tuple_t_contract$_IEntryPoint_$909t_address_fromMemory":{"entryPoint":1126,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint48":{"entryPoint":1202,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint32":{"entryPoint":1232,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":1182,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_contract_IEntryPoint":{"entryPoint":1103,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:2138:41","nodeType":"YulBlock","src":"0:2138:41","statements":[{"nativeSrc":"6:3:41","nodeType":"YulBlock","src":"6:3:41","statements":[]},{"body":{"nativeSrc":"72:86:41","nodeType":"YulBlock","src":"72:86:41","statements":[{"body":{"nativeSrc":"136:16:41","nodeType":"YulBlock","src":"136:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"145:1:41","nodeType":"YulLiteral","src":"145:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"148:1:41","nodeType":"YulLiteral","src":"148:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"138:6:41","nodeType":"YulIdentifier","src":"138:6:41"},"nativeSrc":"138:12:41","nodeType":"YulFunctionCall","src":"138:12:41"},"nativeSrc":"138:12:41","nodeType":"YulExpressionStatement","src":"138:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"95:5:41","nodeType":"YulIdentifier","src":"95:5:41"},{"arguments":[{"name":"value","nativeSrc":"106:5:41","nodeType":"YulIdentifier","src":"106:5:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"121:3:41","nodeType":"YulLiteral","src":"121:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"126:1:41","nodeType":"YulLiteral","src":"126:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"117:3:41","nodeType":"YulIdentifier","src":"117:3:41"},"nativeSrc":"117:11:41","nodeType":"YulFunctionCall","src":"117:11:41"},{"kind":"number","nativeSrc":"130:1:41","nodeType":"YulLiteral","src":"130:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"113:3:41","nodeType":"YulIdentifier","src":"113:3:41"},"nativeSrc":"113:19:41","nodeType":"YulFunctionCall","src":"113:19:41"}],"functionName":{"name":"and","nativeSrc":"102:3:41","nodeType":"YulIdentifier","src":"102:3:41"},"nativeSrc":"102:31:41","nodeType":"YulFunctionCall","src":"102:31:41"}],"functionName":{"name":"eq","nativeSrc":"92:2:41","nodeType":"YulIdentifier","src":"92:2:41"},"nativeSrc":"92:42:41","nodeType":"YulFunctionCall","src":"92:42:41"}],"functionName":{"name":"iszero","nativeSrc":"85:6:41","nodeType":"YulIdentifier","src":"85:6:41"},"nativeSrc":"85:50:41","nodeType":"YulFunctionCall","src":"85:50:41"},"nativeSrc":"82:70:41","nodeType":"YulIf","src":"82:70:41"}]},"name":"validator_revert_contract_IEntryPoint","nativeSrc":"14:144:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"61:5:41","nodeType":"YulTypedName","src":"61:5:41","type":""}],"src":"14:144:41"},{"body":{"nativeSrc":"280:313:41","nodeType":"YulBlock","src":"280:313:41","statements":[{"body":{"nativeSrc":"326:16:41","nodeType":"YulBlock","src":"326:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"335:1:41","nodeType":"YulLiteral","src":"335:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"338:1:41","nodeType":"YulLiteral","src":"338:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"328:6:41","nodeType":"YulIdentifier","src":"328:6:41"},"nativeSrc":"328:12:41","nodeType":"YulFunctionCall","src":"328:12:41"},"nativeSrc":"328:12:41","nodeType":"YulExpressionStatement","src":"328:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"301:7:41","nodeType":"YulIdentifier","src":"301:7:41"},{"name":"headStart","nativeSrc":"310:9:41","nodeType":"YulIdentifier","src":"310:9:41"}],"functionName":{"name":"sub","nativeSrc":"297:3:41","nodeType":"YulIdentifier","src":"297:3:41"},"nativeSrc":"297:23:41","nodeType":"YulFunctionCall","src":"297:23:41"},{"kind":"number","nativeSrc":"322:2:41","nodeType":"YulLiteral","src":"322:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"293:3:41","nodeType":"YulIdentifier","src":"293:3:41"},"nativeSrc":"293:32:41","nodeType":"YulFunctionCall","src":"293:32:41"},"nativeSrc":"290:52:41","nodeType":"YulIf","src":"290:52:41"},{"nativeSrc":"351:29:41","nodeType":"YulVariableDeclaration","src":"351:29:41","value":{"arguments":[{"name":"headStart","nativeSrc":"370:9:41","nodeType":"YulIdentifier","src":"370:9:41"}],"functionName":{"name":"mload","nativeSrc":"364:5:41","nodeType":"YulIdentifier","src":"364:5:41"},"nativeSrc":"364:16:41","nodeType":"YulFunctionCall","src":"364:16:41"},"variables":[{"name":"value","nativeSrc":"355:5:41","nodeType":"YulTypedName","src":"355:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"427:5:41","nodeType":"YulIdentifier","src":"427:5:41"}],"functionName":{"name":"validator_revert_contract_IEntryPoint","nativeSrc":"389:37:41","nodeType":"YulIdentifier","src":"389:37:41"},"nativeSrc":"389:44:41","nodeType":"YulFunctionCall","src":"389:44:41"},"nativeSrc":"389:44:41","nodeType":"YulExpressionStatement","src":"389:44:41"},{"nativeSrc":"442:15:41","nodeType":"YulAssignment","src":"442:15:41","value":{"name":"value","nativeSrc":"452:5:41","nodeType":"YulIdentifier","src":"452:5:41"},"variableNames":[{"name":"value0","nativeSrc":"442:6:41","nodeType":"YulIdentifier","src":"442:6:41"}]},{"nativeSrc":"466:40:41","nodeType":"YulVariableDeclaration","src":"466:40:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"491:9:41","nodeType":"YulIdentifier","src":"491:9:41"},{"kind":"number","nativeSrc":"502:2:41","nodeType":"YulLiteral","src":"502:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"487:3:41","nodeType":"YulIdentifier","src":"487:3:41"},"nativeSrc":"487:18:41","nodeType":"YulFunctionCall","src":"487:18:41"}],"functionName":{"name":"mload","nativeSrc":"481:5:41","nodeType":"YulIdentifier","src":"481:5:41"},"nativeSrc":"481:25:41","nodeType":"YulFunctionCall","src":"481:25:41"},"variables":[{"name":"value_1","nativeSrc":"470:7:41","nodeType":"YulTypedName","src":"470:7:41","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"553:7:41","nodeType":"YulIdentifier","src":"553:7:41"}],"functionName":{"name":"validator_revert_contract_IEntryPoint","nativeSrc":"515:37:41","nodeType":"YulIdentifier","src":"515:37:41"},"nativeSrc":"515:46:41","nodeType":"YulFunctionCall","src":"515:46:41"},"nativeSrc":"515:46:41","nodeType":"YulExpressionStatement","src":"515:46:41"},{"nativeSrc":"570:17:41","nodeType":"YulAssignment","src":"570:17:41","value":{"name":"value_1","nativeSrc":"580:7:41","nodeType":"YulIdentifier","src":"580:7:41"},"variableNames":[{"name":"value1","nativeSrc":"570:6:41","nodeType":"YulIdentifier","src":"570:6:41"}]}]},"name":"abi_decode_tuple_t_contract$_IEntryPoint_$909t_address_fromMemory","nativeSrc":"163:430:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"238:9:41","nodeType":"YulTypedName","src":"238:9:41","type":""},{"name":"dataEnd","nativeSrc":"249:7:41","nodeType":"YulTypedName","src":"249:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"261:6:41","nodeType":"YulTypedName","src":"261:6:41","type":""},{"name":"value1","nativeSrc":"269:6:41","nodeType":"YulTypedName","src":"269:6:41","type":""}],"src":"163:430:41"},{"body":{"nativeSrc":"699:102:41","nodeType":"YulBlock","src":"699:102:41","statements":[{"nativeSrc":"709:26:41","nodeType":"YulAssignment","src":"709:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"721:9:41","nodeType":"YulIdentifier","src":"721:9:41"},{"kind":"number","nativeSrc":"732:2:41","nodeType":"YulLiteral","src":"732:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"717:3:41","nodeType":"YulIdentifier","src":"717:3:41"},"nativeSrc":"717:18:41","nodeType":"YulFunctionCall","src":"717:18:41"},"variableNames":[{"name":"tail","nativeSrc":"709:4:41","nodeType":"YulIdentifier","src":"709:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"751:9:41","nodeType":"YulIdentifier","src":"751:9:41"},{"arguments":[{"name":"value0","nativeSrc":"766:6:41","nodeType":"YulIdentifier","src":"766:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"782:3:41","nodeType":"YulLiteral","src":"782:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"787:1:41","nodeType":"YulLiteral","src":"787:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"778:3:41","nodeType":"YulIdentifier","src":"778:3:41"},"nativeSrc":"778:11:41","nodeType":"YulFunctionCall","src":"778:11:41"},{"kind":"number","nativeSrc":"791:1:41","nodeType":"YulLiteral","src":"791:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"774:3:41","nodeType":"YulIdentifier","src":"774:3:41"},"nativeSrc":"774:19:41","nodeType":"YulFunctionCall","src":"774:19:41"}],"functionName":{"name":"and","nativeSrc":"762:3:41","nodeType":"YulIdentifier","src":"762:3:41"},"nativeSrc":"762:32:41","nodeType":"YulFunctionCall","src":"762:32:41"}],"functionName":{"name":"mstore","nativeSrc":"744:6:41","nodeType":"YulIdentifier","src":"744:6:41"},"nativeSrc":"744:51:41","nodeType":"YulFunctionCall","src":"744:51:41"},"nativeSrc":"744:51:41","nodeType":"YulExpressionStatement","src":"744:51:41"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"598:203:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"668:9:41","nodeType":"YulTypedName","src":"668:9:41","type":""},{"name":"value0","nativeSrc":"679:6:41","nodeType":"YulTypedName","src":"679:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"690:4:41","nodeType":"YulTypedName","src":"690:4:41","type":""}],"src":"598:203:41"},{"body":{"nativeSrc":"905:101:41","nodeType":"YulBlock","src":"905:101:41","statements":[{"nativeSrc":"915:26:41","nodeType":"YulAssignment","src":"915:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"927:9:41","nodeType":"YulIdentifier","src":"927:9:41"},{"kind":"number","nativeSrc":"938:2:41","nodeType":"YulLiteral","src":"938:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"923:3:41","nodeType":"YulIdentifier","src":"923:3:41"},"nativeSrc":"923:18:41","nodeType":"YulFunctionCall","src":"923:18:41"},"variableNames":[{"name":"tail","nativeSrc":"915:4:41","nodeType":"YulIdentifier","src":"915:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"957:9:41","nodeType":"YulIdentifier","src":"957:9:41"},{"arguments":[{"name":"value0","nativeSrc":"972:6:41","nodeType":"YulIdentifier","src":"972:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"988:2:41","nodeType":"YulLiteral","src":"988:2:41","type":"","value":"64"},{"kind":"number","nativeSrc":"992:1:41","nodeType":"YulLiteral","src":"992:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"984:3:41","nodeType":"YulIdentifier","src":"984:3:41"},"nativeSrc":"984:10:41","nodeType":"YulFunctionCall","src":"984:10:41"},{"kind":"number","nativeSrc":"996:1:41","nodeType":"YulLiteral","src":"996:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"980:3:41","nodeType":"YulIdentifier","src":"980:3:41"},"nativeSrc":"980:18:41","nodeType":"YulFunctionCall","src":"980:18:41"}],"functionName":{"name":"and","nativeSrc":"968:3:41","nodeType":"YulIdentifier","src":"968:3:41"},"nativeSrc":"968:31:41","nodeType":"YulFunctionCall","src":"968:31:41"}],"functionName":{"name":"mstore","nativeSrc":"950:6:41","nodeType":"YulIdentifier","src":"950:6:41"},"nativeSrc":"950:50:41","nodeType":"YulFunctionCall","src":"950:50:41"},"nativeSrc":"950:50:41","nodeType":"YulExpressionStatement","src":"950:50:41"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"806:200:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"874:9:41","nodeType":"YulTypedName","src":"874:9:41","type":""},{"name":"value0","nativeSrc":"885:6:41","nodeType":"YulTypedName","src":"885:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"896:4:41","nodeType":"YulTypedName","src":"896:4:41","type":""}],"src":"806:200:41"},{"body":{"nativeSrc":"1043:95:41","nodeType":"YulBlock","src":"1043:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1060:1:41","nodeType":"YulLiteral","src":"1060:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1067:3:41","nodeType":"YulLiteral","src":"1067:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"1072:10:41","nodeType":"YulLiteral","src":"1072:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1063:3:41","nodeType":"YulIdentifier","src":"1063:3:41"},"nativeSrc":"1063:20:41","nodeType":"YulFunctionCall","src":"1063:20:41"}],"functionName":{"name":"mstore","nativeSrc":"1053:6:41","nodeType":"YulIdentifier","src":"1053:6:41"},"nativeSrc":"1053:31:41","nodeType":"YulFunctionCall","src":"1053:31:41"},"nativeSrc":"1053:31:41","nodeType":"YulExpressionStatement","src":"1053:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1100:1:41","nodeType":"YulLiteral","src":"1100:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"1103:4:41","nodeType":"YulLiteral","src":"1103:4:41","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"1093:6:41","nodeType":"YulIdentifier","src":"1093:6:41"},"nativeSrc":"1093:15:41","nodeType":"YulFunctionCall","src":"1093:15:41"},"nativeSrc":"1093:15:41","nodeType":"YulExpressionStatement","src":"1093:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1124:1:41","nodeType":"YulLiteral","src":"1124:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1127:4:41","nodeType":"YulLiteral","src":"1127:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1117:6:41","nodeType":"YulIdentifier","src":"1117:6:41"},"nativeSrc":"1117:15:41","nodeType":"YulFunctionCall","src":"1117:15:41"},"nativeSrc":"1117:15:41","nodeType":"YulExpressionStatement","src":"1117:15:41"}]},"name":"panic_error_0x11","nativeSrc":"1011:127:41","nodeType":"YulFunctionDefinition","src":"1011:127:41"},{"body":{"nativeSrc":"1190:132:41","nodeType":"YulBlock","src":"1190:132:41","statements":[{"nativeSrc":"1200:58:41","nodeType":"YulAssignment","src":"1200:58:41","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"1215:1:41","nodeType":"YulIdentifier","src":"1215:1:41"},{"kind":"number","nativeSrc":"1218:14:41","nodeType":"YulLiteral","src":"1218:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"1211:3:41","nodeType":"YulIdentifier","src":"1211:3:41"},"nativeSrc":"1211:22:41","nodeType":"YulFunctionCall","src":"1211:22:41"},{"arguments":[{"name":"y","nativeSrc":"1239:1:41","nodeType":"YulIdentifier","src":"1239:1:41"},{"kind":"number","nativeSrc":"1242:14:41","nodeType":"YulLiteral","src":"1242:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"1235:3:41","nodeType":"YulIdentifier","src":"1235:3:41"},"nativeSrc":"1235:22:41","nodeType":"YulFunctionCall","src":"1235:22:41"}],"functionName":{"name":"add","nativeSrc":"1207:3:41","nodeType":"YulIdentifier","src":"1207:3:41"},"nativeSrc":"1207:51:41","nodeType":"YulFunctionCall","src":"1207:51:41"},"variableNames":[{"name":"sum","nativeSrc":"1200:3:41","nodeType":"YulIdentifier","src":"1200:3:41"}]},{"body":{"nativeSrc":"1294:22:41","nodeType":"YulBlock","src":"1294:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"1296:16:41","nodeType":"YulIdentifier","src":"1296:16:41"},"nativeSrc":"1296:18:41","nodeType":"YulFunctionCall","src":"1296:18:41"},"nativeSrc":"1296:18:41","nodeType":"YulExpressionStatement","src":"1296:18:41"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"1273:3:41","nodeType":"YulIdentifier","src":"1273:3:41"},{"kind":"number","nativeSrc":"1278:14:41","nodeType":"YulLiteral","src":"1278:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1270:2:41","nodeType":"YulIdentifier","src":"1270:2:41"},"nativeSrc":"1270:23:41","nodeType":"YulFunctionCall","src":"1270:23:41"},"nativeSrc":"1267:49:41","nodeType":"YulIf","src":"1267:49:41"}]},"name":"checked_add_t_uint48","nativeSrc":"1143:179:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"1173:1:41","nodeType":"YulTypedName","src":"1173:1:41","type":""},{"name":"y","nativeSrc":"1176:1:41","nodeType":"YulTypedName","src":"1176:1:41","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"1182:3:41","nodeType":"YulTypedName","src":"1182:3:41","type":""}],"src":"1143:179:41"},{"body":{"nativeSrc":"1474:216:41","nodeType":"YulBlock","src":"1474:216:41","statements":[{"nativeSrc":"1484:26:41","nodeType":"YulAssignment","src":"1484:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1496:9:41","nodeType":"YulIdentifier","src":"1496:9:41"},{"kind":"number","nativeSrc":"1507:2:41","nodeType":"YulLiteral","src":"1507:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1492:3:41","nodeType":"YulIdentifier","src":"1492:3:41"},"nativeSrc":"1492:18:41","nodeType":"YulFunctionCall","src":"1492:18:41"},"variableNames":[{"name":"tail","nativeSrc":"1484:4:41","nodeType":"YulIdentifier","src":"1484:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1526:9:41","nodeType":"YulIdentifier","src":"1526:9:41"},{"arguments":[{"name":"value0","nativeSrc":"1541:6:41","nodeType":"YulIdentifier","src":"1541:6:41"},{"kind":"number","nativeSrc":"1549:10:41","nodeType":"YulLiteral","src":"1549:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1537:3:41","nodeType":"YulIdentifier","src":"1537:3:41"},"nativeSrc":"1537:23:41","nodeType":"YulFunctionCall","src":"1537:23:41"}],"functionName":{"name":"mstore","nativeSrc":"1519:6:41","nodeType":"YulIdentifier","src":"1519:6:41"},"nativeSrc":"1519:42:41","nodeType":"YulFunctionCall","src":"1519:42:41"},"nativeSrc":"1519:42:41","nodeType":"YulExpressionStatement","src":"1519:42:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1581:9:41","nodeType":"YulIdentifier","src":"1581:9:41"},{"kind":"number","nativeSrc":"1592:2:41","nodeType":"YulLiteral","src":"1592:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1577:3:41","nodeType":"YulIdentifier","src":"1577:3:41"},"nativeSrc":"1577:18:41","nodeType":"YulFunctionCall","src":"1577:18:41"},{"arguments":[{"name":"value1","nativeSrc":"1601:6:41","nodeType":"YulIdentifier","src":"1601:6:41"},{"kind":"number","nativeSrc":"1609:14:41","nodeType":"YulLiteral","src":"1609:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"1597:3:41","nodeType":"YulIdentifier","src":"1597:3:41"},"nativeSrc":"1597:27:41","nodeType":"YulFunctionCall","src":"1597:27:41"}],"functionName":{"name":"mstore","nativeSrc":"1570:6:41","nodeType":"YulIdentifier","src":"1570:6:41"},"nativeSrc":"1570:55:41","nodeType":"YulFunctionCall","src":"1570:55:41"},"nativeSrc":"1570:55:41","nodeType":"YulExpressionStatement","src":"1570:55:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1645:9:41","nodeType":"YulIdentifier","src":"1645:9:41"},{"kind":"number","nativeSrc":"1656:2:41","nodeType":"YulLiteral","src":"1656:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1641:3:41","nodeType":"YulIdentifier","src":"1641:3:41"},"nativeSrc":"1641:18:41","nodeType":"YulFunctionCall","src":"1641:18:41"},{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"1675:6:41","nodeType":"YulIdentifier","src":"1675:6:41"}],"functionName":{"name":"iszero","nativeSrc":"1668:6:41","nodeType":"YulIdentifier","src":"1668:6:41"},"nativeSrc":"1668:14:41","nodeType":"YulFunctionCall","src":"1668:14:41"}],"functionName":{"name":"iszero","nativeSrc":"1661:6:41","nodeType":"YulIdentifier","src":"1661:6:41"},"nativeSrc":"1661:22:41","nodeType":"YulFunctionCall","src":"1661:22:41"}],"functionName":{"name":"mstore","nativeSrc":"1634:6:41","nodeType":"YulIdentifier","src":"1634:6:41"},"nativeSrc":"1634:50:41","nodeType":"YulFunctionCall","src":"1634:50:41"},"nativeSrc":"1634:50:41","nodeType":"YulExpressionStatement","src":"1634:50:41"}]},"name":"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed","nativeSrc":"1327:363:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1427:9:41","nodeType":"YulTypedName","src":"1427:9:41","type":""},{"name":"value2","nativeSrc":"1438:6:41","nodeType":"YulTypedName","src":"1438:6:41","type":""},{"name":"value1","nativeSrc":"1446:6:41","nodeType":"YulTypedName","src":"1446:6:41","type":""},{"name":"value0","nativeSrc":"1454:6:41","nodeType":"YulTypedName","src":"1454:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1465:4:41","nodeType":"YulTypedName","src":"1465:4:41","type":""}],"src":"1327:363:41"},{"body":{"nativeSrc":"1743:122:41","nodeType":"YulBlock","src":"1743:122:41","statements":[{"nativeSrc":"1753:51:41","nodeType":"YulAssignment","src":"1753:51:41","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"1769:1:41","nodeType":"YulIdentifier","src":"1769:1:41"},{"kind":"number","nativeSrc":"1772:10:41","nodeType":"YulLiteral","src":"1772:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1765:3:41","nodeType":"YulIdentifier","src":"1765:3:41"},"nativeSrc":"1765:18:41","nodeType":"YulFunctionCall","src":"1765:18:41"},{"arguments":[{"name":"y","nativeSrc":"1789:1:41","nodeType":"YulIdentifier","src":"1789:1:41"},{"kind":"number","nativeSrc":"1792:10:41","nodeType":"YulLiteral","src":"1792:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1785:3:41","nodeType":"YulIdentifier","src":"1785:3:41"},"nativeSrc":"1785:18:41","nodeType":"YulFunctionCall","src":"1785:18:41"}],"functionName":{"name":"sub","nativeSrc":"1761:3:41","nodeType":"YulIdentifier","src":"1761:3:41"},"nativeSrc":"1761:43:41","nodeType":"YulFunctionCall","src":"1761:43:41"},"variableNames":[{"name":"diff","nativeSrc":"1753:4:41","nodeType":"YulIdentifier","src":"1753:4:41"}]},{"body":{"nativeSrc":"1837:22:41","nodeType":"YulBlock","src":"1837:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"1839:16:41","nodeType":"YulIdentifier","src":"1839:16:41"},"nativeSrc":"1839:18:41","nodeType":"YulFunctionCall","src":"1839:18:41"},"nativeSrc":"1839:18:41","nodeType":"YulExpressionStatement","src":"1839:18:41"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"1819:4:41","nodeType":"YulIdentifier","src":"1819:4:41"},{"kind":"number","nativeSrc":"1825:10:41","nodeType":"YulLiteral","src":"1825:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"gt","nativeSrc":"1816:2:41","nodeType":"YulIdentifier","src":"1816:2:41"},"nativeSrc":"1816:20:41","nodeType":"YulFunctionCall","src":"1816:20:41"},"nativeSrc":"1813:46:41","nodeType":"YulIf","src":"1813:46:41"}]},"name":"checked_sub_t_uint32","nativeSrc":"1695:170:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"1725:1:41","nodeType":"YulTypedName","src":"1725:1:41","type":""},{"name":"y","nativeSrc":"1728:1:41","nodeType":"YulTypedName","src":"1728:1:41","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"1734:4:41","nodeType":"YulTypedName","src":"1734:4:41","type":""}],"src":"1695:170:41"},{"body":{"nativeSrc":"2006:130:41","nodeType":"YulBlock","src":"2006:130:41","statements":[{"nativeSrc":"2016:26:41","nodeType":"YulAssignment","src":"2016:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"2028:9:41","nodeType":"YulIdentifier","src":"2028:9:41"},{"kind":"number","nativeSrc":"2039:2:41","nodeType":"YulLiteral","src":"2039:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"2024:3:41","nodeType":"YulIdentifier","src":"2024:3:41"},"nativeSrc":"2024:18:41","nodeType":"YulFunctionCall","src":"2024:18:41"},"variableNames":[{"name":"tail","nativeSrc":"2016:4:41","nodeType":"YulIdentifier","src":"2016:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2058:9:41","nodeType":"YulIdentifier","src":"2058:9:41"},{"arguments":[{"name":"value0","nativeSrc":"2073:6:41","nodeType":"YulIdentifier","src":"2073:6:41"},{"kind":"number","nativeSrc":"2081:4:41","nodeType":"YulLiteral","src":"2081:4:41","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"2069:3:41","nodeType":"YulIdentifier","src":"2069:3:41"},"nativeSrc":"2069:17:41","nodeType":"YulFunctionCall","src":"2069:17:41"}],"functionName":{"name":"mstore","nativeSrc":"2051:6:41","nodeType":"YulIdentifier","src":"2051:6:41"},"nativeSrc":"2051:36:41","nodeType":"YulFunctionCall","src":"2051:36:41"},"nativeSrc":"2051:36:41","nodeType":"YulExpressionStatement","src":"2051:36:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2107:9:41","nodeType":"YulIdentifier","src":"2107:9:41"},{"kind":"number","nativeSrc":"2118:2:41","nodeType":"YulLiteral","src":"2118:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2103:3:41","nodeType":"YulIdentifier","src":"2103:3:41"},"nativeSrc":"2103:18:41","nodeType":"YulFunctionCall","src":"2103:18:41"},{"name":"value1","nativeSrc":"2123:6:41","nodeType":"YulIdentifier","src":"2123:6:41"}],"functionName":{"name":"mstore","nativeSrc":"2096:6:41","nodeType":"YulIdentifier","src":"2096:6:41"},"nativeSrc":"2096:34:41","nodeType":"YulFunctionCall","src":"2096:34:41"},"nativeSrc":"2096:34:41","nodeType":"YulExpressionStatement","src":"2096:34:41"}]},"name":"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"1870:266:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1967:9:41","nodeType":"YulTypedName","src":"1967:9:41","type":""},{"name":"value1","nativeSrc":"1978:6:41","nodeType":"YulTypedName","src":"1978:6:41","type":""},{"name":"value0","nativeSrc":"1986:6:41","nodeType":"YulTypedName","src":"1986:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1997:4:41","nodeType":"YulTypedName","src":"1997:4:41","type":""}],"src":"1870:266:41"}]},"contents":"{\n    { }\n    function validator_revert_contract_IEntryPoint(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IEntryPoint_$909t_address_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IEntryPoint(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IEntryPoint(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(64, 1), 1)))\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_add_t_uint48(x, y) -> sum\n    {\n        sum := add(and(x, 0xffffffffffff), and(y, 0xffffffffffff))\n        if gt(sum, 0xffffffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffff))\n        mstore(add(headStart, 64), iszero(iszero(value2)))\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffff), and(y, 0xffffffff))\n        if gt(diff, 0xffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), value1)\n    }\n}","id":41,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60a060405234801561000f575f5ffd5b5060405161394a38038061394a83398101604081905261002e91610466565b806001600160a01b03811661005d57604051630409d6d160e11b81525f60048201526024015b60405180910390fd5b6100695f82818061007d565b5050506001600160a01b03166080526104ec565b5f6002600160401b03196001600160401b038616016100ba5760405163061c6a4360e21b81526001600160401b0386166004820152602401610054565b6001600160401b0385165f9081526001602090815260408083206001600160a01b038816845290915281205465ffffffffffff16159081156101af5763ffffffff85166101056102c3565b61010f91906104b2565b905060405180604001604052808265ffffffffffff16815260200161013f8663ffffffff166102d260201b60201c565b6001600160701b039081169091526001600160401b0389165f9081526001602090815260408083206001600160a01b038c16845282529091208351815494909201519092166601000000000000026001600160a01b031990931665ffffffffffff90911617919091179055610255565b6001600160401b0387165f9081526001602090815260408083206001600160a01b038a1684529091528120546101fb9166010000000000009091046001600160701b03169086906102db565b6001600160401b0389165f9081526001602090815260408083206001600160a01b038c168452909152902080546001600160701b03909316660100000000000002600160301b600160a01b03199093169290921790915590505b6040805163ffffffff8616815265ffffffffffff831660208201528315158183015290516001600160a01b038816916001600160401b038a16917ff98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf9181900360600190a35095945050505050565b5f6102cd42610381565b905090565b63ffffffff1690565b5f80806102f06001600160701b0387166103b7565b90505f61032b8563ffffffff168763ffffffff168463ffffffff1611610316575f610320565b61032088856104d0565b63ffffffff166103d5565b905063ffffffff811661033c6102c3565b61034691906104b2565b925063ffffffff8616602083901b67ffffffff0000000016604085901b6dffffffffffff000000000000000016171793505050935093915050565b5f65ffffffffffff8211156103b3576040516306dfcc6560e41b81526030600482015260248101839052604401610054565b5090565b5f806103cb6001600160701b0384166103e5565b5090949350505050565b8082118183180281185b92915050565b5f80806103f9846103f46102c3565b610406565b9250925092509193909250565b6001600160501b03602083901c166001600160701b03831665ffffffffffff604085901c811690841681111561043e57828282610442565b815f5f5b9250925092509250925092565b6001600160a01b0381168114610463575f5ffd5b50565b5f5f60408385031215610477575f5ffd5b82516104828161044f565b60208401519092506104938161044f565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b65ffffffffffff81811683821601908111156103df576103df61049e565b63ffffffff82811682821603908111156103df576103df61049e565b6080516134236105275f395f818161065e01528181610b4701528181610c1b0152818161102e015281816110c301526115d701526134235ff3fe60806040526004361061022b575f3560e01c80636d5115bd11610129578063b7009613116100a8578063d1f856ee1161006d578063d1f856ee1461073e578063d22b59891461075d578063d6bb62c61461077c578063f801a6981461079b578063fe0776f5146107d4575f5ffd5b8063b7009613146106a7578063b7d2b162146106e2578063c399ec8814610701578063cc1b6c8114610715578063d087d2881461072a575f5ffd5b8063a64d95ce116100ee578063a64d95ce146105db578063abd9bd2a146105fa578063ac9650d814610619578063b0d691fe14610645578063b61d27f614610688575f5ffd5b80636d5115bd1461053c57806375b238fc1461055b578063853551b81461056e57806394c7d7ee1461058d578063a166aa89146105ac575f5ffd5b806330cae187116101b55780634a58db191161017a5780634a58db191461049c5780634c1da1e2146104a45780634d44560d146104c357806352962952146104e2578063530dd45614610501575f5ffd5b806330cae187146103e05780633adc277a146103ff5780633ca7c02a146104355780634136a33c1461044f5780634665096d14610487575f5ffd5b806318ff183c116101fb57806318ff183c1461030957806319822f7c146103285780631cff79cd1461035557806325c471a0146103685780633078f11414610387575f5ffd5b806308d6122d146102365780630b0a93ba1461025757806312be8727146102b6578063167bd395146102ea575f5ffd5b3661023257005b5f5ffd5b348015610241575f5ffd5b50610255610250366004612afa565b6107f3565b005b348015610262575f5ffd5b50610299610271366004612b5c565b6001600160401b039081165f9081526001602081905260409091200154600160401b90041690565b6040516001600160401b0390911681526020015b60405180910390f35b3480156102c1575f5ffd5b506102d56102d0366004612b5c565b610845565b60405163ffffffff90911681526020016102ad565b3480156102f5575f5ffd5b50610255610304366004612b75565b61087f565b348015610314575f5ffd5b50610255610323366004612bb0565b610895565b348015610333575f5ffd5b50610347610342366004612bdc565b6108f8565b6040519081526020016102ad565b6102d5610363366004612c67565b61091d565b348015610373575f5ffd5b50610255610382366004612cca565b610a47565b348015610392575f5ffd5b506103a66103a1366004612d0c565b610a69565b6040516102ad949392919065ffffffffffff948516815263ffffffff93841660208201529190921660408201529116606082015260800190565b3480156103eb575f5ffd5b506102556103fa366004612d26565b610b02565b34801561040a575f5ffd5b5061041e610419366004612d57565b610b14565b60405165ffffffffffff90911681526020016102ad565b348015610440575f5ffd5b506102996001600160401b0381565b34801561045a575f5ffd5b506102d5610469366004612d57565b5f90815260026020526040902054600160301b900463ffffffff1690565b348015610492575f5ffd5b5062093a806102d5565b610255610b45565b3480156104af575f5ffd5b506102d56104be366004612d6e565b610bba565b3480156104ce575f5ffd5b506102556104dd366004612d89565b610be7565b3480156104ed575f5ffd5b506102556104fc366004612d26565b610c4a565b34801561050c575f5ffd5b5061029961051b366004612b5c565b6001600160401b039081165f90815260016020819052604090912001541690565b348015610547575f5ffd5b50610299610556366004612dc8565b610c5c565b348015610566575f5ffd5b506102995f81565b348015610579575f5ffd5b50610255610588366004612df4565b610c96565b348015610598575f5ffd5b506102556105a7366004612c67565b610d2d565b3480156105b7575f5ffd5b506105cb6105c6366004612d6e565b610dd7565b60405190151581526020016102ad565b3480156105e6575f5ffd5b506102556105f5366004612e0f565b610dfe565b348015610605575f5ffd5b50610347610614366004612e37565b610e10565b348015610624575f5ffd5b50610638610633366004612e97565b610e49565b6040516102ad9190612f03565b348015610650575f5ffd5b506040516001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681526020016102ad565b348015610693575f5ffd5b506102556106a2366004612f66565b610f2e565b3480156106b2575f5ffd5b506106c66106c1366004612fa5565b610f77565b60408051921515835263ffffffff9091166020830152016102ad565b3480156106ed575f5ffd5b506102556106fc366004612d0c565b610ff8565b34801561070c575f5ffd5b5061034761100f565b348015610720575f5ffd5b50620697806102d5565b348015610735575f5ffd5b5061034761109d565b348015610749575f5ffd5b506106c6610758366004612d0c565b6110f2565b348015610768575f5ffd5b50610255610777366004612fed565b611176565b348015610787575f5ffd5b506102d5610796366004612e37565b611188565b3480156107a6575f5ffd5b506107ba6107b5366004613009565b6112db565b6040805192835263ffffffff9091166020830152016102ad565b3480156107df575f5ffd5b506102556107ee366004612d0c565b61141c565b6107fb611445565b5f5b8281101561083e576108368585858481811061081b5761081b613076565b9050602002016020810190610830919061308a565b846114bc565b6001016107fd565b5050505050565b6001600160401b0381165f9081526001602081905260408220015461087990600160801b90046001600160701b031661153d565b92915050565b610887611445565b610891828261155b565b5050565b61089d611445565b604051637a9e5e4b60e01b81526001600160a01b038281166004830152831690637a9e5e4b906024015b5f604051808303815f87803b1580156108de575f5ffd5b505af11580156108f0573d5f5f3e3d5ffd5b505050505050565b5f6109016115cc565b61090b8484611646565b9050610916826117e1565b9392505050565b5f33818061092d8388888861182a565b9150915081158015610943575063ffffffff8116155b15610996578287610954888861187b565b6040516381c6f24b60e01b81526001600160a01b0393841660048201529290911660248301526001600160e01b03191660448201526064015b60405180910390fd5b5f6109a384898989610e10565b90505f63ffffffff83161515806109c957506109be82610b14565b65ffffffffffff1615155b156109da576109d782611892565b90505b6003546109f08a6109eb8b8b61187b565b611990565b600381905550610a378a8a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152503492506119d2915050565b5060035598975050505050505050565b610a4f611445565b610a638383610a5d86610845565b84611a72565b50505050565b6001600160401b0382165f9081526001602090815260408083206001600160a01b03851684529091528120805465ffffffffffff1691908190819060ff825c1615610ad5578054610ac990600160301b90046001600160701b0316611cb8565b91955093509150610af8565b8054610af090600160301b90046001600160701b0316611cd9565b919550935091505b5092959194509250565b610b0a611445565b6108918282611ced565b5f8181526002602052604081205465ffffffffffff16610b3381611d90565b610b3d5780610916565b5f9392505050565b7f000000000000000000000000000000000000000000000000000000000000000060405163b760faf960e01b81523060048201526001600160a01b03919091169063b760faf99034906024015f604051808303818588803b158015610ba8575f5ffd5b505af115801561083e573d5f5f3e3d5ffd5b6001600160a01b0381165f90815260208190526040812060010154610879906001600160701b031661153d565b610bf4335f366001611dbe565b5060405163040b850f60e31b81526001600160a01b038381166004830152602482018390527f0000000000000000000000000000000000000000000000000000000000000000169063205c2878906044016108c7565b610c52611445565b6108918282611e75565b6001600160a01b0382165f908152602081815260408083206001600160e01b0319851684529091529020546001600160401b031692915050565b610c9e611445565b6001600160401b0383161580610cbc57506001600160401b03838116145b15610ce55760405163061c6a4360e21b81526001600160401b038416600482015260240161098d565b826001600160401b03167f1256f5b5ecb89caec12db449738f2fbcd1ba5806cf38f35413f4e5c15bf6a4508383604051610d209291906130cd565b60405180910390a2505050565b60408051638fb3603760e01b80825291513392918391638fb36037916004808201926020929091908290030181865afa158015610d6c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d9091906130e0565b6001600160e01b03191614610dc357604051630641fee960e31b81526001600160a01b038216600482015260240161098d565b61083e610dd285838686610e10565b611892565b6001600160a01b03165f90815260208190526040902060010154600160701b900460ff1690565b610e06611445565b6108918282611f26565b5f84848484604051602001610e2894939291906130fb565b6040516020818303038152906040528051906020012090505b949350505050565b604080515f815260208101909152606090826001600160401b03811115610e7257610e72613175565b604051908082528060200260200182016040528015610ea557816020015b6060815260200190600190039081610e905790505b5091505f5b83811015610f2657610f0130868684818110610ec857610ec8613076565b9050602002810190610eda9190613189565b85604051602001610eed939291906131e2565b604051602081830303815290604052612035565b838281518110610f1357610f13613076565b6020908102919091010152600101610eaa565b505092915050565b610f366115cc565b61083e8483838080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152508892506119d2915050565b5f5f610f8284610dd7565b15610f9157505f905080610ff0565b306001600160a01b03861603610fb557610fab84846120a7565b5f91509150610ff0565b5f610fc08585610c5c565b90505f5f610fce83896110f2565b9150915081610fde575f5f610fe8565b63ffffffff811615815b945094505050505b935093915050565b611000611445565b61100a82826120bd565b505050565b6040516370a0823160e01b81523060048201525f906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a08231906024015b602060405180830381865afa158015611074573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061109891906131f7565b905090565b604051631aab3f0d60e11b81523060048201525f60248201819052906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906335567e1a90604401611059565b5f8067fffffffffffffffe196001600160401b038516016111185750600190505f61116f565b5f5f6111248686610a69565b5050915091508165ffffffffffff165f14158015611164575060ff5f5c168061116457506111506121a6565b65ffffffffffff168265ffffffffffff1611155b9350915061116f9050565b9250929050565b61117e611445565b61089182826121b0565b5f3381611195858561187b565b90505f6111a488888888610e10565b5f8181526002602052604081205491925065ffffffffffff90911690036111e15760405163060a299b60e41b81526004810182905260240161098d565b826001600160a01b0316886001600160a01b03161461127a575f6112055f856110f2565b5090505f61121f6112196102718b87610c5c565b866110f2565b5090508115801561122e575080155b1561127757604051630ff89d4760e21b81526001600160a01b038087166004830152808c1660248301528a1660448201526001600160e01b03198516606482015260840161098d565b50505b5f81815260026020526040808220805465ffffffffffff1916908190559051600160301b90910463ffffffff1691829184917fbd9ac67a6e2f6463b80927326310338bcbb4bdb7936ce1365ea3e01067e7b9f791a398975050505050505050565b5f8033816112eb8289898961182a565b9150505f8163ffffffff166112fe6121a6565b611308919061320e565b905063ffffffff8216158061133e57505f8665ffffffffffff1611801561133e57508065ffffffffffff168665ffffffffffff16105b1561134f5782896109548a8a61187b565b6113698665ffffffffffff168265ffffffffffff1661226b565b9550611377838a8a8a610e10565b94506113828561227a565b5f8581526002602052604090819020805465ffffffffffff891669ffffffffffffffffffff19821617600160301b9182900463ffffffff90811660010190811692830291909117909255915190955086907f82a2da5dee54ea8021c6545b4444620291e07ee83be6dd57edb175062715f3b490611408908a9088908f908f908f9061322c565b60405180910390a350505094509492505050565b6001600160a01b038116331461100057604051635f159e6360e01b815260040160405180910390fd5b335f806114538382366122c6565b915091508161100a578063ffffffff165f036114ad575f6114748136612389565b5060405163f07e038f60e01b81526001600160a01b03871660048201526001600160401b0382166024820152909250604401905061098d565b610a63610dd284305f36610e10565b6001600160a01b0383165f818152602081815260408083206001600160e01b0319871680855290835292819020805467ffffffffffffffff19166001600160401b038716908117909155905192835292917f9ea6790c7dadfd01c9f8b9762b3682607af2c7e79e05a9f9fdf5580dde949151910160405180910390a3505050565b5f5f611551836001600160701b0316611cd9565b5090949350505050565b6001600160a01b0382165f81815260208190526040908190206001018054841515600160701b0260ff60701b19909116179055517f90d4e7bb7e5d933792b3562e1741306f8be94837e1348dacef9b6f1df56eb138906115c090841515815260200190565b60405180910390a25050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146116445760405162461bcd60e51b815260206004820152601c60248201527f6163636f756e743a206e6f742066726f6d20456e747279506f696e7400000000604482015260640161098d565b565b5f600160ff19825c168117825d505f6116626060850185613189565b611670916004915f9161314e565b61167991613271565b90506001600160e01b03198116635b0e93fb60e11b146116b85760405163d4d202fb60e01b81526001600160e01b03198216600482015260240161098d565b5f6116c66060860186613189565b6116d59160249160049161314e565b8101906116e29190612d6e565b9050306001600160a01b0382160361170d57604051637e6c446560e11b815260040160405180910390fd5b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c859052603c8120906117878261174e6101008a018a613189565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061256f92505050565b90506117a08161179a60608a018a613189565b5f611dbe565b6117b15760019450505050506117ce565b6117c7816117c260608a018a613189565b61258d565b9450505050505b5f60ff19815c16815d5092915050565b50565b80156117de576040515f9033905f1990849084818181858888f193505050503d805f811461083e576040519150601f19603f3d011682016040523d82523d5f602084013e61083e565b5f80306001600160a01b03861603611850576118478685856122c6565b91509150611872565b6004831061186c5761186786866106c1878761187b565b611847565b505f9050805b94509492505050565b5f611889600482848661314e565b61091691613271565b5f8181526002602052604081205465ffffffffffff811690600160301b900463ffffffff168183036118da5760405163060a299b60e41b81526004810185905260240161098d565b6118e26121a6565b65ffffffffffff168265ffffffffffff16111561191557604051630c65b5bd60e11b81526004810185905260240161098d565b61191e82611d90565b1561193f57604051631e2975b960e21b81526004810185905260240161098d565b5f84815260026020526040808220805465ffffffffffff191690555163ffffffff83169186917f76a2a46953689d4861a5d3f6ed883ad7e6af674a21f8e162707159fc9dde614d9190a39392505050565b604080516001600160a01b03939093166020808501919091526001600160e01b0319929092168382015280518084038201815260609093019052815191012090565b6060814710156119fe5760405163cf47918160e01b81524760048201526024810183905260440161098d565b5f5f856001600160a01b03168486604051611a1991906132a9565b5f6040518083038185875af1925050503d805f8114611a53576040519150601f19603f3d011682016040523d82523d5f602084013e611a58565b606091505b5091509150611a68868383612625565b9695505050505050565b5f67fffffffffffffffe196001600160401b03861601611ab05760405163061c6a4360e21b81526001600160401b038616600482015260240161098d565b6001600160401b0385165f9081526001602090815260408083206001600160a01b038816845290915281205465ffffffffffff1615908115611ba0578463ffffffff16611afb6121a6565b611b05919061320e565b905060405180604001604052808265ffffffffffff168152602001611b338663ffffffff1663ffffffff1690565b6001600160701b039081169091526001600160401b0389165f9081526001602090815260408083206001600160a01b038c1684528252909120835181549490920151909216600160301b026001600160a01b031990931665ffffffffffff90911617919091179055611c4a565b6001600160401b0387165f9081526001602090815260408083206001600160a01b038a168452909152812054611be991600160301b9091046001600160701b0316908690612681565b6001600160401b0389165f9081526001602090815260408083206001600160a01b038c168452909152902080546001600160701b03909316600160301b0273ffffffffffffffffffffffffffff000000000000199093169290921790915590505b6040805163ffffffff8616815265ffffffffffff831660208201528315158183015290516001600160a01b038816916001600160401b038a16917ff98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf9181900360600190a35095945050505050565b5f5f5f611ccc84611cc7612727565b612736565b9250925092509193909250565b5f5f5f611ccc84611ce86121a6565b612788565b6001600160401b0382161580611d0b57506001600160401b03828116145b15611d345760405163061c6a4360e21b81526001600160401b038316600482015260240161098d565b6001600160401b038281165f818152600160208190526040808320909101805467ffffffffffffffff19169486169485179055517f1fd6dd7631312dfac2205b52913f99de03b4d7e381d5d27d3dbfe0713e6e63409190a35050565b5f611d996121a6565b65ffffffffffff16611dae62093a808461320e565b65ffffffffffff16111592915050565b5f8080611ddc8730611dd36004858a8c61314e565b6106c191613271565b9150915081611e685763ffffffff811615611e0a576040516399ec076b60e01b815260040160405180910390fd5b8315611e5e5786611e2b30611e2260045f8a8c61314e565b61055691613271565b60405163f07e038f60e01b81526001600160a01b0390921660048301526001600160401b0316602482015260440161098d565b5f92505050610e41565b5060019695505050505050565b6001600160401b0382161580611e9357506001600160401b03828116145b15611ebc5760405163061c6a4360e21b81526001600160401b038316600482015260240161098d565b6001600160401b038281165f81815260016020819052604080832090910180546fffffffffffffffff00000000000000001916600160401b958716958602179055517f7a8059630b897b5de4c08ade69f8b90c3ead1f8596d62d10b6c4d14a0afb4ae29190a35050565b67fffffffffffffffe196001600160401b03831601611f635760405163061c6a4360e21b81526001600160401b038316600482015260240161098d565b6001600160401b0382165f90815260016020819052604082200154611f9c90600160801b90046001600160701b03168362069780612681565b6001600160401b0385165f818152600160208190526040918290200180546001600160701b03909516600160801b026dffffffffffffffffffffffffffff60801b199095169490941790935591519092507ffeb69018ee8b8fd50ea86348f1267d07673379f72cffdeccec63853ee8ce8b4890610d20908590859063ffffffff92909216825265ffffffffffff16602082015260400190565b60605f5f846001600160a01b03168460405161205191906132a9565b5f60405180830381855af49150503d805f8114612089576040519150601f19603f3d011682016040523d82523d5f602084013e61208e565b606091505b509150915061209e858383612625565b95945050505050565b5f6120b28383611990565b600354149392505050565b5f67fffffffffffffffe196001600160401b038416016120fb5760405163061c6a4360e21b81526001600160401b038416600482015260240161098d565b6001600160401b0383165f9081526001602090815260408083206001600160a01b038616845290915281205465ffffffffffff16900361213c57505f610879565b6001600160401b0383165f8181526001602090815260408083206001600160a01b038716808552925280832080546001600160a01b0319169055519092917ff229baa593af28c41b1d16b748cd7688f0c83aaf92d4be41c44005defe84c16691a350600192915050565b5f611098426127d4565b6001600160a01b0382165f908152602081905260408120600101546121e2906001600160701b03168362069780612681565b6001600160a01b0385165f818152602081815260409182902060010180546dffffffffffffffffffffffffffff19166001600160701b039690961695909517909455805163ffffffff8716815265ffffffffffff841694810194909452919350917fa56b76017453f399ec2327ba00375dbfb1fd070ff854341ad6191e6a2e2de19c9101610d20565b5f828218828411028218610916565b5f8181526002602052604090205465ffffffffffff1680158015906122a557506122a381611d90565b155b156108915760405163813e945960e01b81526004810183905260240161098d565b5f8060048310156122db57505f905080610ff0565b306001600160a01b038616036122fe57610fab306122f9868661187b565b6120a7565b5f5f5f61230b8787612389565b92509250925082158015612323575061232330610dd7565b15612336575f5f94509450505050610ff0565b5f5f612342848b6110f2565b915091508161235b575f5f965096505050505050610ff0565b6123718363ffffffff168263ffffffff1661226b565b63ffffffff8116159b909a5098505050505050505050565b5f808060048410156123a257505f915081905080612568565b5f6123ad868661187b565b90506001600160e01b031981166310a6aa3760e31b14806123de57506001600160e01b031981166330cae18760e01b145b806123f957506001600160e01b0319811663294b14a960e11b145b8061241457506001600160e01b03198116635326cae760e11b145b8061242f57506001600160e01b0319811663d22b598960e01b145b156124445760015f5f93509350935050612568565b6001600160e01b0319811663063fc60f60e21b148061247357506001600160e01b0319811663167bd39560e01b145b8061248e57506001600160e01b031981166308d6122d60e01b145b156124cd575f6124a260246004888a61314e565b8101906124af9190612d6e565b90505f6124bb82610bba565b600196505f9550935061256892505050565b6001600160e01b0319811663012e238d60e51b14806124fc57506001600160e01b03198116635be958b160e11b145b15612554575f61251060246004888a61314e565b81019061251d9190612b5c565b90506001612546826001600160401b039081165f90815260016020819052604090912001541690565b5f9450945094505050612568565b5f61255f3083610c5c565b5f935093509350505b9250925092565b5f5f5f5f61257d868661280a565b9250925092506115518282612850565b5f80808460048561259e828261313b565b926125ab9392919061314e565b8101906125b891906132b4565b92505091505f5f6125d788856106c15f8761290890919063ffffffff16565b9150915081806125eb575063ffffffff8116155b1561260957816125fc5760016125fe565b5f5b945050505050610916565b612617610dd2898686612965565b505f98975050505050505050565b60608261263a576126358261299a565b610916565b815115801561265157506001600160a01b0384163b155b1561267a57604051639996b31560e01b81526001600160a01b038516600482015260240161098d565b5080610916565b5f5f5f612696866001600160701b031661153d565b90505f6126d18563ffffffff168763ffffffff168463ffffffff16116126bc575f6126c6565b6126c6888561337f565b63ffffffff1661226b565b90508063ffffffff166126e26121a6565b6126ec919061320e565b925063ffffffff8616602083901b67ffffffff0000000016604085901b6dffffffffffff000000000000000016171793505050935093915050565b5f6110986407915ecc006127d4565b5f808069ffffffffffffffffffff602086901c166001600160701b03861665ffffffffffff604088901c811690871681111561277457828282612778565b815f5f5b9550955095505050509250925092565b69ffffffffffffffffffff602083901c166001600160701b03831665ffffffffffff604085901c81169084168111156127c3578282826127c7565b815f5f5b9250925092509250925092565b5f65ffffffffffff821115612806576040516306dfcc6560e41b8152603060048201526024810183905260440161098d565b5090565b5f5f5f8351604103612841576020840151604085015160608601515f1a612833888285856129c3565b955095509550505050612568565b505081515f9150600290612568565b5f8260038111156128635761286361339b565b0361286c575050565b60018260038111156128805761288061339b565b0361289e5760405163f645eedf60e01b815260040160405180910390fd5b60028260038111156128b2576128b261339b565b036128d35760405163fce698f760e01b81526004810182905260240161098d565b60038260038111156128e7576128e761339b565b03610891576040516335e2f38360e21b81526004810182905260240161098d565b5f6129148260206133af565b8351101561295c5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161098d565b50016020015190565b5f83838360405160200161297b939291906133c2565b6040516020818303038152906040528051906020012090509392505050565b8051156129aa5780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411156129fc57505f91506003905082612a81565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015612a4d573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b038116612a7857505f925060019150829050612a81565b92505f91508190505b9450945094915050565b6001600160a01b03811681146117de575f5ffd5b5f5f83601f840112612aaf575f5ffd5b5081356001600160401b03811115612ac5575f5ffd5b6020830191508360208260051b850101111561116f575f5ffd5b80356001600160401b0381168114612af5575f5ffd5b919050565b5f5f5f5f60608587031215612b0d575f5ffd5b8435612b1881612a8b565b935060208501356001600160401b03811115612b32575f5ffd5b612b3e87828801612a9f565b9094509250612b51905060408601612adf565b905092959194509250565b5f60208284031215612b6c575f5ffd5b61091682612adf565b5f5f60408385031215612b86575f5ffd5b8235612b9181612a8b565b915060208301358015158114612ba5575f5ffd5b809150509250929050565b5f5f60408385031215612bc1575f5ffd5b8235612bcc81612a8b565b91506020830135612ba581612a8b565b5f5f5f60608486031215612bee575f5ffd5b83356001600160401b03811115612c03575f5ffd5b84016101208187031215612c15575f5ffd5b95602085013595506040909401359392505050565b5f5f83601f840112612c3a575f5ffd5b5081356001600160401b03811115612c50575f5ffd5b60208301915083602082850101111561116f575f5ffd5b5f5f5f60408486031215612c79575f5ffd5b8335612c8481612a8b565b925060208401356001600160401b03811115612c9e575f5ffd5b612caa86828701612c2a565b9497909650939450505050565b803563ffffffff81168114612af5575f5ffd5b5f5f5f60608486031215612cdc575f5ffd5b612ce584612adf565b92506020840135612cf581612a8b565b9150612d0360408501612cb7565b90509250925092565b5f5f60408385031215612d1d575f5ffd5b612bcc83612adf565b5f5f60408385031215612d37575f5ffd5b612d4083612adf565b9150612d4e60208401612adf565b90509250929050565b5f60208284031215612d67575f5ffd5b5035919050565b5f60208284031215612d7e575f5ffd5b813561091681612a8b565b5f5f60408385031215612d9a575f5ffd5b8235612da581612a8b565b946020939093013593505050565b6001600160e01b0319811681146117de575f5ffd5b5f5f60408385031215612dd9575f5ffd5b8235612de481612a8b565b91506020830135612ba581612db3565b5f5f5f60408486031215612e06575f5ffd5b612c8484612adf565b5f5f60408385031215612e20575f5ffd5b612e2983612adf565b9150612d4e60208401612cb7565b5f5f5f5f60608587031215612e4a575f5ffd5b8435612e5581612a8b565b93506020850135612e6581612a8b565b925060408501356001600160401b03811115612e7f575f5ffd5b612e8b87828801612c2a565b95989497509550505050565b5f5f60208385031215612ea8575f5ffd5b82356001600160401b03811115612ebd575f5ffd5b612ec985828601612a9f565b90969095509350505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b82811015612f5a57603f19878603018452612f45858351612ed5565b94506020938401939190910190600101612f29565b50929695505050505050565b5f5f5f5f60608587031215612f79575f5ffd5b8435612f8481612a8b565b93506020850135925060408501356001600160401b03811115612e7f575f5ffd5b5f5f5f60608486031215612fb7575f5ffd5b8335612fc281612a8b565b92506020840135612fd281612a8b565b91506040840135612fe281612db3565b809150509250925092565b5f5f60408385031215612ffe575f5ffd5b8235612e2981612a8b565b5f5f5f5f6060858703121561301c575f5ffd5b843561302781612a8b565b935060208501356001600160401b03811115613041575f5ffd5b61304d87828801612c2a565b909450925050604085013565ffffffffffff8116811461306b575f5ffd5b939692955090935050565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561309a575f5ffd5b813561091681612db3565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b602081525f610e416020830184866130a5565b5f602082840312156130f0575f5ffd5b815161091681612db3565b6001600160a01b038581168252841660208201526060604082018190525f90611a6890830184866130a5565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561087957610879613127565b5f5f8585111561315c575f5ffd5b83861115613168575f5ffd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f5f8335601e1984360301811261319e575f5ffd5b8301803591506001600160401b038211156131b7575f5ffd5b60200191503681900382131561116f575f5ffd5b5f81518060208401855e5f93019283525090919050565b828482375f8382015f8152611a6881856131cb565b5f60208284031215613207575f5ffd5b5051919050565b65ffffffffffff818116838216019081111561087957610879613127565b65ffffffffffff861681526001600160a01b038581166020830152841660408201526080606082018190525f9061326690830184866130a5565b979650505050505050565b80356001600160e01b031981169060048410156132a2576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f61091682846131cb565b5f5f5f606084860312156132c6575f5ffd5b83356132d181612a8b565b92506020840135915060408401356001600160401b038111156132f2575f5ffd5b8401601f81018613613302575f5ffd5b80356001600160401b0381111561331b5761331b613175565b604051601f8201601f19908116603f011681016001600160401b038111828210171561334957613349613175565b604052818152828201602001881015613360575f5ffd5b816020840160208301375f602083830101528093505050509250925092565b63ffffffff828116828216039081111561087957610879613127565b634e487b7160e01b5f52602160045260245ffd5b8082018082111561087957610879613127565b6001600160a01b038481168252831660208201526060604082018190525f9061209e90830184612ed556fea26469706673582212204e46117ea74d6d931977b673cd42be94114ea41528e2312d13dc2fa8bdd094be64736f6c634300081c0033","opcodes":"PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x394A CODESIZE SUB DUP1 PUSH2 0x394A DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2E SWAP2 PUSH2 0x466 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x5D JUMPI PUSH1 0x40 MLOAD PUSH4 0x409D6D1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x69 PUSH0 DUP3 DUP2 DUP1 PUSH2 0x7D JUMP JUMPDEST POP POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 MSTORE PUSH2 0x4EC JUMP JUMPDEST PUSH0 PUSH1 0x2 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND ADD PUSH2 0xBA JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x54 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND ISZERO SWAP1 DUP2 ISZERO PUSH2 0x1AF JUMPI PUSH4 0xFFFFFFFF DUP6 AND PUSH2 0x105 PUSH2 0x2C3 JUMP JUMPDEST PUSH2 0x10F SWAP2 SWAP1 PUSH2 0x4B2 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH6 0xFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x13F DUP7 PUSH4 0xFFFFFFFF AND PUSH2 0x2D2 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 DUP2 AND SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE DUP3 MSTORE SWAP1 SWAP2 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP5 SWAP1 SWAP3 ADD MLOAD SWAP1 SWAP3 AND PUSH7 0x1000000000000 MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x255 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH2 0x1FB SWAP2 PUSH7 0x1000000000000 SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 DUP7 SWAP1 PUSH2 0x2DB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP4 AND PUSH7 0x1000000000000 MUL PUSH1 0x1 PUSH1 0x30 SHL PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE SWAP1 POP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP7 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE DUP4 ISZERO ISZERO DUP2 DUP4 ADD MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP11 AND SWAP2 PUSH32 0xF98448B987F1428E0E230E1F3C6E2CE15B5693EAF31827FBD0B1EC4B424AE7CF SWAP2 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG3 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2CD TIMESTAMP PUSH2 0x381 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0x2F0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP8 AND PUSH2 0x3B7 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x32B DUP6 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x316 JUMPI PUSH0 PUSH2 0x320 JUMP JUMPDEST PUSH2 0x320 DUP9 DUP6 PUSH2 0x4D0 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x3D5 JUMP JUMPDEST SWAP1 POP PUSH4 0xFFFFFFFF DUP2 AND PUSH2 0x33C PUSH2 0x2C3 JUMP JUMPDEST PUSH2 0x346 SWAP2 SWAP1 PUSH2 0x4B2 JUMP JUMPDEST SWAP3 POP PUSH4 0xFFFFFFFF DUP7 AND PUSH1 0x20 DUP4 SWAP1 SHL PUSH8 0xFFFFFFFF00000000 AND PUSH1 0x40 DUP6 SWAP1 SHL PUSH14 0xFFFFFFFFFFFF0000000000000000 AND OR OR SWAP4 POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH6 0xFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3B3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x30 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x54 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x3CB PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP5 AND PUSH2 0x3E5 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 DUP3 GT DUP2 DUP4 XOR MUL DUP2 XOR JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0x3F9 DUP5 PUSH2 0x3F4 PUSH2 0x2C3 JUMP JUMPDEST PUSH2 0x406 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x50 SHL SUB PUSH1 0x20 DUP4 SWAP1 SHR AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP4 AND PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 DUP6 SWAP1 SHR DUP2 AND SWAP1 DUP5 AND DUP2 GT ISZERO PUSH2 0x43E JUMPI DUP3 DUP3 DUP3 PUSH2 0x442 JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x463 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x477 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x482 DUP2 PUSH2 0x44F JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x493 DUP2 PUSH2 0x44F JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x3DF JUMPI PUSH2 0x3DF PUSH2 0x49E JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x3DF JUMPI PUSH2 0x3DF PUSH2 0x49E JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH2 0x3423 PUSH2 0x527 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x65E ADD MSTORE DUP2 DUP2 PUSH2 0xB47 ADD MSTORE DUP2 DUP2 PUSH2 0xC1B ADD MSTORE DUP2 DUP2 PUSH2 0x102E ADD MSTORE DUP2 DUP2 PUSH2 0x10C3 ADD MSTORE PUSH2 0x15D7 ADD MSTORE PUSH2 0x3423 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x22B JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6D5115BD GT PUSH2 0x129 JUMPI DUP1 PUSH4 0xB7009613 GT PUSH2 0xA8 JUMPI DUP1 PUSH4 0xD1F856EE GT PUSH2 0x6D JUMPI DUP1 PUSH4 0xD1F856EE EQ PUSH2 0x73E JUMPI DUP1 PUSH4 0xD22B5989 EQ PUSH2 0x75D JUMPI DUP1 PUSH4 0xD6BB62C6 EQ PUSH2 0x77C JUMPI DUP1 PUSH4 0xF801A698 EQ PUSH2 0x79B JUMPI DUP1 PUSH4 0xFE0776F5 EQ PUSH2 0x7D4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB7009613 EQ PUSH2 0x6A7 JUMPI DUP1 PUSH4 0xB7D2B162 EQ PUSH2 0x6E2 JUMPI DUP1 PUSH4 0xC399EC88 EQ PUSH2 0x701 JUMPI DUP1 PUSH4 0xCC1B6C81 EQ PUSH2 0x715 JUMPI DUP1 PUSH4 0xD087D288 EQ PUSH2 0x72A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA64D95CE GT PUSH2 0xEE JUMPI DUP1 PUSH4 0xA64D95CE EQ PUSH2 0x5DB JUMPI DUP1 PUSH4 0xABD9BD2A EQ PUSH2 0x5FA JUMPI DUP1 PUSH4 0xAC9650D8 EQ PUSH2 0x619 JUMPI DUP1 PUSH4 0xB0D691FE EQ PUSH2 0x645 JUMPI DUP1 PUSH4 0xB61D27F6 EQ PUSH2 0x688 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6D5115BD EQ PUSH2 0x53C JUMPI DUP1 PUSH4 0x75B238FC EQ PUSH2 0x55B JUMPI DUP1 PUSH4 0x853551B8 EQ PUSH2 0x56E JUMPI DUP1 PUSH4 0x94C7D7EE EQ PUSH2 0x58D JUMPI DUP1 PUSH4 0xA166AA89 EQ PUSH2 0x5AC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x30CAE187 GT PUSH2 0x1B5 JUMPI DUP1 PUSH4 0x4A58DB19 GT PUSH2 0x17A JUMPI DUP1 PUSH4 0x4A58DB19 EQ PUSH2 0x49C JUMPI DUP1 PUSH4 0x4C1DA1E2 EQ PUSH2 0x4A4 JUMPI DUP1 PUSH4 0x4D44560D EQ PUSH2 0x4C3 JUMPI DUP1 PUSH4 0x52962952 EQ PUSH2 0x4E2 JUMPI DUP1 PUSH4 0x530DD456 EQ PUSH2 0x501 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x30CAE187 EQ PUSH2 0x3E0 JUMPI DUP1 PUSH4 0x3ADC277A EQ PUSH2 0x3FF JUMPI DUP1 PUSH4 0x3CA7C02A EQ PUSH2 0x435 JUMPI DUP1 PUSH4 0x4136A33C EQ PUSH2 0x44F JUMPI DUP1 PUSH4 0x4665096D EQ PUSH2 0x487 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18FF183C GT PUSH2 0x1FB JUMPI DUP1 PUSH4 0x18FF183C EQ PUSH2 0x309 JUMPI DUP1 PUSH4 0x19822F7C EQ PUSH2 0x328 JUMPI DUP1 PUSH4 0x1CFF79CD EQ PUSH2 0x355 JUMPI DUP1 PUSH4 0x25C471A0 EQ PUSH2 0x368 JUMPI DUP1 PUSH4 0x3078F114 EQ PUSH2 0x387 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8D6122D EQ PUSH2 0x236 JUMPI DUP1 PUSH4 0xB0A93BA EQ PUSH2 0x257 JUMPI DUP1 PUSH4 0x12BE8727 EQ PUSH2 0x2B6 JUMPI DUP1 PUSH4 0x167BD395 EQ PUSH2 0x2EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST CALLDATASIZE PUSH2 0x232 JUMPI STOP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x241 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x250 CALLDATASIZE PUSH1 0x4 PUSH2 0x2AFA JUMP JUMPDEST PUSH2 0x7F3 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x262 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x299 PUSH2 0x271 CALLDATASIZE PUSH1 0x4 PUSH2 0x2B5C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2D5 PUSH2 0x2D0 CALLDATASIZE PUSH1 0x4 PUSH2 0x2B5C JUMP JUMPDEST PUSH2 0x845 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2F5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x304 CALLDATASIZE PUSH1 0x4 PUSH2 0x2B75 JUMP JUMPDEST PUSH2 0x87F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x314 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x323 CALLDATASIZE PUSH1 0x4 PUSH2 0x2BB0 JUMP JUMPDEST PUSH2 0x895 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x333 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x347 PUSH2 0x342 CALLDATASIZE PUSH1 0x4 PUSH2 0x2BDC JUMP JUMPDEST PUSH2 0x8F8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AD JUMP JUMPDEST PUSH2 0x2D5 PUSH2 0x363 CALLDATASIZE PUSH1 0x4 PUSH2 0x2C67 JUMP JUMPDEST PUSH2 0x91D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x373 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x382 CALLDATASIZE PUSH1 0x4 PUSH2 0x2CCA JUMP JUMPDEST PUSH2 0xA47 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x392 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3A6 PUSH2 0x3A1 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D0C JUMP JUMPDEST PUSH2 0xA69 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2AD SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH6 0xFFFFFFFFFFFF SWAP5 DUP6 AND DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP4 DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x40 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3EB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x3FA CALLDATASIZE PUSH1 0x4 PUSH2 0x2D26 JUMP JUMPDEST PUSH2 0xB02 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x40A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x41E PUSH2 0x419 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D57 JUMP JUMPDEST PUSH2 0xB14 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x440 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x299 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x45A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2D5 PUSH2 0x469 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D57 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x492 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x93A80 PUSH2 0x2D5 JUMP JUMPDEST PUSH2 0x255 PUSH2 0xB45 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2D5 PUSH2 0x4BE CALLDATASIZE PUSH1 0x4 PUSH2 0x2D6E JUMP JUMPDEST PUSH2 0xBBA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x4DD CALLDATASIZE PUSH1 0x4 PUSH2 0x2D89 JUMP JUMPDEST PUSH2 0xBE7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x4FC CALLDATASIZE PUSH1 0x4 PUSH2 0x2D26 JUMP JUMPDEST PUSH2 0xC4A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x299 PUSH2 0x51B CALLDATASIZE PUSH1 0x4 PUSH2 0x2B5C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x547 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x299 PUSH2 0x556 CALLDATASIZE PUSH1 0x4 PUSH2 0x2DC8 JUMP JUMPDEST PUSH2 0xC5C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x566 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x299 PUSH0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x579 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x588 CALLDATASIZE PUSH1 0x4 PUSH2 0x2DF4 JUMP JUMPDEST PUSH2 0xC96 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x598 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x5A7 CALLDATASIZE PUSH1 0x4 PUSH2 0x2C67 JUMP JUMPDEST PUSH2 0xD2D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5CB PUSH2 0x5C6 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D6E JUMP JUMPDEST PUSH2 0xDD7 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5E6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x5F5 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E0F JUMP JUMPDEST PUSH2 0xDFE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x605 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x347 PUSH2 0x614 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E37 JUMP JUMPDEST PUSH2 0xE10 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x624 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x638 PUSH2 0x633 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E97 JUMP JUMPDEST PUSH2 0xE49 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2AD SWAP2 SWAP1 PUSH2 0x2F03 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x650 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x693 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x6A2 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F66 JUMP JUMPDEST PUSH2 0xF2E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x6C6 PUSH2 0x6C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x2FA5 JUMP JUMPDEST PUSH2 0xF77 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 ISZERO ISZERO DUP4 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x2AD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x6FC CALLDATASIZE PUSH1 0x4 PUSH2 0x2D0C JUMP JUMPDEST PUSH2 0xFF8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x70C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x347 PUSH2 0x100F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x720 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x69780 PUSH2 0x2D5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x735 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x347 PUSH2 0x109D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x749 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x6C6 PUSH2 0x758 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D0C JUMP JUMPDEST PUSH2 0x10F2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x768 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x777 CALLDATASIZE PUSH1 0x4 PUSH2 0x2FED JUMP JUMPDEST PUSH2 0x1176 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x787 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2D5 PUSH2 0x796 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E37 JUMP JUMPDEST PUSH2 0x1188 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7A6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7BA PUSH2 0x7B5 CALLDATASIZE PUSH1 0x4 PUSH2 0x3009 JUMP JUMPDEST PUSH2 0x12DB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x2AD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7DF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x7EE CALLDATASIZE PUSH1 0x4 PUSH2 0x2D0C JUMP JUMPDEST PUSH2 0x141C JUMP JUMPDEST PUSH2 0x7FB PUSH2 0x1445 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x83E JUMPI PUSH2 0x836 DUP6 DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x81B JUMPI PUSH2 0x81B PUSH2 0x3076 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x830 SWAP2 SWAP1 PUSH2 0x308A JUMP JUMPDEST DUP5 PUSH2 0x14BC JUMP JUMPDEST PUSH1 0x1 ADD PUSH2 0x7FD JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 KECCAK256 ADD SLOAD PUSH2 0x879 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x153D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x887 PUSH2 0x1445 JUMP JUMPDEST PUSH2 0x891 DUP3 DUP3 PUSH2 0x155B JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x89D PUSH2 0x1445 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x7A9E5E4B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x7A9E5E4B SWAP1 PUSH1 0x24 ADD JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x8DE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x8F0 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x901 PUSH2 0x15CC JUMP JUMPDEST PUSH2 0x90B DUP5 DUP5 PUSH2 0x1646 JUMP JUMPDEST SWAP1 POP PUSH2 0x916 DUP3 PUSH2 0x17E1 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 CALLER DUP2 DUP1 PUSH2 0x92D DUP4 DUP9 DUP9 DUP9 PUSH2 0x182A JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x943 JUMPI POP PUSH4 0xFFFFFFFF DUP2 AND ISZERO JUMPDEST ISZERO PUSH2 0x996 JUMPI DUP3 DUP8 PUSH2 0x954 DUP9 DUP9 PUSH2 0x187B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x81C6F24B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x9A3 DUP5 DUP10 DUP10 DUP10 PUSH2 0xE10 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH4 0xFFFFFFFF DUP4 AND ISZERO ISZERO DUP1 PUSH2 0x9C9 JUMPI POP PUSH2 0x9BE DUP3 PUSH2 0xB14 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x9DA JUMPI PUSH2 0x9D7 DUP3 PUSH2 0x1892 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x9F0 DUP11 PUSH2 0x9EB DUP12 DUP12 PUSH2 0x187B JUMP JUMPDEST PUSH2 0x1990 JUMP JUMPDEST PUSH1 0x3 DUP2 SWAP1 SSTORE POP PUSH2 0xA37 DUP11 DUP11 DUP11 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP CALLVALUE SWAP3 POP PUSH2 0x19D2 SWAP2 POP POP JUMP JUMPDEST POP PUSH1 0x3 SSTORE SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0xA4F PUSH2 0x1445 JUMP JUMPDEST PUSH2 0xA63 DUP4 DUP4 PUSH2 0xA5D DUP7 PUSH2 0x845 JUMP JUMPDEST DUP5 PUSH2 0x1A72 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP2 SWAP1 DUP2 SWAP1 DUP2 SWAP1 PUSH1 0xFF DUP3 TLOAD AND ISZERO PUSH2 0xAD5 JUMPI DUP1 SLOAD PUSH2 0xAC9 SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x1CB8 JUMP JUMPDEST SWAP2 SWAP6 POP SWAP4 POP SWAP2 POP PUSH2 0xAF8 JUMP JUMPDEST DUP1 SLOAD PUSH2 0xAF0 SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x1CD9 JUMP JUMPDEST SWAP2 SWAP6 POP SWAP4 POP SWAP2 POP JUMPDEST POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH2 0xB0A PUSH2 0x1445 JUMP JUMPDEST PUSH2 0x891 DUP3 DUP3 PUSH2 0x1CED JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH2 0xB33 DUP2 PUSH2 0x1D90 JUMP JUMPDEST PUSH2 0xB3D JUMPI DUP1 PUSH2 0x916 JUMP JUMPDEST PUSH0 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0xB760FAF9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xB760FAF9 SWAP1 CALLVALUE SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBA8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x83E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x879 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x153D JUMP JUMPDEST PUSH2 0xBF4 CALLER PUSH0 CALLDATASIZE PUSH1 0x1 PUSH2 0x1DBE JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x40B850F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP4 SWAP1 MSTORE PUSH32 0x0 AND SWAP1 PUSH4 0x205C2878 SWAP1 PUSH1 0x44 ADD PUSH2 0x8C7 JUMP JUMPDEST PUSH2 0xC52 PUSH2 0x1445 JUMP JUMPDEST PUSH2 0x891 DUP3 DUP3 PUSH2 0x1E75 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC9E PUSH2 0x1445 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ISZERO DUP1 PUSH2 0xCBC JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0xCE5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH32 0x1256F5B5ECB89CAEC12DB449738F2FBCD1BA5806CF38F35413F4E5C15BF6A450 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0xD20 SWAP3 SWAP2 SWAP1 PUSH2 0x30CD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0x8FB36037 PUSH1 0xE0 SHL DUP1 DUP3 MSTORE SWAP2 MLOAD CALLER SWAP3 SWAP2 DUP4 SWAP2 PUSH4 0x8FB36037 SWAP2 PUSH1 0x4 DUP1 DUP3 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP1 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD6C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD90 SWAP2 SWAP1 PUSH2 0x30E0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND EQ PUSH2 0xDC3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x641FEE9 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH2 0x83E PUSH2 0xDD2 DUP6 DUP4 DUP7 DUP7 PUSH2 0xE10 JUMP JUMPDEST PUSH2 0x1892 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x70 SHL SWAP1 DIV PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0xE06 PUSH2 0x1445 JUMP JUMPDEST PUSH2 0x891 DUP3 DUP3 PUSH2 0x1F26 JUMP JUMPDEST PUSH0 DUP5 DUP5 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xE28 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x30FB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 SWAP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xE72 JUMPI PUSH2 0xE72 PUSH2 0x3175 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xEA5 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xE90 JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xF26 JUMPI PUSH2 0xF01 ADDRESS DUP7 DUP7 DUP5 DUP2 DUP2 LT PUSH2 0xEC8 JUMPI PUSH2 0xEC8 PUSH2 0x3076 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xEDA SWAP2 SWAP1 PUSH2 0x3189 JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xEED SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x31E2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x2035 JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xF13 JUMPI PUSH2 0xF13 PUSH2 0x3076 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0xEAA JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xF36 PUSH2 0x15CC JUMP JUMPDEST PUSH2 0x83E DUP5 DUP4 DUP4 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP DUP9 SWAP3 POP PUSH2 0x19D2 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xF82 DUP5 PUSH2 0xDD7 JUMP JUMPDEST ISZERO PUSH2 0xF91 JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xFF0 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0xFB5 JUMPI PUSH2 0xFAB DUP5 DUP5 PUSH2 0x20A7 JUMP JUMPDEST PUSH0 SWAP2 POP SWAP2 POP PUSH2 0xFF0 JUMP JUMPDEST PUSH0 PUSH2 0xFC0 DUP6 DUP6 PUSH2 0xC5C JUMP JUMPDEST SWAP1 POP PUSH0 PUSH0 PUSH2 0xFCE DUP4 DUP10 PUSH2 0x10F2 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xFDE JUMPI PUSH0 PUSH0 PUSH2 0xFE8 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO DUP2 JUMPDEST SWAP5 POP SWAP5 POP POP POP POP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1000 PUSH2 0x1445 JUMP JUMPDEST PUSH2 0x100A DUP3 DUP3 PUSH2 0x20BD JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1074 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1098 SWAP2 SWAP1 PUSH2 0x31F7 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1AAB3F0D PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x35567E1A SWAP1 PUSH1 0x44 ADD PUSH2 0x1059 JUMP JUMPDEST PUSH0 DUP1 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND ADD PUSH2 0x1118 JUMPI POP PUSH1 0x1 SWAP1 POP PUSH0 PUSH2 0x116F JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1124 DUP7 DUP7 PUSH2 0xA69 JUMP JUMPDEST POP POP SWAP2 POP SWAP2 POP DUP2 PUSH6 0xFFFFFFFFFFFF AND PUSH0 EQ ISZERO DUP1 ISZERO PUSH2 0x1164 JUMPI POP PUSH1 0xFF PUSH0 TLOAD AND DUP1 PUSH2 0x1164 JUMPI POP PUSH2 0x1150 PUSH2 0x21A6 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO JUMPDEST SWAP4 POP SWAP2 POP PUSH2 0x116F SWAP1 POP JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x117E PUSH2 0x1445 JUMP JUMPDEST PUSH2 0x891 DUP3 DUP3 PUSH2 0x21B0 JUMP JUMPDEST PUSH0 CALLER DUP2 PUSH2 0x1195 DUP6 DUP6 PUSH2 0x187B JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x11A4 DUP9 DUP9 DUP9 DUP9 PUSH2 0xE10 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP2 SWAP3 POP PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 SUB PUSH2 0x11E1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x60A299B PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x127A JUMPI PUSH0 PUSH2 0x1205 PUSH0 DUP6 PUSH2 0x10F2 JUMP JUMPDEST POP SWAP1 POP PUSH0 PUSH2 0x121F PUSH2 0x1219 PUSH2 0x271 DUP12 DUP8 PUSH2 0xC5C JUMP JUMPDEST DUP7 PUSH2 0x10F2 JUMP JUMPDEST POP SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x122E JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x1277 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFF89D47 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND PUSH1 0x4 DUP4 ADD MSTORE DUP1 DUP13 AND PUSH1 0x24 DUP4 ADD MSTORE DUP11 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP6 AND PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x98D JUMP JUMPDEST POP POP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND SWAP1 DUP2 SWAP1 SSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP2 DUP3 SWAP2 DUP5 SWAP2 PUSH32 0xBD9AC67A6E2F6463B80927326310338BCBB4BDB7936CE1365EA3E01067E7B9F7 SWAP2 LOG3 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 CALLER DUP2 PUSH2 0x12EB DUP3 DUP10 DUP10 DUP10 PUSH2 0x182A JUMP JUMPDEST SWAP2 POP POP PUSH0 DUP2 PUSH4 0xFFFFFFFF AND PUSH2 0x12FE PUSH2 0x21A6 JUMP JUMPDEST PUSH2 0x1308 SWAP2 SWAP1 PUSH2 0x320E JUMP JUMPDEST SWAP1 POP PUSH4 0xFFFFFFFF DUP3 AND ISZERO DUP1 PUSH2 0x133E JUMPI POP PUSH0 DUP7 PUSH6 0xFFFFFFFFFFFF AND GT DUP1 ISZERO PUSH2 0x133E JUMPI POP DUP1 PUSH6 0xFFFFFFFFFFFF AND DUP7 PUSH6 0xFFFFFFFFFFFF AND LT JUMPDEST ISZERO PUSH2 0x134F JUMPI DUP3 DUP10 PUSH2 0x954 DUP11 DUP11 PUSH2 0x187B JUMP JUMPDEST PUSH2 0x1369 DUP7 PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x226B JUMP JUMPDEST SWAP6 POP PUSH2 0x1377 DUP4 DUP11 DUP11 DUP11 PUSH2 0xE10 JUMP JUMPDEST SWAP5 POP PUSH2 0x1382 DUP6 PUSH2 0x227A JUMP JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF DUP10 AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF NOT DUP3 AND OR PUSH1 0x1 PUSH1 0x30 SHL SWAP2 DUP3 SWAP1 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH1 0x1 ADD SWAP1 DUP2 AND SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD SWAP1 SWAP6 POP DUP7 SWAP1 PUSH32 0x82A2DA5DEE54EA8021C6545B4444620291E07EE83BE6DD57EDB175062715F3B4 SWAP1 PUSH2 0x1408 SWAP1 DUP11 SWAP1 DUP9 SWAP1 DUP16 SWAP1 DUP16 SWAP1 DUP16 SWAP1 PUSH2 0x322C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ PUSH2 0x1000 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5F159E63 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH0 DUP1 PUSH2 0x1453 DUP4 DUP3 CALLDATASIZE PUSH2 0x22C6 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x100A JUMPI DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x14AD JUMPI PUSH0 PUSH2 0x1474 DUP2 CALLDATASIZE PUSH2 0x2389 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0xF07E038F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE SWAP1 SWAP3 POP PUSH1 0x44 ADD SWAP1 POP PUSH2 0x98D JUMP JUMPDEST PUSH2 0xA63 PUSH2 0xDD2 DUP5 ADDRESS PUSH0 CALLDATASIZE PUSH2 0xE10 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP3 DUP4 MSTORE SWAP3 SWAP2 PUSH32 0x9EA6790C7DADFD01C9F8B9762B3682607AF2C7E79E05A9F9FDF5580DDE949151 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1551 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x1CD9 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x1 ADD DUP1 SLOAD DUP5 ISZERO ISZERO PUSH1 0x1 PUSH1 0x70 SHL MUL PUSH1 0xFF PUSH1 0x70 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE MLOAD PUSH32 0x90D4E7BB7E5D933792B3562E1741306F8BE94837E1348DACEF9B6F1DF56EB138 SWAP1 PUSH2 0x15C0 SWAP1 DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x1644 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6163636F756E743A206E6F742066726F6D20456E747279506F696E7400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x98D JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF NOT DUP3 TLOAD AND DUP2 OR DUP3 TSTORE POP PUSH0 PUSH2 0x1662 PUSH1 0x60 DUP6 ADD DUP6 PUSH2 0x3189 JUMP JUMPDEST PUSH2 0x1670 SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x314E JUMP JUMPDEST PUSH2 0x1679 SWAP2 PUSH2 0x3271 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5B0E93FB PUSH1 0xE1 SHL EQ PUSH2 0x16B8 JUMPI PUSH1 0x40 MLOAD PUSH4 0xD4D202FB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH0 PUSH2 0x16C6 PUSH1 0x60 DUP7 ADD DUP7 PUSH2 0x3189 JUMP JUMPDEST PUSH2 0x16D5 SWAP2 PUSH1 0x24 SWAP2 PUSH1 0x4 SWAP2 PUSH2 0x314E JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x16E2 SWAP2 SWAP1 PUSH2 0x2D6E JUMP JUMPDEST SWAP1 POP ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SUB PUSH2 0x170D JUMPI PUSH1 0x40 MLOAD PUSH4 0x7E6C4465 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x19457468657265756D205369676E6564204D6573736167653A0A333200000000 PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1C DUP6 SWAP1 MSTORE PUSH1 0x3C DUP2 KECCAK256 SWAP1 PUSH2 0x1787 DUP3 PUSH2 0x174E PUSH2 0x100 DUP11 ADD DUP11 PUSH2 0x3189 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x256F SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH2 0x17A0 DUP2 PUSH2 0x179A PUSH1 0x60 DUP11 ADD DUP11 PUSH2 0x3189 JUMP JUMPDEST PUSH0 PUSH2 0x1DBE JUMP JUMPDEST PUSH2 0x17B1 JUMPI PUSH1 0x1 SWAP5 POP POP POP POP POP PUSH2 0x17CE JUMP JUMPDEST PUSH2 0x17C7 DUP2 PUSH2 0x17C2 PUSH1 0x60 DUP11 ADD DUP11 PUSH2 0x3189 JUMP JUMPDEST PUSH2 0x258D JUMP JUMPDEST SWAP5 POP POP POP POP POP JUMPDEST PUSH0 PUSH1 0xFF NOT DUP2 TLOAD AND DUP2 TSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST POP JUMP JUMPDEST DUP1 ISZERO PUSH2 0x17DE JUMPI PUSH1 0x40 MLOAD PUSH0 SWAP1 CALLER SWAP1 PUSH0 NOT SWAP1 DUP5 SWAP1 DUP5 DUP2 DUP2 DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x83E JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x83E JUMP JUMPDEST PUSH0 DUP1 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x1850 JUMPI PUSH2 0x1847 DUP7 DUP6 DUP6 PUSH2 0x22C6 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x4 DUP4 LT PUSH2 0x186C JUMPI PUSH2 0x1867 DUP7 DUP7 PUSH2 0x6C1 DUP8 DUP8 PUSH2 0x187B JUMP JUMPDEST PUSH2 0x1847 JUMP JUMPDEST POP PUSH0 SWAP1 POP DUP1 JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1889 PUSH1 0x4 DUP3 DUP5 DUP7 PUSH2 0x314E JUMP JUMPDEST PUSH2 0x916 SWAP2 PUSH2 0x3271 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP2 DUP4 SUB PUSH2 0x18DA JUMPI PUSH1 0x40 MLOAD PUSH4 0x60A299B PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH2 0x18E2 PUSH2 0x21A6 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO PUSH2 0x1915 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC65B5BD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH2 0x191E DUP3 PUSH2 0x1D90 JUMP JUMPDEST ISZERO PUSH2 0x193F JUMPI PUSH1 0x40 MLOAD PUSH4 0x1E2975B9 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND SWAP1 SSTORE MLOAD PUSH4 0xFFFFFFFF DUP4 AND SWAP2 DUP7 SWAP2 PUSH32 0x76A2A46953689D4861A5D3F6ED883AD7E6AF674A21F8E162707159FC9DDE614D SWAP2 SWAP1 LOG3 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP3 SWAP1 SWAP3 AND DUP4 DUP3 ADD MSTORE DUP1 MLOAD DUP1 DUP5 SUB DUP3 ADD DUP2 MSTORE PUSH1 0x60 SWAP1 SWAP4 ADD SWAP1 MSTORE DUP2 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x19FE JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x98D JUMP JUMPDEST PUSH0 PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0x1A19 SWAP2 SWAP1 PUSH2 0x32A9 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1A53 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1A58 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1A68 DUP7 DUP4 DUP4 PUSH2 0x2625 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND ADD PUSH2 0x1AB0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND ISZERO SWAP1 DUP2 ISZERO PUSH2 0x1BA0 JUMPI DUP5 PUSH4 0xFFFFFFFF AND PUSH2 0x1AFB PUSH2 0x21A6 JUMP JUMPDEST PUSH2 0x1B05 SWAP2 SWAP1 PUSH2 0x320E JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH6 0xFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1B33 DUP7 PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 DUP2 AND SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE DUP3 MSTORE SWAP1 SWAP2 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP5 SWAP1 SWAP3 ADD MLOAD SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x1C4A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH2 0x1BE9 SWAP2 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 DUP7 SWAP1 PUSH2 0x2681 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000 NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE SWAP1 POP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP7 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE DUP4 ISZERO ISZERO DUP2 DUP4 ADD MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP11 AND SWAP2 PUSH32 0xF98448B987F1428E0E230E1F3C6E2CE15B5693EAF31827FBD0B1EC4B424AE7CF SWAP2 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG3 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1CCC DUP5 PUSH2 0x1CC7 PUSH2 0x2727 JUMP JUMPDEST PUSH2 0x2736 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1CCC DUP5 PUSH2 0x1CE8 PUSH2 0x21A6 JUMP JUMPDEST PUSH2 0x2788 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x1D0B JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1D34 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND SWAP5 DUP7 AND SWAP5 DUP6 OR SWAP1 SSTORE MLOAD PUSH32 0x1FD6DD7631312DFAC2205B52913F99DE03B4D7E381D5D27D3DBFE0713E6E6340 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1D99 PUSH2 0x21A6 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x1DAE PUSH3 0x93A80 DUP5 PUSH2 0x320E JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND GT ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0x1DDC DUP8 ADDRESS PUSH2 0x1DD3 PUSH1 0x4 DUP6 DUP11 DUP13 PUSH2 0x314E JUMP JUMPDEST PUSH2 0x6C1 SWAP2 PUSH2 0x3271 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x1E68 JUMPI PUSH4 0xFFFFFFFF DUP2 AND ISZERO PUSH2 0x1E0A JUMPI PUSH1 0x40 MLOAD PUSH4 0x99EC076B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP4 ISZERO PUSH2 0x1E5E JUMPI DUP7 PUSH2 0x1E2B ADDRESS PUSH2 0x1E22 PUSH1 0x4 PUSH0 DUP11 DUP13 PUSH2 0x314E JUMP JUMPDEST PUSH2 0x556 SWAP2 PUSH2 0x3271 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xF07E038F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x98D JUMP JUMPDEST PUSH0 SWAP3 POP POP POP PUSH2 0xE41 JUMP JUMPDEST POP PUSH1 0x1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x1E93 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1EBC JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH16 0xFFFFFFFFFFFFFFFF0000000000000000 NOT AND PUSH1 0x1 PUSH1 0x40 SHL SWAP6 DUP8 AND SWAP6 DUP7 MUL OR SWAP1 SSTORE MLOAD PUSH32 0x7A8059630B897B5DE4C08ADE69F8B90C3EAD1F8596D62D10B6C4D14A0AFB4AE2 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ADD PUSH2 0x1F63 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 KECCAK256 ADD SLOAD PUSH2 0x1F9C SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x2681 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x80 SHL NOT SWAP1 SWAP6 AND SWAP5 SWAP1 SWAP5 OR SWAP1 SWAP4 SSTORE SWAP2 MLOAD SWAP1 SWAP3 POP PUSH32 0xFEB69018EE8B8FD50EA86348F1267D07673379F72CFFDECCEC63853EE8CE8B48 SWAP1 PUSH2 0xD20 SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x2051 SWAP2 SWAP1 PUSH2 0x32A9 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x2089 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x208E JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x209E DUP6 DUP4 DUP4 PUSH2 0x2625 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x20B2 DUP4 DUP4 PUSH2 0x1990 JUMP JUMPDEST PUSH1 0x3 SLOAD EQ SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND ADD PUSH2 0x20FB JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP1 SUB PUSH2 0x213C JUMPI POP PUSH0 PUSH2 0x879 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE MLOAD SWAP1 SWAP3 SWAP2 PUSH32 0xF229BAA593AF28C41B1D16B748CD7688F0C83AAF92D4BE41C44005DEFE84C166 SWAP2 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1098 TIMESTAMP PUSH2 0x27D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x21E2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x2681 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x1 ADD DUP1 SLOAD PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP7 SWAP1 SWAP7 AND SWAP6 SWAP1 SWAP6 OR SWAP1 SWAP5 SSTORE DUP1 MLOAD PUSH4 0xFFFFFFFF DUP8 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP5 AND SWAP5 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE SWAP2 SWAP4 POP SWAP2 PUSH32 0xA56B76017453F399EC2327BA00375DBFB1FD070FF854341AD6191E6A2E2DE19C SWAP2 ADD PUSH2 0xD20 JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 GT MUL DUP3 XOR PUSH2 0x916 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x22A5 JUMPI POP PUSH2 0x22A3 DUP2 PUSH2 0x1D90 JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x891 JUMPI PUSH1 0x40 MLOAD PUSH4 0x813E9459 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x4 DUP4 LT ISZERO PUSH2 0x22DB JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xFF0 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x22FE JUMPI PUSH2 0xFAB ADDRESS PUSH2 0x22F9 DUP7 DUP7 PUSH2 0x187B JUMP JUMPDEST PUSH2 0x20A7 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x230B DUP8 DUP8 PUSH2 0x2389 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP DUP3 ISZERO DUP1 ISZERO PUSH2 0x2323 JUMPI POP PUSH2 0x2323 ADDRESS PUSH2 0xDD7 JUMP JUMPDEST ISZERO PUSH2 0x2336 JUMPI PUSH0 PUSH0 SWAP5 POP SWAP5 POP POP POP POP PUSH2 0xFF0 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2342 DUP5 DUP12 PUSH2 0x10F2 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x235B JUMPI PUSH0 PUSH0 SWAP7 POP SWAP7 POP POP POP POP POP POP PUSH2 0xFF0 JUMP JUMPDEST PUSH2 0x2371 DUP4 PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x226B JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO SWAP12 SWAP1 SWAP11 POP SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x23A2 JUMPI POP PUSH0 SWAP2 POP DUP2 SWAP1 POP DUP1 PUSH2 0x2568 JUMP JUMPDEST PUSH0 PUSH2 0x23AD DUP7 DUP7 PUSH2 0x187B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x10A6AA37 PUSH1 0xE3 SHL EQ DUP1 PUSH2 0x23DE JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x30CAE187 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x23F9 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x294B14A9 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x2414 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5326CAE7 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x242F JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xD22B5989 PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x2444 JUMPI PUSH1 0x1 PUSH0 PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP PUSH2 0x2568 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x63FC60F PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x2473 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x167BD395 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x248E JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x8D6122D PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x24CD JUMPI PUSH0 PUSH2 0x24A2 PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x314E JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x24AF SWAP2 SWAP1 PUSH2 0x2D6E JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x24BB DUP3 PUSH2 0xBBA JUMP JUMPDEST PUSH1 0x1 SWAP7 POP PUSH0 SWAP6 POP SWAP4 POP PUSH2 0x2568 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x12E238D PUSH1 0xE5 SHL EQ DUP1 PUSH2 0x24FC JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5BE958B1 PUSH1 0xE1 SHL EQ JUMPDEST ISZERO PUSH2 0x2554 JUMPI PUSH0 PUSH2 0x2510 PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x314E JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x251D SWAP2 SWAP1 PUSH2 0x2B5C JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH2 0x2546 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD AND SWAP1 JUMP JUMPDEST PUSH0 SWAP5 POP SWAP5 POP SWAP5 POP POP POP PUSH2 0x2568 JUMP JUMPDEST PUSH0 PUSH2 0x255F ADDRESS DUP4 PUSH2 0xC5C JUMP JUMPDEST PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x257D DUP7 DUP7 PUSH2 0x280A JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x1551 DUP3 DUP3 PUSH2 0x2850 JUMP JUMPDEST PUSH0 DUP1 DUP1 DUP5 PUSH1 0x4 DUP6 PUSH2 0x259E DUP3 DUP3 PUSH2 0x313B JUMP JUMPDEST SWAP3 PUSH2 0x25AB SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x314E JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x25B8 SWAP2 SWAP1 PUSH2 0x32B4 JUMP JUMPDEST SWAP3 POP POP SWAP2 POP PUSH0 PUSH0 PUSH2 0x25D7 DUP9 DUP6 PUSH2 0x6C1 PUSH0 DUP8 PUSH2 0x2908 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 DUP1 PUSH2 0x25EB JUMPI POP PUSH4 0xFFFFFFFF DUP2 AND ISZERO JUMPDEST ISZERO PUSH2 0x2609 JUMPI DUP2 PUSH2 0x25FC JUMPI PUSH1 0x1 PUSH2 0x25FE JUMP JUMPDEST PUSH0 JUMPDEST SWAP5 POP POP POP POP POP PUSH2 0x916 JUMP JUMPDEST PUSH2 0x2617 PUSH2 0xDD2 DUP10 DUP7 DUP7 PUSH2 0x2965 JUMP JUMPDEST POP PUSH0 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0x263A JUMPI PUSH2 0x2635 DUP3 PUSH2 0x299A JUMP JUMPDEST PUSH2 0x916 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0x2651 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x267A JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST POP DUP1 PUSH2 0x916 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x2696 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x153D JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x26D1 DUP6 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x26BC JUMPI PUSH0 PUSH2 0x26C6 JUMP JUMPDEST PUSH2 0x26C6 DUP9 DUP6 PUSH2 0x337F JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x226B JUMP JUMPDEST SWAP1 POP DUP1 PUSH4 0xFFFFFFFF AND PUSH2 0x26E2 PUSH2 0x21A6 JUMP JUMPDEST PUSH2 0x26EC SWAP2 SWAP1 PUSH2 0x320E JUMP JUMPDEST SWAP3 POP PUSH4 0xFFFFFFFF DUP7 AND PUSH1 0x20 DUP4 SWAP1 SHL PUSH8 0xFFFFFFFF00000000 AND PUSH1 0x40 DUP6 SWAP1 SHL PUSH14 0xFFFFFFFFFFFF0000000000000000 AND OR OR SWAP4 POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1098 PUSH5 0x7915ECC00 PUSH2 0x27D4 JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH10 0xFFFFFFFFFFFFFFFFFFFF PUSH1 0x20 DUP7 SWAP1 SHR AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP7 AND PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 DUP9 SWAP1 SHR DUP2 AND SWAP1 DUP8 AND DUP2 GT ISZERO PUSH2 0x2774 JUMPI DUP3 DUP3 DUP3 PUSH2 0x2778 JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH10 0xFFFFFFFFFFFFFFFFFFFF PUSH1 0x20 DUP4 SWAP1 SHR AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP4 AND PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 DUP6 SWAP1 SHR DUP2 AND SWAP1 DUP5 AND DUP2 GT ISZERO PUSH2 0x27C3 JUMPI DUP3 DUP3 DUP3 PUSH2 0x27C7 JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH6 0xFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2806 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x30 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x98D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x41 SUB PUSH2 0x2841 JUMPI PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH0 BYTE PUSH2 0x2833 DUP9 DUP3 DUP6 DUP6 PUSH2 0x29C3 JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP PUSH2 0x2568 JUMP JUMPDEST POP POP DUP2 MLOAD PUSH0 SWAP2 POP PUSH1 0x2 SWAP1 PUSH2 0x2568 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2863 JUMPI PUSH2 0x2863 PUSH2 0x339B JUMP JUMPDEST SUB PUSH2 0x286C JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2880 JUMPI PUSH2 0x2880 PUSH2 0x339B JUMP JUMPDEST SUB PUSH2 0x289E JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x28B2 JUMPI PUSH2 0x28B2 PUSH2 0x339B JUMP JUMPDEST SUB PUSH2 0x28D3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x28E7 JUMPI PUSH2 0x28E7 PUSH2 0x339B JUMP JUMPDEST SUB PUSH2 0x891 JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH0 PUSH2 0x2914 DUP3 PUSH1 0x20 PUSH2 0x33AF JUMP JUMPDEST DUP4 MLOAD LT ISZERO PUSH2 0x295C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x746F427974657333325F6F75744F66426F756E6473 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x98D JUMP JUMPDEST POP ADD PUSH1 0x20 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH0 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x297B SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x33C2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 MLOAD ISZERO PUSH2 0x29AA JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0x29FC JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x2A81 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2A4D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x2A78 JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x2A81 JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x17DE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2AAF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2AC5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x116F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2AF5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2B0D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2B18 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2B32 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2B3E DUP8 DUP3 DUP9 ADD PUSH2 0x2A9F JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x2B51 SWAP1 POP PUSH1 0x40 DUP7 ADD PUSH2 0x2ADF JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2B6C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x916 DUP3 PUSH2 0x2ADF JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2B86 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2B91 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x2BA5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2BC1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2BCC DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2BA5 DUP2 PUSH2 0x2A8B JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2BEE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2C03 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH2 0x120 DUP2 DUP8 SUB SLT ISZERO PUSH2 0x2C15 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2C3A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2C50 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x116F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2C79 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x2C84 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2C9E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2CAA DUP7 DUP3 DUP8 ADD PUSH2 0x2C2A JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x2AF5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2CDC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2CE5 DUP5 PUSH2 0x2ADF JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x2CF5 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP2 POP PUSH2 0x2D03 PUSH1 0x40 DUP6 ADD PUSH2 0x2CB7 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D1D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2BCC DUP4 PUSH2 0x2ADF JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D37 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2D40 DUP4 PUSH2 0x2ADF JUMP JUMPDEST SWAP2 POP PUSH2 0x2D4E PUSH1 0x20 DUP5 ADD PUSH2 0x2ADF JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D67 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D7E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x916 DUP2 PUSH2 0x2A8B JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D9A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2DA5 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x17DE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2DD9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2DE4 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2BA5 DUP2 PUSH2 0x2DB3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2E06 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2C84 DUP5 PUSH2 0x2ADF JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2E20 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2E29 DUP4 PUSH2 0x2ADF JUMP JUMPDEST SWAP2 POP PUSH2 0x2D4E PUSH1 0x20 DUP5 ADD PUSH2 0x2CB7 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2E4A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2E55 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x2E65 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2E7F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2E8B DUP8 DUP3 DUP9 ADD PUSH2 0x2C2A JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2EA8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2EBD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2EC9 DUP6 DUP3 DUP7 ADD PUSH2 0x2A9F JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP1 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP7 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD PUSH1 0x20 DUP4 MSTORE DUP1 DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP6 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP7 ADD ADD SWAP3 POP PUSH1 0x20 DUP7 ADD PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x2F5A JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x2F45 DUP6 DUP4 MLOAD PUSH2 0x2ED5 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x2F29 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2F79 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2F84 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2E7F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2FB7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x2FC2 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x2FD2 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x2FE2 DUP2 PUSH2 0x2DB3 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2FFE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2E29 DUP2 PUSH2 0x2A8B JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x301C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x3027 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3041 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x304D DUP8 DUP3 DUP9 ADD PUSH2 0x2C2A JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x306B JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x309A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x916 DUP2 PUSH2 0x2DB3 JUMP JUMPDEST DUP2 DUP4 MSTORE DUP2 DUP2 PUSH1 0x20 DUP6 ADD CALLDATACOPY POP PUSH0 DUP3 DUP3 ADD PUSH1 0x20 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND SWAP1 SWAP2 ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0xE41 PUSH1 0x20 DUP4 ADD DUP5 DUP7 PUSH2 0x30A5 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x30F0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x916 DUP2 PUSH2 0x2DB3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x1A68 SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x30A5 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x879 JUMPI PUSH2 0x879 PUSH2 0x3127 JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x315C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x3168 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x319E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x31B7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x116F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 DUP2 MLOAD DUP1 PUSH1 0x20 DUP5 ADD DUP6 MCOPY PUSH0 SWAP4 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH0 DUP4 DUP3 ADD PUSH0 DUP2 MSTORE PUSH2 0x1A68 DUP2 DUP6 PUSH2 0x31CB JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3207 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x879 JUMPI PUSH2 0x879 PUSH2 0x3127 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP7 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE DUP5 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x3266 SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x30A5 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x32A2 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x916 DUP3 DUP5 PUSH2 0x31CB JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x32C6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x32D1 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x32F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x3302 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x331B JUMPI PUSH2 0x331B PUSH2 0x3175 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x3349 JUMPI PUSH2 0x3349 PUSH2 0x3175 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP3 DUP3 ADD PUSH1 0x20 ADD DUP9 LT ISZERO PUSH2 0x3360 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP4 POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x879 JUMPI PUSH2 0x879 PUSH2 0x3127 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x879 JUMPI PUSH2 0x879 PUSH2 0x3127 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND DUP3 MSTORE DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x209E SWAP1 DUP4 ADD DUP5 PUSH2 0x2ED5 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4E CHAINID GT PUSH31 0xA74D6D931977B673CD42BE94114EA41528E2312D13DC2FA8BDD094BE64736F PUSH13 0x634300081C0033000000000000 ","sourceMap":"823:4673:34:-:0;;;1403:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1477:12;-1:-1:-1;;;;;6666:26:36;;6662:108;;6715:44;;-1:-1:-1;;;6715:44:36;;6756:1;6715:44;;;744:51:41;717:18;;6715:44:36;;;;;;;;6662:108;6852:42;5642:16;6875:12;5642:16;;6852:10;:42::i;:::-;-1:-1:-1;;;;;;;;1497:26:34::1;;::::0;823:4673;;12080:1061:36;12238:4;-1:-1:-1;;;;;;;;;;;12258:21:36;;;12254:90;;12302:31;;-1:-1:-1;;;12302:31:36;;-1:-1:-1;;;;;968:31:41;;12302::36;;;950:50:41;923:18;;12302:31:36;806:200:41;12254:90:36;-1:-1:-1;;;;;12371:14:36;;12354;12371;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12371:31:36;;;;;;;;;:37;;;:42;;12446:585;;;;12483:29;;;:16;:14;:16::i;:::-;:29;;;;:::i;:::-;12475:37;;12560:55;;;;;;;;12575:5;12560:55;;;;;;12589:24;:14;:22;;;;;:24;;:::i;:::-;-1:-1:-1;;;;;12560:55:36;;;;;;-1:-1:-1;;;;;12526:14:36;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12526:31:36;;;;;;;;;:89;;;;;;;;;;;;;;-1:-1:-1;;;;;;12526:89:36;;;;;;;;;;;;;;12446:585;;;-1:-1:-1;;;;;12907:14:36;;13005:1;12907:14;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12907:31:36;;;;;;;;;:37;:113;;:37;;;;-1:-1:-1;;;;;12907:37:36;;12973:14;;12907:48;:113::i;:::-;-1:-1:-1;;;;;12859:14:36;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12859:31:36;;;;;;;;;12858:162;;-1:-1:-1;;;;;12858:162:36;;;;;-1:-1:-1;;;;;;;;12858:162:36;;;;;;;;;;;-1:-1:-1;12446:585:36;13046:62;;;1549:10:41;1537:23;;1519:42;;1609:14;1597:27;;1592:2;1577:18;;1570:55;1668:14;;1661:22;1641:18;;;1634:50;13046:62:36;;-1:-1:-1;;;;;13046:62:36;;;-1:-1:-1;;;;;13046:62:36;;;;;;;;1507:2:41;13046:62:36;;;-1:-1:-1;13125:9:36;12080:1061;-1:-1:-1;;;;;12080:1061:36:o;750:110:32:-;794:6;819:34;837:15;819:17;:34::i;:::-;812:41;;750:110;:::o;2508:108::-;2589:20;;;2508:108::o;4033:390::-;4154:18;;;4214:10;-1:-1:-1;;;;;4214:8:32;;;:10::i;:::-;4199:25;;4234:14;4258:61;4267:10;4258:61;;4287:8;4279:16;;:5;:16;;;:39;;4317:1;4279:39;;;4298:16;4306:8;4298:5;:16;:::i;:::-;4258:61;;:8;:61::i;:::-;4234:86;-1:-1:-1;4339:21:32;;;:11;:9;:11::i;:::-;:21;;;;:::i;:::-;4330:30;-1:-1:-1;5126:19:32;;;5120:2;5096:26;;;;;5089:2;5070:21;;;;;5069:54;:76;4370:46;;;;4033:390;;;;;;:::o;14296:213:30:-;14352:6;14382:16;14374:24;;14370:103;;;14421:41;;-1:-1:-1;;;14421:41:30;;14452:2;14421:41;;;2051:36:41;2103:18;;;2096:34;;;2024:18;;14421:41:30;1870:266:41;14370:103:30;-1:-1:-1;14496:5:30;14296:213::o;3609:130:32:-;3657:6;;3696:14;-1:-1:-1;;;;;3696:12:32;;;:14::i;:::-;-1:-1:-1;3675:35:32;;3609:130;-1:-1:-1;;;;3609:130:32:o;3189:111:29:-;3281:5;;;3066;;;3065:36;3060:42;;3189:111;;;;;:::o;3393:159:32:-;3445:18;;;3516:29;3527:4;3533:11;:9;:11::i;:::-;3516:10;:29::i;:::-;3509:36;;;;;;3393:159;;;;;:::o;2868:307::-;-1:-1:-1;;;;;4771:2:32;4764:9;;;;-1:-1:-1;;;;;3062:11:32;;4800:9;4807:2;4800:9;;;;;;3092:19;;;;;:76;;3136:11;3149:10;3161:6;3092:76;;;3115:10;3127:1;3130;3092:76;3085:83;;;;;;2868:307;;;;;:::o;14:144:41:-;-1:-1:-1;;;;;102:31:41;;92:42;;82:70;;148:1;145;138:12;82:70;14:144;:::o;163:430::-;261:6;269;322:2;310:9;301:7;297:23;293:32;290:52;;;338:1;335;328:12;290:52;370:9;364:16;389:44;427:5;389:44;:::i;:::-;502:2;487:18;;481:25;452:5;;-1:-1:-1;515:46:41;481:25;515:46;:::i;:::-;580:7;570:17;;;163:430;;;;;:::o;1011:127::-;1072:10;1067:3;1063:20;1060:1;1053:31;1103:4;1100:1;1093:15;1127:4;1124:1;1117:15;1143:179;1242:14;1211:22;;;1235;;;1207:51;;1270:23;;1267:49;;;1296:18;;:::i;1695:170::-;1792:10;1785:18;;;1765;;;1761:43;;1816:20;;1813:46;;;1839:18;;:::i;1870:266::-;823:4673:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@ADMIN_ROLE_9962":{"entryPoint":null,"id":9962,"parameterSlots":0,"returnSlots":0},"@PUBLIC_ROLE_9970":{"entryPoint":null,"id":9970,"parameterSlots":0,"returnSlots":0},"@_9101":{"entryPoint":null,"id":9101,"parameterSlots":0,"returnSlots":0},"@_canCallExtended_11649":{"entryPoint":6186,"id":11649,"parameterSlots":4,"returnSlots":2},"@_canCallSelf_11751":{"entryPoint":8902,"id":11751,"parameterSlots":3,"returnSlots":2},"@_checkAAExecuteCall_9229":{"entryPoint":9613,"id":9229,"parameterSlots":3,"returnSlots":1},"@_checkAuthorized_11451":{"entryPoint":5189,"id":11451,"parameterSlots":0,"returnSlots":0},"@_checkCanCall_9420":{"entryPoint":7614,"id":9420,"parameterSlots":4,"returnSlots":1},"@_checkNotScheduled_11055":{"entryPoint":8826,"id":11055,"parameterSlots":1,"returnSlots":0},"@_checkSelector_11804":{"entryPoint":6267,"id":11804,"parameterSlots":2,"returnSlots":1},"@_consumeScheduledOp_11357":{"entryPoint":6290,"id":11357,"parameterSlots":1,"returnSlots":1},"@_contextSuffixLength_3097":{"entryPoint":null,"id":3097,"parameterSlots":0,"returnSlots":1},"@_getAdminRestrictions_11604":{"entryPoint":9097,"id":11604,"parameterSlots":2,"returnSlots":3},"@_getFullAt_11914":{"entryPoint":10038,"id":11914,"parameterSlots":2,"returnSlots":3},"@_getFullAt_8522":{"entryPoint":10120,"id":8522,"parameterSlots":2,"returnSlots":3},"@_grantRole_10567":{"entryPoint":6770,"id":10567,"parameterSlots":4,"returnSlots":1},"@_hashExecutionId_11823":{"entryPoint":6544,"id":11823,"parameterSlots":2,"returnSlots":1},"@_hashOperation_9160":{"entryPoint":10597,"id":9160,"parameterSlots":3,"returnSlots":1},"@_isExecuting_11769":{"entryPoint":8359,"id":11769,"parameterSlots":2,"returnSlots":1},"@_isExpired_11787":{"entryPoint":7568,"id":11787,"parameterSlots":1,"returnSlots":1},"@_msgData_3089":{"entryPoint":null,"id":3089,"parameterSlots":0,"returnSlots":2},"@_msgSender_3080":{"entryPoint":null,"id":3080,"parameterSlots":0,"returnSlots":1},"@_payPrefund_137":{"entryPoint":6113,"id":137,"parameterSlots":1,"returnSlots":0},"@_requireFromEntryPoint_86":{"entryPoint":5580,"id":86,"parameterSlots":0,"returnSlots":0},"@_revert_3067":{"entryPoint":10650,"id":3067,"parameterSlots":1,"returnSlots":0},"@_revokeRole_10615":{"entryPoint":8381,"id":10615,"parameterSlots":2,"returnSlots":1},"@_setGrantDelay_10727":{"entryPoint":7974,"id":10727,"parameterSlots":2,"returnSlots":0},"@_setRoleAdmin_10649":{"entryPoint":7405,"id":10649,"parameterSlots":2,"returnSlots":0},"@_setRoleGuardian_10683":{"entryPoint":7797,"id":10683,"parameterSlots":2,"returnSlots":0},"@_setTargetAdminDelay_10839":{"entryPoint":8624,"id":10839,"parameterSlots":2,"returnSlots":0},"@_setTargetClosed_10876":{"entryPoint":5467,"id":10876,"parameterSlots":2,"returnSlots":0},"@_setTargetFunctionRole_10788":{"entryPoint":5308,"id":10788,"parameterSlots":3,"returnSlots":0},"@_throwError_4806":{"entryPoint":10320,"id":4806,"parameterSlots":2,"returnSlots":0},"@_validateNonce_104":{"entryPoint":6110,"id":104,"parameterSlots":1,"returnSlots":0},"@_validateSignature_9319":{"entryPoint":5702,"id":9319,"parameterSlots":2,"returnSlots":1},"@addDeposit_9352":{"entryPoint":2885,"id":9352,"parameterSlots":0,"returnSlots":0},"@canCall_10104":{"entryPoint":3959,"id":10104,"parameterSlots":3,"returnSlots":2},"@cancel_11255":{"entryPoint":4488,"id":11255,"parameterSlots":4,"returnSlots":1},"@consumeScheduledOp_11292":{"entryPoint":3373,"id":11292,"parameterSlots":3,"returnSlots":0},"@entryPoint_9097":{"entryPoint":null,"id":9097,"parameterSlots":0,"returnSlots":1},"@execute_11153":{"entryPoint":2333,"id":11153,"parameterSlots":3,"returnSlots":1},"@execute_9139":{"entryPoint":3886,"id":9139,"parameterSlots":4,"returnSlots":0},"@expiration_10113":{"entryPoint":null,"id":10113,"parameterSlots":0,"returnSlots":1},"@functionCallWithValue_2933":{"entryPoint":6610,"id":2933,"parameterSlots":3,"returnSlots":1},"@functionDelegateCall_2985":{"entryPoint":8245,"id":2985,"parameterSlots":2,"returnSlots":1},"@getAccess_10285":{"entryPoint":2665,"id":10285,"parameterSlots":2,"returnSlots":4},"@getDeposit_9335":{"entryPoint":4111,"id":9335,"parameterSlots":0,"returnSlots":1},"@getFull_11934":{"entryPoint":7352,"id":11934,"parameterSlots":1,"returnSlots":3},"@getFull_8542":{"entryPoint":7385,"id":8542,"parameterSlots":1,"returnSlots":3},"@getNonce_10913":{"entryPoint":null,"id":10913,"parameterSlots":1,"returnSlots":1},"@getNonce_28":{"entryPoint":4253,"id":28,"parameterSlots":0,"returnSlots":1},"@getRoleAdmin_10184":{"entryPoint":null,"id":10184,"parameterSlots":1,"returnSlots":1},"@getRoleGrantDelay_10214":{"entryPoint":2117,"id":10214,"parameterSlots":1,"returnSlots":1},"@getRoleGuardian_10198":{"entryPoint":null,"id":10198,"parameterSlots":1,"returnSlots":1},"@getSchedule_10899":{"entryPoint":2836,"id":10899,"parameterSlots":1,"returnSlots":1},"@getTargetAdminDelay_10170":{"entryPoint":3002,"id":10170,"parameterSlots":1,"returnSlots":1},"@getTargetFunctionRole_10154":{"entryPoint":3164,"id":10154,"parameterSlots":2,"returnSlots":1},"@get_8560":{"entryPoint":5437,"id":8560,"parameterSlots":1,"returnSlots":1},"@grantRole_10383":{"entryPoint":2631,"id":10383,"parameterSlots":3,"returnSlots":0},"@hasRole_10332":{"entryPoint":4338,"id":10332,"parameterSlots":2,"returnSlots":2},"@hashOperation_11379":{"entryPoint":3600,"id":11379,"parameterSlots":4,"returnSlots":1},"@isTargetClosed_10136":{"entryPoint":3543,"id":10136,"parameterSlots":1,"returnSlots":1},"@labelRole_10361":{"entryPoint":3222,"id":10361,"parameterSlots":3,"returnSlots":0},"@max_5133":{"entryPoint":8811,"id":5133,"parameterSlots":2,"returnSlots":1},"@minSetback_10122":{"entryPoint":null,"id":10122,"parameterSlots":0,"returnSlots":1},"@multicall_3206":{"entryPoint":3657,"id":3206,"parameterSlots":2,"returnSlots":1},"@pack_8705":{"entryPoint":null,"id":8705,"parameterSlots":3,"returnSlots":1},"@recover_4563":{"entryPoint":9583,"id":4563,"parameterSlots":2,"returnSlots":1},"@renounceRole_10422":{"entryPoint":5148,"id":10422,"parameterSlots":2,"returnSlots":0},"@revokeRole_10399":{"entryPoint":4088,"id":10399,"parameterSlots":2,"returnSlots":0},"@schedule_11027":{"entryPoint":4827,"id":11027,"parameterSlots":4,"returnSlots":2},"@setGrantDelay_10470":{"entryPoint":3582,"id":10470,"parameterSlots":2,"returnSlots":0},"@setRoleAdmin_10438":{"entryPoint":2818,"id":10438,"parameterSlots":2,"returnSlots":0},"@setRoleGuardian_10454":{"entryPoint":3146,"id":10454,"parameterSlots":2,"returnSlots":0},"@setTargetAdminDelay_10804":{"entryPoint":4470,"id":10804,"parameterSlots":2,"returnSlots":0},"@setTargetClosed_10855":{"entryPoint":2175,"id":10855,"parameterSlots":2,"returnSlots":0},"@setTargetFunctionRole_10762":{"entryPoint":2035,"id":10762,"parameterSlots":4,"returnSlots":0},"@ternary_5114":{"entryPoint":null,"id":5114,"parameterSlots":3,"returnSlots":1},"@timestamp_11845":{"entryPoint":10023,"id":11845,"parameterSlots":0,"returnSlots":1},"@timestamp_8454":{"entryPoint":8614,"id":8454,"parameterSlots":0,"returnSlots":1},"@toBytes32_12496":{"entryPoint":10504,"id":12496,"parameterSlots":2,"returnSlots":1},"@toDelay_8484":{"entryPoint":null,"id":8484,"parameterSlots":1,"returnSlots":1},"@toEthSignedMessageHash_4822":{"entryPoint":null,"id":4822,"parameterSlots":1,"returnSlots":1},"@toUint48_7278":{"entryPoint":10196,"id":7278,"parameterSlots":1,"returnSlots":1},"@toUint_8287":{"entryPoint":null,"id":8287,"parameterSlots":1,"returnSlots":1},"@tryRecover_4533":{"entryPoint":10250,"id":4533,"parameterSlots":2,"returnSlots":3},"@tryRecover_4721":{"entryPoint":10691,"id":4721,"parameterSlots":4,"returnSlots":3},"@unpack_12059":{"entryPoint":null,"id":12059,"parameterSlots":1,"returnSlots":3},"@unpack_8667":{"entryPoint":null,"id":8667,"parameterSlots":1,"returnSlots":3},"@updateAuthority_11397":{"entryPoint":2197,"id":11397,"parameterSlots":2,"returnSlots":0},"@validateUserOp_69":{"entryPoint":2296,"id":69,"parameterSlots":3,"returnSlots":1},"@verifyCallResultFromTarget_3025":{"entryPoint":9765,"id":3025,"parameterSlots":3,"returnSlots":1},"@withUpdate_8616":{"entryPoint":9857,"id":8616,"parameterSlots":3,"returnSlots":2},"@withdrawDepositTo_9444":{"entryPoint":3047,"id":9444,"parameterSlots":2,"returnSlots":0},"abi_decode_array_bytes4_dyn_calldata":{"entryPoint":10911,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_bytes_calldata":{"entryPoint":11306,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_address":{"entryPoint":11630,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_payable":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_payablet_uint256":{"entryPoint":11657,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_address_payablet_uint256t_bytes_memory_ptr":{"entryPoint":12980,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_address":{"entryPoint":11184,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_bytes4":{"entryPoint":12197,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_bytes_calldata_ptr":{"entryPoint":11831,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_array$_t_bytes4_$dyn_calldata_ptrt_uint64":{"entryPoint":11002,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_bool":{"entryPoint":11125,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes4":{"entryPoint":11720,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes_calldata_ptr":{"entryPoint":11367,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_bytes_calldata_ptrt_uint48":{"entryPoint":12297,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_uint256t_bytes_calldata_ptr":{"entryPoint":12134,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_uint32":{"entryPoint":12269,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr":{"entryPoint":11927,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32":{"entryPoint":11607,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":12426,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4_fromMemory":{"entryPoint":12512,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PackedUserOperation_$1054_calldata_ptrt_bytes32t_uint256":{"entryPoint":11228,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":12791,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint64":{"entryPoint":11100,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint64t_address":{"entryPoint":11532,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint64t_addresst_uint32":{"entryPoint":11466,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint64t_string_calldata_ptr":{"entryPoint":11764,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint64t_uint32":{"entryPoint":11791,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint64t_uint64":{"entryPoint":11558,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_uint32":{"entryPoint":11447,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint64":{"entryPoint":10975,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_bytes":{"entryPoint":12747,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_bytes_to_bytes":{"entryPoint":11989,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string_calldata":{"entryPoint":12453,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":12770,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":12969,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_payable_t_uint256__to_t_address_payable_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_address_t_bytes4__to_t_address_t_address_t_address_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_bytes_calldata_ptr__to_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":12539,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_bytes_memory_ptr__to_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":13250,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_bytes4__to_t_address_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint192__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint64__to_t_address_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":12035,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool_t_uint32__to_t_bool_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_uint32__to_t_bytes32_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IEntryPoint_$909__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_string_calldata_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":12493,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_stringliteral_95abc635681816f3b423f999d8035c1cc722b70e3d801f56cd1748a4f5810fa2__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f684c2c0c9ec797849b62669189fe025e9077c00ba7812987ce38c0071ad7a50__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint48__to_t_uint32_t_uint48__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint48__to_t_uint48__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint48_t_address_t_address_t_bytes_calldata_ptr__to_t_uint48_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":12844,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint48_t_uint32_t_uint32_t_uint48__to_t_uint48_t_uint32_t_uint32_t_uint48__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":12681,"id":null,"parameterSlots":2,"returnSlots":2},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":12622,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_uint256":{"entryPoint":13231,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint48":{"entryPoint":12814,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":12603,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint32":{"entryPoint":13183,"id":null,"parameterSlots":2,"returnSlots":1},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4":{"entryPoint":12913,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":12583,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":13211,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":12406,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":12661,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":10891,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_bytes4":{"entryPoint":11699,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:26288:41","nodeType":"YulBlock","src":"0:26288:41","statements":[{"nativeSrc":"6:3:41","nodeType":"YulBlock","src":"6:3:41","statements":[]},{"body":{"nativeSrc":"59:86:41","nodeType":"YulBlock","src":"59:86:41","statements":[{"body":{"nativeSrc":"123:16:41","nodeType":"YulBlock","src":"123:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:41","nodeType":"YulLiteral","src":"132:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:41","nodeType":"YulLiteral","src":"135:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:41","nodeType":"YulIdentifier","src":"125:6:41"},"nativeSrc":"125:12:41","nodeType":"YulFunctionCall","src":"125:12:41"},"nativeSrc":"125:12:41","nodeType":"YulExpressionStatement","src":"125:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"82:5:41","nodeType":"YulIdentifier","src":"82:5:41"},{"arguments":[{"name":"value","nativeSrc":"93:5:41","nodeType":"YulIdentifier","src":"93:5:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"108:3:41","nodeType":"YulLiteral","src":"108:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"113:1:41","nodeType":"YulLiteral","src":"113:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"104:3:41","nodeType":"YulIdentifier","src":"104:3:41"},"nativeSrc":"104:11:41","nodeType":"YulFunctionCall","src":"104:11:41"},{"kind":"number","nativeSrc":"117:1:41","nodeType":"YulLiteral","src":"117:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"100:3:41","nodeType":"YulIdentifier","src":"100:3:41"},"nativeSrc":"100:19:41","nodeType":"YulFunctionCall","src":"100:19:41"}],"functionName":{"name":"and","nativeSrc":"89:3:41","nodeType":"YulIdentifier","src":"89:3:41"},"nativeSrc":"89:31:41","nodeType":"YulFunctionCall","src":"89:31:41"}],"functionName":{"name":"eq","nativeSrc":"79:2:41","nodeType":"YulIdentifier","src":"79:2:41"},"nativeSrc":"79:42:41","nodeType":"YulFunctionCall","src":"79:42:41"}],"functionName":{"name":"iszero","nativeSrc":"72:6:41","nodeType":"YulIdentifier","src":"72:6:41"},"nativeSrc":"72:50:41","nodeType":"YulFunctionCall","src":"72:50:41"},"nativeSrc":"69:70:41","nodeType":"YulIf","src":"69:70:41"}]},"name":"validator_revert_address","nativeSrc":"14:131:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"48:5:41","nodeType":"YulTypedName","src":"48:5:41","type":""}],"src":"14:131:41"},{"body":{"nativeSrc":"233:283:41","nodeType":"YulBlock","src":"233:283:41","statements":[{"body":{"nativeSrc":"282:16:41","nodeType":"YulBlock","src":"282:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"291:1:41","nodeType":"YulLiteral","src":"291:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"294:1:41","nodeType":"YulLiteral","src":"294:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"284:6:41","nodeType":"YulIdentifier","src":"284:6:41"},"nativeSrc":"284:12:41","nodeType":"YulFunctionCall","src":"284:12:41"},"nativeSrc":"284:12:41","nodeType":"YulExpressionStatement","src":"284:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"261:6:41","nodeType":"YulIdentifier","src":"261:6:41"},{"kind":"number","nativeSrc":"269:4:41","nodeType":"YulLiteral","src":"269:4:41","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"257:3:41","nodeType":"YulIdentifier","src":"257:3:41"},"nativeSrc":"257:17:41","nodeType":"YulFunctionCall","src":"257:17:41"},{"name":"end","nativeSrc":"276:3:41","nodeType":"YulIdentifier","src":"276:3:41"}],"functionName":{"name":"slt","nativeSrc":"253:3:41","nodeType":"YulIdentifier","src":"253:3:41"},"nativeSrc":"253:27:41","nodeType":"YulFunctionCall","src":"253:27:41"}],"functionName":{"name":"iszero","nativeSrc":"246:6:41","nodeType":"YulIdentifier","src":"246:6:41"},"nativeSrc":"246:35:41","nodeType":"YulFunctionCall","src":"246:35:41"},"nativeSrc":"243:55:41","nodeType":"YulIf","src":"243:55:41"},{"nativeSrc":"307:30:41","nodeType":"YulAssignment","src":"307:30:41","value":{"arguments":[{"name":"offset","nativeSrc":"330:6:41","nodeType":"YulIdentifier","src":"330:6:41"}],"functionName":{"name":"calldataload","nativeSrc":"317:12:41","nodeType":"YulIdentifier","src":"317:12:41"},"nativeSrc":"317:20:41","nodeType":"YulFunctionCall","src":"317:20:41"},"variableNames":[{"name":"length","nativeSrc":"307:6:41","nodeType":"YulIdentifier","src":"307:6:41"}]},{"body":{"nativeSrc":"380:16:41","nodeType":"YulBlock","src":"380:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"389:1:41","nodeType":"YulLiteral","src":"389:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"392:1:41","nodeType":"YulLiteral","src":"392:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"382:6:41","nodeType":"YulIdentifier","src":"382:6:41"},"nativeSrc":"382:12:41","nodeType":"YulFunctionCall","src":"382:12:41"},"nativeSrc":"382:12:41","nodeType":"YulExpressionStatement","src":"382:12:41"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"352:6:41","nodeType":"YulIdentifier","src":"352:6:41"},{"kind":"number","nativeSrc":"360:18:41","nodeType":"YulLiteral","src":"360:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"349:2:41","nodeType":"YulIdentifier","src":"349:2:41"},"nativeSrc":"349:30:41","nodeType":"YulFunctionCall","src":"349:30:41"},"nativeSrc":"346:50:41","nodeType":"YulIf","src":"346:50:41"},{"nativeSrc":"405:29:41","nodeType":"YulAssignment","src":"405:29:41","value":{"arguments":[{"name":"offset","nativeSrc":"421:6:41","nodeType":"YulIdentifier","src":"421:6:41"},{"kind":"number","nativeSrc":"429:4:41","nodeType":"YulLiteral","src":"429:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"417:3:41","nodeType":"YulIdentifier","src":"417:3:41"},"nativeSrc":"417:17:41","nodeType":"YulFunctionCall","src":"417:17:41"},"variableNames":[{"name":"arrayPos","nativeSrc":"405:8:41","nodeType":"YulIdentifier","src":"405:8:41"}]},{"body":{"nativeSrc":"494:16:41","nodeType":"YulBlock","src":"494:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"503:1:41","nodeType":"YulLiteral","src":"503:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"506:1:41","nodeType":"YulLiteral","src":"506:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"496:6:41","nodeType":"YulIdentifier","src":"496:6:41"},"nativeSrc":"496:12:41","nodeType":"YulFunctionCall","src":"496:12:41"},"nativeSrc":"496:12:41","nodeType":"YulExpressionStatement","src":"496:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"457:6:41","nodeType":"YulIdentifier","src":"457:6:41"},{"arguments":[{"kind":"number","nativeSrc":"469:1:41","nodeType":"YulLiteral","src":"469:1:41","type":"","value":"5"},{"name":"length","nativeSrc":"472:6:41","nodeType":"YulIdentifier","src":"472:6:41"}],"functionName":{"name":"shl","nativeSrc":"465:3:41","nodeType":"YulIdentifier","src":"465:3:41"},"nativeSrc":"465:14:41","nodeType":"YulFunctionCall","src":"465:14:41"}],"functionName":{"name":"add","nativeSrc":"453:3:41","nodeType":"YulIdentifier","src":"453:3:41"},"nativeSrc":"453:27:41","nodeType":"YulFunctionCall","src":"453:27:41"},{"kind":"number","nativeSrc":"482:4:41","nodeType":"YulLiteral","src":"482:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"449:3:41","nodeType":"YulIdentifier","src":"449:3:41"},"nativeSrc":"449:38:41","nodeType":"YulFunctionCall","src":"449:38:41"},{"name":"end","nativeSrc":"489:3:41","nodeType":"YulIdentifier","src":"489:3:41"}],"functionName":{"name":"gt","nativeSrc":"446:2:41","nodeType":"YulIdentifier","src":"446:2:41"},"nativeSrc":"446:47:41","nodeType":"YulFunctionCall","src":"446:47:41"},"nativeSrc":"443:67:41","nodeType":"YulIf","src":"443:67:41"}]},"name":"abi_decode_array_bytes4_dyn_calldata","nativeSrc":"150:366:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"196:6:41","nodeType":"YulTypedName","src":"196:6:41","type":""},{"name":"end","nativeSrc":"204:3:41","nodeType":"YulTypedName","src":"204:3:41","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"212:8:41","nodeType":"YulTypedName","src":"212:8:41","type":""},{"name":"length","nativeSrc":"222:6:41","nodeType":"YulTypedName","src":"222:6:41","type":""}],"src":"150:366:41"},{"body":{"nativeSrc":"569:123:41","nodeType":"YulBlock","src":"569:123:41","statements":[{"nativeSrc":"579:29:41","nodeType":"YulAssignment","src":"579:29:41","value":{"arguments":[{"name":"offset","nativeSrc":"601:6:41","nodeType":"YulIdentifier","src":"601:6:41"}],"functionName":{"name":"calldataload","nativeSrc":"588:12:41","nodeType":"YulIdentifier","src":"588:12:41"},"nativeSrc":"588:20:41","nodeType":"YulFunctionCall","src":"588:20:41"},"variableNames":[{"name":"value","nativeSrc":"579:5:41","nodeType":"YulIdentifier","src":"579:5:41"}]},{"body":{"nativeSrc":"670:16:41","nodeType":"YulBlock","src":"670:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"679:1:41","nodeType":"YulLiteral","src":"679:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"682:1:41","nodeType":"YulLiteral","src":"682:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"672:6:41","nodeType":"YulIdentifier","src":"672:6:41"},"nativeSrc":"672:12:41","nodeType":"YulFunctionCall","src":"672:12:41"},"nativeSrc":"672:12:41","nodeType":"YulExpressionStatement","src":"672:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"630:5:41","nodeType":"YulIdentifier","src":"630:5:41"},{"arguments":[{"name":"value","nativeSrc":"641:5:41","nodeType":"YulIdentifier","src":"641:5:41"},{"kind":"number","nativeSrc":"648:18:41","nodeType":"YulLiteral","src":"648:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"637:3:41","nodeType":"YulIdentifier","src":"637:3:41"},"nativeSrc":"637:30:41","nodeType":"YulFunctionCall","src":"637:30:41"}],"functionName":{"name":"eq","nativeSrc":"627:2:41","nodeType":"YulIdentifier","src":"627:2:41"},"nativeSrc":"627:41:41","nodeType":"YulFunctionCall","src":"627:41:41"}],"functionName":{"name":"iszero","nativeSrc":"620:6:41","nodeType":"YulIdentifier","src":"620:6:41"},"nativeSrc":"620:49:41","nodeType":"YulFunctionCall","src":"620:49:41"},"nativeSrc":"617:69:41","nodeType":"YulIf","src":"617:69:41"}]},"name":"abi_decode_uint64","nativeSrc":"521:171:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"548:6:41","nodeType":"YulTypedName","src":"548:6:41","type":""}],"returnVariables":[{"name":"value","nativeSrc":"559:5:41","nodeType":"YulTypedName","src":"559:5:41","type":""}],"src":"521:171:41"},{"body":{"nativeSrc":"834:505:41","nodeType":"YulBlock","src":"834:505:41","statements":[{"body":{"nativeSrc":"880:16:41","nodeType":"YulBlock","src":"880:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"889:1:41","nodeType":"YulLiteral","src":"889:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"892:1:41","nodeType":"YulLiteral","src":"892:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"882:6:41","nodeType":"YulIdentifier","src":"882:6:41"},"nativeSrc":"882:12:41","nodeType":"YulFunctionCall","src":"882:12:41"},"nativeSrc":"882:12:41","nodeType":"YulExpressionStatement","src":"882:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"855:7:41","nodeType":"YulIdentifier","src":"855:7:41"},{"name":"headStart","nativeSrc":"864:9:41","nodeType":"YulIdentifier","src":"864:9:41"}],"functionName":{"name":"sub","nativeSrc":"851:3:41","nodeType":"YulIdentifier","src":"851:3:41"},"nativeSrc":"851:23:41","nodeType":"YulFunctionCall","src":"851:23:41"},{"kind":"number","nativeSrc":"876:2:41","nodeType":"YulLiteral","src":"876:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"847:3:41","nodeType":"YulIdentifier","src":"847:3:41"},"nativeSrc":"847:32:41","nodeType":"YulFunctionCall","src":"847:32:41"},"nativeSrc":"844:52:41","nodeType":"YulIf","src":"844:52:41"},{"nativeSrc":"905:36:41","nodeType":"YulVariableDeclaration","src":"905:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"931:9:41","nodeType":"YulIdentifier","src":"931:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"918:12:41","nodeType":"YulIdentifier","src":"918:12:41"},"nativeSrc":"918:23:41","nodeType":"YulFunctionCall","src":"918:23:41"},"variables":[{"name":"value","nativeSrc":"909:5:41","nodeType":"YulTypedName","src":"909:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"975:5:41","nodeType":"YulIdentifier","src":"975:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"950:24:41","nodeType":"YulIdentifier","src":"950:24:41"},"nativeSrc":"950:31:41","nodeType":"YulFunctionCall","src":"950:31:41"},"nativeSrc":"950:31:41","nodeType":"YulExpressionStatement","src":"950:31:41"},{"nativeSrc":"990:15:41","nodeType":"YulAssignment","src":"990:15:41","value":{"name":"value","nativeSrc":"1000:5:41","nodeType":"YulIdentifier","src":"1000:5:41"},"variableNames":[{"name":"value0","nativeSrc":"990:6:41","nodeType":"YulIdentifier","src":"990:6:41"}]},{"nativeSrc":"1014:46:41","nodeType":"YulVariableDeclaration","src":"1014:46:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1045:9:41","nodeType":"YulIdentifier","src":"1045:9:41"},{"kind":"number","nativeSrc":"1056:2:41","nodeType":"YulLiteral","src":"1056:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1041:3:41","nodeType":"YulIdentifier","src":"1041:3:41"},"nativeSrc":"1041:18:41","nodeType":"YulFunctionCall","src":"1041:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"1028:12:41","nodeType":"YulIdentifier","src":"1028:12:41"},"nativeSrc":"1028:32:41","nodeType":"YulFunctionCall","src":"1028:32:41"},"variables":[{"name":"offset","nativeSrc":"1018:6:41","nodeType":"YulTypedName","src":"1018:6:41","type":""}]},{"body":{"nativeSrc":"1103:16:41","nodeType":"YulBlock","src":"1103:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1112:1:41","nodeType":"YulLiteral","src":"1112:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1115:1:41","nodeType":"YulLiteral","src":"1115:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1105:6:41","nodeType":"YulIdentifier","src":"1105:6:41"},"nativeSrc":"1105:12:41","nodeType":"YulFunctionCall","src":"1105:12:41"},"nativeSrc":"1105:12:41","nodeType":"YulExpressionStatement","src":"1105:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1075:6:41","nodeType":"YulIdentifier","src":"1075:6:41"},{"kind":"number","nativeSrc":"1083:18:41","nodeType":"YulLiteral","src":"1083:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1072:2:41","nodeType":"YulIdentifier","src":"1072:2:41"},"nativeSrc":"1072:30:41","nodeType":"YulFunctionCall","src":"1072:30:41"},"nativeSrc":"1069:50:41","nodeType":"YulIf","src":"1069:50:41"},{"nativeSrc":"1128:95:41","nodeType":"YulVariableDeclaration","src":"1128:95:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1195:9:41","nodeType":"YulIdentifier","src":"1195:9:41"},{"name":"offset","nativeSrc":"1206:6:41","nodeType":"YulIdentifier","src":"1206:6:41"}],"functionName":{"name":"add","nativeSrc":"1191:3:41","nodeType":"YulIdentifier","src":"1191:3:41"},"nativeSrc":"1191:22:41","nodeType":"YulFunctionCall","src":"1191:22:41"},{"name":"dataEnd","nativeSrc":"1215:7:41","nodeType":"YulIdentifier","src":"1215:7:41"}],"functionName":{"name":"abi_decode_array_bytes4_dyn_calldata","nativeSrc":"1154:36:41","nodeType":"YulIdentifier","src":"1154:36:41"},"nativeSrc":"1154:69:41","nodeType":"YulFunctionCall","src":"1154:69:41"},"variables":[{"name":"value1_1","nativeSrc":"1132:8:41","nodeType":"YulTypedName","src":"1132:8:41","type":""},{"name":"value2_1","nativeSrc":"1142:8:41","nodeType":"YulTypedName","src":"1142:8:41","type":""}]},{"nativeSrc":"1232:18:41","nodeType":"YulAssignment","src":"1232:18:41","value":{"name":"value1_1","nativeSrc":"1242:8:41","nodeType":"YulIdentifier","src":"1242:8:41"},"variableNames":[{"name":"value1","nativeSrc":"1232:6:41","nodeType":"YulIdentifier","src":"1232:6:41"}]},{"nativeSrc":"1259:18:41","nodeType":"YulAssignment","src":"1259:18:41","value":{"name":"value2_1","nativeSrc":"1269:8:41","nodeType":"YulIdentifier","src":"1269:8:41"},"variableNames":[{"name":"value2","nativeSrc":"1259:6:41","nodeType":"YulIdentifier","src":"1259:6:41"}]},{"nativeSrc":"1286:47:41","nodeType":"YulAssignment","src":"1286:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1318:9:41","nodeType":"YulIdentifier","src":"1318:9:41"},{"kind":"number","nativeSrc":"1329:2:41","nodeType":"YulLiteral","src":"1329:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1314:3:41","nodeType":"YulIdentifier","src":"1314:3:41"},"nativeSrc":"1314:18:41","nodeType":"YulFunctionCall","src":"1314:18:41"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"1296:17:41","nodeType":"YulIdentifier","src":"1296:17:41"},"nativeSrc":"1296:37:41","nodeType":"YulFunctionCall","src":"1296:37:41"},"variableNames":[{"name":"value3","nativeSrc":"1286:6:41","nodeType":"YulIdentifier","src":"1286:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_array$_t_bytes4_$dyn_calldata_ptrt_uint64","nativeSrc":"697:642:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"776:9:41","nodeType":"YulTypedName","src":"776:9:41","type":""},{"name":"dataEnd","nativeSrc":"787:7:41","nodeType":"YulTypedName","src":"787:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"799:6:41","nodeType":"YulTypedName","src":"799:6:41","type":""},{"name":"value1","nativeSrc":"807:6:41","nodeType":"YulTypedName","src":"807:6:41","type":""},{"name":"value2","nativeSrc":"815:6:41","nodeType":"YulTypedName","src":"815:6:41","type":""},{"name":"value3","nativeSrc":"823:6:41","nodeType":"YulTypedName","src":"823:6:41","type":""}],"src":"697:642:41"},{"body":{"nativeSrc":"1413:115:41","nodeType":"YulBlock","src":"1413:115:41","statements":[{"body":{"nativeSrc":"1459:16:41","nodeType":"YulBlock","src":"1459:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1468:1:41","nodeType":"YulLiteral","src":"1468:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1471:1:41","nodeType":"YulLiteral","src":"1471:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1461:6:41","nodeType":"YulIdentifier","src":"1461:6:41"},"nativeSrc":"1461:12:41","nodeType":"YulFunctionCall","src":"1461:12:41"},"nativeSrc":"1461:12:41","nodeType":"YulExpressionStatement","src":"1461:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1434:7:41","nodeType":"YulIdentifier","src":"1434:7:41"},{"name":"headStart","nativeSrc":"1443:9:41","nodeType":"YulIdentifier","src":"1443:9:41"}],"functionName":{"name":"sub","nativeSrc":"1430:3:41","nodeType":"YulIdentifier","src":"1430:3:41"},"nativeSrc":"1430:23:41","nodeType":"YulFunctionCall","src":"1430:23:41"},{"kind":"number","nativeSrc":"1455:2:41","nodeType":"YulLiteral","src":"1455:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1426:3:41","nodeType":"YulIdentifier","src":"1426:3:41"},"nativeSrc":"1426:32:41","nodeType":"YulFunctionCall","src":"1426:32:41"},"nativeSrc":"1423:52:41","nodeType":"YulIf","src":"1423:52:41"},{"nativeSrc":"1484:38:41","nodeType":"YulAssignment","src":"1484:38:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1512:9:41","nodeType":"YulIdentifier","src":"1512:9:41"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"1494:17:41","nodeType":"YulIdentifier","src":"1494:17:41"},"nativeSrc":"1494:28:41","nodeType":"YulFunctionCall","src":"1494:28:41"},"variableNames":[{"name":"value0","nativeSrc":"1484:6:41","nodeType":"YulIdentifier","src":"1484:6:41"}]}]},"name":"abi_decode_tuple_t_uint64","nativeSrc":"1344:184:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1379:9:41","nodeType":"YulTypedName","src":"1379:9:41","type":""},{"name":"dataEnd","nativeSrc":"1390:7:41","nodeType":"YulTypedName","src":"1390:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1402:6:41","nodeType":"YulTypedName","src":"1402:6:41","type":""}],"src":"1344:184:41"},{"body":{"nativeSrc":"1632:101:41","nodeType":"YulBlock","src":"1632:101:41","statements":[{"nativeSrc":"1642:26:41","nodeType":"YulAssignment","src":"1642:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1654:9:41","nodeType":"YulIdentifier","src":"1654:9:41"},{"kind":"number","nativeSrc":"1665:2:41","nodeType":"YulLiteral","src":"1665:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1650:3:41","nodeType":"YulIdentifier","src":"1650:3:41"},"nativeSrc":"1650:18:41","nodeType":"YulFunctionCall","src":"1650:18:41"},"variableNames":[{"name":"tail","nativeSrc":"1642:4:41","nodeType":"YulIdentifier","src":"1642:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1684:9:41","nodeType":"YulIdentifier","src":"1684:9:41"},{"arguments":[{"name":"value0","nativeSrc":"1699:6:41","nodeType":"YulIdentifier","src":"1699:6:41"},{"kind":"number","nativeSrc":"1707:18:41","nodeType":"YulLiteral","src":"1707:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"1695:3:41","nodeType":"YulIdentifier","src":"1695:3:41"},"nativeSrc":"1695:31:41","nodeType":"YulFunctionCall","src":"1695:31:41"}],"functionName":{"name":"mstore","nativeSrc":"1677:6:41","nodeType":"YulIdentifier","src":"1677:6:41"},"nativeSrc":"1677:50:41","nodeType":"YulFunctionCall","src":"1677:50:41"},"nativeSrc":"1677:50:41","nodeType":"YulExpressionStatement","src":"1677:50:41"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"1533:200:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1601:9:41","nodeType":"YulTypedName","src":"1601:9:41","type":""},{"name":"value0","nativeSrc":"1612:6:41","nodeType":"YulTypedName","src":"1612:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1623:4:41","nodeType":"YulTypedName","src":"1623:4:41","type":""}],"src":"1533:200:41"},{"body":{"nativeSrc":"1837:93:41","nodeType":"YulBlock","src":"1837:93:41","statements":[{"nativeSrc":"1847:26:41","nodeType":"YulAssignment","src":"1847:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1859:9:41","nodeType":"YulIdentifier","src":"1859:9:41"},{"kind":"number","nativeSrc":"1870:2:41","nodeType":"YulLiteral","src":"1870:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1855:3:41","nodeType":"YulIdentifier","src":"1855:3:41"},"nativeSrc":"1855:18:41","nodeType":"YulFunctionCall","src":"1855:18:41"},"variableNames":[{"name":"tail","nativeSrc":"1847:4:41","nodeType":"YulIdentifier","src":"1847:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1889:9:41","nodeType":"YulIdentifier","src":"1889:9:41"},{"arguments":[{"name":"value0","nativeSrc":"1904:6:41","nodeType":"YulIdentifier","src":"1904:6:41"},{"kind":"number","nativeSrc":"1912:10:41","nodeType":"YulLiteral","src":"1912:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1900:3:41","nodeType":"YulIdentifier","src":"1900:3:41"},"nativeSrc":"1900:23:41","nodeType":"YulFunctionCall","src":"1900:23:41"}],"functionName":{"name":"mstore","nativeSrc":"1882:6:41","nodeType":"YulIdentifier","src":"1882:6:41"},"nativeSrc":"1882:42:41","nodeType":"YulFunctionCall","src":"1882:42:41"},"nativeSrc":"1882:42:41","nodeType":"YulExpressionStatement","src":"1882:42:41"}]},"name":"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed","nativeSrc":"1738:192:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1806:9:41","nodeType":"YulTypedName","src":"1806:9:41","type":""},{"name":"value0","nativeSrc":"1817:6:41","nodeType":"YulTypedName","src":"1817:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1828:4:41","nodeType":"YulTypedName","src":"1828:4:41","type":""}],"src":"1738:192:41"},{"body":{"nativeSrc":"2019:332:41","nodeType":"YulBlock","src":"2019:332:41","statements":[{"body":{"nativeSrc":"2065:16:41","nodeType":"YulBlock","src":"2065:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2074:1:41","nodeType":"YulLiteral","src":"2074:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2077:1:41","nodeType":"YulLiteral","src":"2077:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2067:6:41","nodeType":"YulIdentifier","src":"2067:6:41"},"nativeSrc":"2067:12:41","nodeType":"YulFunctionCall","src":"2067:12:41"},"nativeSrc":"2067:12:41","nodeType":"YulExpressionStatement","src":"2067:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2040:7:41","nodeType":"YulIdentifier","src":"2040:7:41"},{"name":"headStart","nativeSrc":"2049:9:41","nodeType":"YulIdentifier","src":"2049:9:41"}],"functionName":{"name":"sub","nativeSrc":"2036:3:41","nodeType":"YulIdentifier","src":"2036:3:41"},"nativeSrc":"2036:23:41","nodeType":"YulFunctionCall","src":"2036:23:41"},{"kind":"number","nativeSrc":"2061:2:41","nodeType":"YulLiteral","src":"2061:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2032:3:41","nodeType":"YulIdentifier","src":"2032:3:41"},"nativeSrc":"2032:32:41","nodeType":"YulFunctionCall","src":"2032:32:41"},"nativeSrc":"2029:52:41","nodeType":"YulIf","src":"2029:52:41"},{"nativeSrc":"2090:36:41","nodeType":"YulVariableDeclaration","src":"2090:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"2116:9:41","nodeType":"YulIdentifier","src":"2116:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"2103:12:41","nodeType":"YulIdentifier","src":"2103:12:41"},"nativeSrc":"2103:23:41","nodeType":"YulFunctionCall","src":"2103:23:41"},"variables":[{"name":"value","nativeSrc":"2094:5:41","nodeType":"YulTypedName","src":"2094:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2160:5:41","nodeType":"YulIdentifier","src":"2160:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2135:24:41","nodeType":"YulIdentifier","src":"2135:24:41"},"nativeSrc":"2135:31:41","nodeType":"YulFunctionCall","src":"2135:31:41"},"nativeSrc":"2135:31:41","nodeType":"YulExpressionStatement","src":"2135:31:41"},{"nativeSrc":"2175:15:41","nodeType":"YulAssignment","src":"2175:15:41","value":{"name":"value","nativeSrc":"2185:5:41","nodeType":"YulIdentifier","src":"2185:5:41"},"variableNames":[{"name":"value0","nativeSrc":"2175:6:41","nodeType":"YulIdentifier","src":"2175:6:41"}]},{"nativeSrc":"2199:47:41","nodeType":"YulVariableDeclaration","src":"2199:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2231:9:41","nodeType":"YulIdentifier","src":"2231:9:41"},{"kind":"number","nativeSrc":"2242:2:41","nodeType":"YulLiteral","src":"2242:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2227:3:41","nodeType":"YulIdentifier","src":"2227:3:41"},"nativeSrc":"2227:18:41","nodeType":"YulFunctionCall","src":"2227:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"2214:12:41","nodeType":"YulIdentifier","src":"2214:12:41"},"nativeSrc":"2214:32:41","nodeType":"YulFunctionCall","src":"2214:32:41"},"variables":[{"name":"value_1","nativeSrc":"2203:7:41","nodeType":"YulTypedName","src":"2203:7:41","type":""}]},{"body":{"nativeSrc":"2303:16:41","nodeType":"YulBlock","src":"2303:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2312:1:41","nodeType":"YulLiteral","src":"2312:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2315:1:41","nodeType":"YulLiteral","src":"2315:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2305:6:41","nodeType":"YulIdentifier","src":"2305:6:41"},"nativeSrc":"2305:12:41","nodeType":"YulFunctionCall","src":"2305:12:41"},"nativeSrc":"2305:12:41","nodeType":"YulExpressionStatement","src":"2305:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2268:7:41","nodeType":"YulIdentifier","src":"2268:7:41"},{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2291:7:41","nodeType":"YulIdentifier","src":"2291:7:41"}],"functionName":{"name":"iszero","nativeSrc":"2284:6:41","nodeType":"YulIdentifier","src":"2284:6:41"},"nativeSrc":"2284:15:41","nodeType":"YulFunctionCall","src":"2284:15:41"}],"functionName":{"name":"iszero","nativeSrc":"2277:6:41","nodeType":"YulIdentifier","src":"2277:6:41"},"nativeSrc":"2277:23:41","nodeType":"YulFunctionCall","src":"2277:23:41"}],"functionName":{"name":"eq","nativeSrc":"2265:2:41","nodeType":"YulIdentifier","src":"2265:2:41"},"nativeSrc":"2265:36:41","nodeType":"YulFunctionCall","src":"2265:36:41"}],"functionName":{"name":"iszero","nativeSrc":"2258:6:41","nodeType":"YulIdentifier","src":"2258:6:41"},"nativeSrc":"2258:44:41","nodeType":"YulFunctionCall","src":"2258:44:41"},"nativeSrc":"2255:64:41","nodeType":"YulIf","src":"2255:64:41"},{"nativeSrc":"2328:17:41","nodeType":"YulAssignment","src":"2328:17:41","value":{"name":"value_1","nativeSrc":"2338:7:41","nodeType":"YulIdentifier","src":"2338:7:41"},"variableNames":[{"name":"value1","nativeSrc":"2328:6:41","nodeType":"YulIdentifier","src":"2328:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_bool","nativeSrc":"1935:416:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1977:9:41","nodeType":"YulTypedName","src":"1977:9:41","type":""},{"name":"dataEnd","nativeSrc":"1988:7:41","nodeType":"YulTypedName","src":"1988:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2000:6:41","nodeType":"YulTypedName","src":"2000:6:41","type":""},{"name":"value1","nativeSrc":"2008:6:41","nodeType":"YulTypedName","src":"2008:6:41","type":""}],"src":"1935:416:41"},{"body":{"nativeSrc":"2443:301:41","nodeType":"YulBlock","src":"2443:301:41","statements":[{"body":{"nativeSrc":"2489:16:41","nodeType":"YulBlock","src":"2489:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2498:1:41","nodeType":"YulLiteral","src":"2498:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2501:1:41","nodeType":"YulLiteral","src":"2501:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2491:6:41","nodeType":"YulIdentifier","src":"2491:6:41"},"nativeSrc":"2491:12:41","nodeType":"YulFunctionCall","src":"2491:12:41"},"nativeSrc":"2491:12:41","nodeType":"YulExpressionStatement","src":"2491:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2464:7:41","nodeType":"YulIdentifier","src":"2464:7:41"},{"name":"headStart","nativeSrc":"2473:9:41","nodeType":"YulIdentifier","src":"2473:9:41"}],"functionName":{"name":"sub","nativeSrc":"2460:3:41","nodeType":"YulIdentifier","src":"2460:3:41"},"nativeSrc":"2460:23:41","nodeType":"YulFunctionCall","src":"2460:23:41"},{"kind":"number","nativeSrc":"2485:2:41","nodeType":"YulLiteral","src":"2485:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2456:3:41","nodeType":"YulIdentifier","src":"2456:3:41"},"nativeSrc":"2456:32:41","nodeType":"YulFunctionCall","src":"2456:32:41"},"nativeSrc":"2453:52:41","nodeType":"YulIf","src":"2453:52:41"},{"nativeSrc":"2514:36:41","nodeType":"YulVariableDeclaration","src":"2514:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"2540:9:41","nodeType":"YulIdentifier","src":"2540:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"2527:12:41","nodeType":"YulIdentifier","src":"2527:12:41"},"nativeSrc":"2527:23:41","nodeType":"YulFunctionCall","src":"2527:23:41"},"variables":[{"name":"value","nativeSrc":"2518:5:41","nodeType":"YulTypedName","src":"2518:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2584:5:41","nodeType":"YulIdentifier","src":"2584:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2559:24:41","nodeType":"YulIdentifier","src":"2559:24:41"},"nativeSrc":"2559:31:41","nodeType":"YulFunctionCall","src":"2559:31:41"},"nativeSrc":"2559:31:41","nodeType":"YulExpressionStatement","src":"2559:31:41"},{"nativeSrc":"2599:15:41","nodeType":"YulAssignment","src":"2599:15:41","value":{"name":"value","nativeSrc":"2609:5:41","nodeType":"YulIdentifier","src":"2609:5:41"},"variableNames":[{"name":"value0","nativeSrc":"2599:6:41","nodeType":"YulIdentifier","src":"2599:6:41"}]},{"nativeSrc":"2623:47:41","nodeType":"YulVariableDeclaration","src":"2623:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2655:9:41","nodeType":"YulIdentifier","src":"2655:9:41"},{"kind":"number","nativeSrc":"2666:2:41","nodeType":"YulLiteral","src":"2666:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2651:3:41","nodeType":"YulIdentifier","src":"2651:3:41"},"nativeSrc":"2651:18:41","nodeType":"YulFunctionCall","src":"2651:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"2638:12:41","nodeType":"YulIdentifier","src":"2638:12:41"},"nativeSrc":"2638:32:41","nodeType":"YulFunctionCall","src":"2638:32:41"},"variables":[{"name":"value_1","nativeSrc":"2627:7:41","nodeType":"YulTypedName","src":"2627:7:41","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"2704:7:41","nodeType":"YulIdentifier","src":"2704:7:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2679:24:41","nodeType":"YulIdentifier","src":"2679:24:41"},"nativeSrc":"2679:33:41","nodeType":"YulFunctionCall","src":"2679:33:41"},"nativeSrc":"2679:33:41","nodeType":"YulExpressionStatement","src":"2679:33:41"},{"nativeSrc":"2721:17:41","nodeType":"YulAssignment","src":"2721:17:41","value":{"name":"value_1","nativeSrc":"2731:7:41","nodeType":"YulIdentifier","src":"2731:7:41"},"variableNames":[{"name":"value1","nativeSrc":"2721:6:41","nodeType":"YulIdentifier","src":"2721:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"2356:388:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2401:9:41","nodeType":"YulTypedName","src":"2401:9:41","type":""},{"name":"dataEnd","nativeSrc":"2412:7:41","nodeType":"YulTypedName","src":"2412:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2424:6:41","nodeType":"YulTypedName","src":"2424:6:41","type":""},{"name":"value1","nativeSrc":"2432:6:41","nodeType":"YulTypedName","src":"2432:6:41","type":""}],"src":"2356:388:41"},{"body":{"nativeSrc":"2892:490:41","nodeType":"YulBlock","src":"2892:490:41","statements":[{"body":{"nativeSrc":"2938:16:41","nodeType":"YulBlock","src":"2938:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2947:1:41","nodeType":"YulLiteral","src":"2947:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2950:1:41","nodeType":"YulLiteral","src":"2950:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2940:6:41","nodeType":"YulIdentifier","src":"2940:6:41"},"nativeSrc":"2940:12:41","nodeType":"YulFunctionCall","src":"2940:12:41"},"nativeSrc":"2940:12:41","nodeType":"YulExpressionStatement","src":"2940:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2913:7:41","nodeType":"YulIdentifier","src":"2913:7:41"},{"name":"headStart","nativeSrc":"2922:9:41","nodeType":"YulIdentifier","src":"2922:9:41"}],"functionName":{"name":"sub","nativeSrc":"2909:3:41","nodeType":"YulIdentifier","src":"2909:3:41"},"nativeSrc":"2909:23:41","nodeType":"YulFunctionCall","src":"2909:23:41"},{"kind":"number","nativeSrc":"2934:2:41","nodeType":"YulLiteral","src":"2934:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"2905:3:41","nodeType":"YulIdentifier","src":"2905:3:41"},"nativeSrc":"2905:32:41","nodeType":"YulFunctionCall","src":"2905:32:41"},"nativeSrc":"2902:52:41","nodeType":"YulIf","src":"2902:52:41"},{"nativeSrc":"2963:37:41","nodeType":"YulVariableDeclaration","src":"2963:37:41","value":{"arguments":[{"name":"headStart","nativeSrc":"2990:9:41","nodeType":"YulIdentifier","src":"2990:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"2977:12:41","nodeType":"YulIdentifier","src":"2977:12:41"},"nativeSrc":"2977:23:41","nodeType":"YulFunctionCall","src":"2977:23:41"},"variables":[{"name":"offset","nativeSrc":"2967:6:41","nodeType":"YulTypedName","src":"2967:6:41","type":""}]},{"body":{"nativeSrc":"3043:16:41","nodeType":"YulBlock","src":"3043:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3052:1:41","nodeType":"YulLiteral","src":"3052:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3055:1:41","nodeType":"YulLiteral","src":"3055:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3045:6:41","nodeType":"YulIdentifier","src":"3045:6:41"},"nativeSrc":"3045:12:41","nodeType":"YulFunctionCall","src":"3045:12:41"},"nativeSrc":"3045:12:41","nodeType":"YulExpressionStatement","src":"3045:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"3015:6:41","nodeType":"YulIdentifier","src":"3015:6:41"},{"kind":"number","nativeSrc":"3023:18:41","nodeType":"YulLiteral","src":"3023:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3012:2:41","nodeType":"YulIdentifier","src":"3012:2:41"},"nativeSrc":"3012:30:41","nodeType":"YulFunctionCall","src":"3012:30:41"},"nativeSrc":"3009:50:41","nodeType":"YulIf","src":"3009:50:41"},{"nativeSrc":"3068:32:41","nodeType":"YulVariableDeclaration","src":"3068:32:41","value":{"arguments":[{"name":"headStart","nativeSrc":"3082:9:41","nodeType":"YulIdentifier","src":"3082:9:41"},{"name":"offset","nativeSrc":"3093:6:41","nodeType":"YulIdentifier","src":"3093:6:41"}],"functionName":{"name":"add","nativeSrc":"3078:3:41","nodeType":"YulIdentifier","src":"3078:3:41"},"nativeSrc":"3078:22:41","nodeType":"YulFunctionCall","src":"3078:22:41"},"variables":[{"name":"_1","nativeSrc":"3072:2:41","nodeType":"YulTypedName","src":"3072:2:41","type":""}]},{"body":{"nativeSrc":"3139:16:41","nodeType":"YulBlock","src":"3139:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3148:1:41","nodeType":"YulLiteral","src":"3148:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3151:1:41","nodeType":"YulLiteral","src":"3151:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3141:6:41","nodeType":"YulIdentifier","src":"3141:6:41"},"nativeSrc":"3141:12:41","nodeType":"YulFunctionCall","src":"3141:12:41"},"nativeSrc":"3141:12:41","nodeType":"YulExpressionStatement","src":"3141:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3120:7:41","nodeType":"YulIdentifier","src":"3120:7:41"},{"name":"_1","nativeSrc":"3129:2:41","nodeType":"YulIdentifier","src":"3129:2:41"}],"functionName":{"name":"sub","nativeSrc":"3116:3:41","nodeType":"YulIdentifier","src":"3116:3:41"},"nativeSrc":"3116:16:41","nodeType":"YulFunctionCall","src":"3116:16:41"},{"kind":"number","nativeSrc":"3134:3:41","nodeType":"YulLiteral","src":"3134:3:41","type":"","value":"288"}],"functionName":{"name":"slt","nativeSrc":"3112:3:41","nodeType":"YulIdentifier","src":"3112:3:41"},"nativeSrc":"3112:26:41","nodeType":"YulFunctionCall","src":"3112:26:41"},"nativeSrc":"3109:46:41","nodeType":"YulIf","src":"3109:46:41"},{"nativeSrc":"3164:12:41","nodeType":"YulAssignment","src":"3164:12:41","value":{"name":"_1","nativeSrc":"3174:2:41","nodeType":"YulIdentifier","src":"3174:2:41"},"variableNames":[{"name":"value0","nativeSrc":"3164:6:41","nodeType":"YulIdentifier","src":"3164:6:41"}]},{"nativeSrc":"3185:14:41","nodeType":"YulVariableDeclaration","src":"3185:14:41","value":{"kind":"number","nativeSrc":"3198:1:41","nodeType":"YulLiteral","src":"3198:1:41","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3189:5:41","nodeType":"YulTypedName","src":"3189:5:41","type":""}]},{"nativeSrc":"3208:41:41","nodeType":"YulAssignment","src":"3208:41:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3234:9:41","nodeType":"YulIdentifier","src":"3234:9:41"},{"kind":"number","nativeSrc":"3245:2:41","nodeType":"YulLiteral","src":"3245:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3230:3:41","nodeType":"YulIdentifier","src":"3230:3:41"},"nativeSrc":"3230:18:41","nodeType":"YulFunctionCall","src":"3230:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"3217:12:41","nodeType":"YulIdentifier","src":"3217:12:41"},"nativeSrc":"3217:32:41","nodeType":"YulFunctionCall","src":"3217:32:41"},"variableNames":[{"name":"value","nativeSrc":"3208:5:41","nodeType":"YulIdentifier","src":"3208:5:41"}]},{"nativeSrc":"3258:15:41","nodeType":"YulAssignment","src":"3258:15:41","value":{"name":"value","nativeSrc":"3268:5:41","nodeType":"YulIdentifier","src":"3268:5:41"},"variableNames":[{"name":"value1","nativeSrc":"3258:6:41","nodeType":"YulIdentifier","src":"3258:6:41"}]},{"nativeSrc":"3282:16:41","nodeType":"YulVariableDeclaration","src":"3282:16:41","value":{"kind":"number","nativeSrc":"3297:1:41","nodeType":"YulLiteral","src":"3297:1:41","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"3286:7:41","nodeType":"YulTypedName","src":"3286:7:41","type":""}]},{"nativeSrc":"3307:43:41","nodeType":"YulAssignment","src":"3307:43:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3335:9:41","nodeType":"YulIdentifier","src":"3335:9:41"},{"kind":"number","nativeSrc":"3346:2:41","nodeType":"YulLiteral","src":"3346:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3331:3:41","nodeType":"YulIdentifier","src":"3331:3:41"},"nativeSrc":"3331:18:41","nodeType":"YulFunctionCall","src":"3331:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"3318:12:41","nodeType":"YulIdentifier","src":"3318:12:41"},"nativeSrc":"3318:32:41","nodeType":"YulFunctionCall","src":"3318:32:41"},"variableNames":[{"name":"value_1","nativeSrc":"3307:7:41","nodeType":"YulIdentifier","src":"3307:7:41"}]},{"nativeSrc":"3359:17:41","nodeType":"YulAssignment","src":"3359:17:41","value":{"name":"value_1","nativeSrc":"3369:7:41","nodeType":"YulIdentifier","src":"3369:7:41"},"variableNames":[{"name":"value2","nativeSrc":"3359:6:41","nodeType":"YulIdentifier","src":"3359:6:41"}]}]},"name":"abi_decode_tuple_t_struct$_PackedUserOperation_$1054_calldata_ptrt_bytes32t_uint256","nativeSrc":"2749:633:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2842:9:41","nodeType":"YulTypedName","src":"2842:9:41","type":""},{"name":"dataEnd","nativeSrc":"2853:7:41","nodeType":"YulTypedName","src":"2853:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2865:6:41","nodeType":"YulTypedName","src":"2865:6:41","type":""},{"name":"value1","nativeSrc":"2873:6:41","nodeType":"YulTypedName","src":"2873:6:41","type":""},{"name":"value2","nativeSrc":"2881:6:41","nodeType":"YulTypedName","src":"2881:6:41","type":""}],"src":"2749:633:41"},{"body":{"nativeSrc":"3488:76:41","nodeType":"YulBlock","src":"3488:76:41","statements":[{"nativeSrc":"3498:26:41","nodeType":"YulAssignment","src":"3498:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"3510:9:41","nodeType":"YulIdentifier","src":"3510:9:41"},{"kind":"number","nativeSrc":"3521:2:41","nodeType":"YulLiteral","src":"3521:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3506:3:41","nodeType":"YulIdentifier","src":"3506:3:41"},"nativeSrc":"3506:18:41","nodeType":"YulFunctionCall","src":"3506:18:41"},"variableNames":[{"name":"tail","nativeSrc":"3498:4:41","nodeType":"YulIdentifier","src":"3498:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3540:9:41","nodeType":"YulIdentifier","src":"3540:9:41"},{"name":"value0","nativeSrc":"3551:6:41","nodeType":"YulIdentifier","src":"3551:6:41"}],"functionName":{"name":"mstore","nativeSrc":"3533:6:41","nodeType":"YulIdentifier","src":"3533:6:41"},"nativeSrc":"3533:25:41","nodeType":"YulFunctionCall","src":"3533:25:41"},"nativeSrc":"3533:25:41","nodeType":"YulExpressionStatement","src":"3533:25:41"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"3387:177:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3457:9:41","nodeType":"YulTypedName","src":"3457:9:41","type":""},{"name":"value0","nativeSrc":"3468:6:41","nodeType":"YulTypedName","src":"3468:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3479:4:41","nodeType":"YulTypedName","src":"3479:4:41","type":""}],"src":"3387:177:41"},{"body":{"nativeSrc":"3641:275:41","nodeType":"YulBlock","src":"3641:275:41","statements":[{"body":{"nativeSrc":"3690:16:41","nodeType":"YulBlock","src":"3690:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3699:1:41","nodeType":"YulLiteral","src":"3699:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3702:1:41","nodeType":"YulLiteral","src":"3702:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3692:6:41","nodeType":"YulIdentifier","src":"3692:6:41"},"nativeSrc":"3692:12:41","nodeType":"YulFunctionCall","src":"3692:12:41"},"nativeSrc":"3692:12:41","nodeType":"YulExpressionStatement","src":"3692:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"3669:6:41","nodeType":"YulIdentifier","src":"3669:6:41"},{"kind":"number","nativeSrc":"3677:4:41","nodeType":"YulLiteral","src":"3677:4:41","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"3665:3:41","nodeType":"YulIdentifier","src":"3665:3:41"},"nativeSrc":"3665:17:41","nodeType":"YulFunctionCall","src":"3665:17:41"},{"name":"end","nativeSrc":"3684:3:41","nodeType":"YulIdentifier","src":"3684:3:41"}],"functionName":{"name":"slt","nativeSrc":"3661:3:41","nodeType":"YulIdentifier","src":"3661:3:41"},"nativeSrc":"3661:27:41","nodeType":"YulFunctionCall","src":"3661:27:41"}],"functionName":{"name":"iszero","nativeSrc":"3654:6:41","nodeType":"YulIdentifier","src":"3654:6:41"},"nativeSrc":"3654:35:41","nodeType":"YulFunctionCall","src":"3654:35:41"},"nativeSrc":"3651:55:41","nodeType":"YulIf","src":"3651:55:41"},{"nativeSrc":"3715:30:41","nodeType":"YulAssignment","src":"3715:30:41","value":{"arguments":[{"name":"offset","nativeSrc":"3738:6:41","nodeType":"YulIdentifier","src":"3738:6:41"}],"functionName":{"name":"calldataload","nativeSrc":"3725:12:41","nodeType":"YulIdentifier","src":"3725:12:41"},"nativeSrc":"3725:20:41","nodeType":"YulFunctionCall","src":"3725:20:41"},"variableNames":[{"name":"length","nativeSrc":"3715:6:41","nodeType":"YulIdentifier","src":"3715:6:41"}]},{"body":{"nativeSrc":"3788:16:41","nodeType":"YulBlock","src":"3788:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3797:1:41","nodeType":"YulLiteral","src":"3797:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3800:1:41","nodeType":"YulLiteral","src":"3800:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3790:6:41","nodeType":"YulIdentifier","src":"3790:6:41"},"nativeSrc":"3790:12:41","nodeType":"YulFunctionCall","src":"3790:12:41"},"nativeSrc":"3790:12:41","nodeType":"YulExpressionStatement","src":"3790:12:41"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"3760:6:41","nodeType":"YulIdentifier","src":"3760:6:41"},{"kind":"number","nativeSrc":"3768:18:41","nodeType":"YulLiteral","src":"3768:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3757:2:41","nodeType":"YulIdentifier","src":"3757:2:41"},"nativeSrc":"3757:30:41","nodeType":"YulFunctionCall","src":"3757:30:41"},"nativeSrc":"3754:50:41","nodeType":"YulIf","src":"3754:50:41"},{"nativeSrc":"3813:29:41","nodeType":"YulAssignment","src":"3813:29:41","value":{"arguments":[{"name":"offset","nativeSrc":"3829:6:41","nodeType":"YulIdentifier","src":"3829:6:41"},{"kind":"number","nativeSrc":"3837:4:41","nodeType":"YulLiteral","src":"3837:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3825:3:41","nodeType":"YulIdentifier","src":"3825:3:41"},"nativeSrc":"3825:17:41","nodeType":"YulFunctionCall","src":"3825:17:41"},"variableNames":[{"name":"arrayPos","nativeSrc":"3813:8:41","nodeType":"YulIdentifier","src":"3813:8:41"}]},{"body":{"nativeSrc":"3894:16:41","nodeType":"YulBlock","src":"3894:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3903:1:41","nodeType":"YulLiteral","src":"3903:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3906:1:41","nodeType":"YulLiteral","src":"3906:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3896:6:41","nodeType":"YulIdentifier","src":"3896:6:41"},"nativeSrc":"3896:12:41","nodeType":"YulFunctionCall","src":"3896:12:41"},"nativeSrc":"3896:12:41","nodeType":"YulExpressionStatement","src":"3896:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"3865:6:41","nodeType":"YulIdentifier","src":"3865:6:41"},{"name":"length","nativeSrc":"3873:6:41","nodeType":"YulIdentifier","src":"3873:6:41"}],"functionName":{"name":"add","nativeSrc":"3861:3:41","nodeType":"YulIdentifier","src":"3861:3:41"},"nativeSrc":"3861:19:41","nodeType":"YulFunctionCall","src":"3861:19:41"},{"kind":"number","nativeSrc":"3882:4:41","nodeType":"YulLiteral","src":"3882:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3857:3:41","nodeType":"YulIdentifier","src":"3857:3:41"},"nativeSrc":"3857:30:41","nodeType":"YulFunctionCall","src":"3857:30:41"},{"name":"end","nativeSrc":"3889:3:41","nodeType":"YulIdentifier","src":"3889:3:41"}],"functionName":{"name":"gt","nativeSrc":"3854:2:41","nodeType":"YulIdentifier","src":"3854:2:41"},"nativeSrc":"3854:39:41","nodeType":"YulFunctionCall","src":"3854:39:41"},"nativeSrc":"3851:59:41","nodeType":"YulIf","src":"3851:59:41"}]},"name":"abi_decode_bytes_calldata","nativeSrc":"3569:347:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"3604:6:41","nodeType":"YulTypedName","src":"3604:6:41","type":""},{"name":"end","nativeSrc":"3612:3:41","nodeType":"YulTypedName","src":"3612:3:41","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"3620:8:41","nodeType":"YulTypedName","src":"3620:8:41","type":""},{"name":"length","nativeSrc":"3630:6:41","nodeType":"YulTypedName","src":"3630:6:41","type":""}],"src":"3569:347:41"},{"body":{"nativeSrc":"4027:438:41","nodeType":"YulBlock","src":"4027:438:41","statements":[{"body":{"nativeSrc":"4073:16:41","nodeType":"YulBlock","src":"4073:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4082:1:41","nodeType":"YulLiteral","src":"4082:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"4085:1:41","nodeType":"YulLiteral","src":"4085:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4075:6:41","nodeType":"YulIdentifier","src":"4075:6:41"},"nativeSrc":"4075:12:41","nodeType":"YulFunctionCall","src":"4075:12:41"},"nativeSrc":"4075:12:41","nodeType":"YulExpressionStatement","src":"4075:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4048:7:41","nodeType":"YulIdentifier","src":"4048:7:41"},{"name":"headStart","nativeSrc":"4057:9:41","nodeType":"YulIdentifier","src":"4057:9:41"}],"functionName":{"name":"sub","nativeSrc":"4044:3:41","nodeType":"YulIdentifier","src":"4044:3:41"},"nativeSrc":"4044:23:41","nodeType":"YulFunctionCall","src":"4044:23:41"},{"kind":"number","nativeSrc":"4069:2:41","nodeType":"YulLiteral","src":"4069:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4040:3:41","nodeType":"YulIdentifier","src":"4040:3:41"},"nativeSrc":"4040:32:41","nodeType":"YulFunctionCall","src":"4040:32:41"},"nativeSrc":"4037:52:41","nodeType":"YulIf","src":"4037:52:41"},{"nativeSrc":"4098:36:41","nodeType":"YulVariableDeclaration","src":"4098:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"4124:9:41","nodeType":"YulIdentifier","src":"4124:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"4111:12:41","nodeType":"YulIdentifier","src":"4111:12:41"},"nativeSrc":"4111:23:41","nodeType":"YulFunctionCall","src":"4111:23:41"},"variables":[{"name":"value","nativeSrc":"4102:5:41","nodeType":"YulTypedName","src":"4102:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4168:5:41","nodeType":"YulIdentifier","src":"4168:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4143:24:41","nodeType":"YulIdentifier","src":"4143:24:41"},"nativeSrc":"4143:31:41","nodeType":"YulFunctionCall","src":"4143:31:41"},"nativeSrc":"4143:31:41","nodeType":"YulExpressionStatement","src":"4143:31:41"},{"nativeSrc":"4183:15:41","nodeType":"YulAssignment","src":"4183:15:41","value":{"name":"value","nativeSrc":"4193:5:41","nodeType":"YulIdentifier","src":"4193:5:41"},"variableNames":[{"name":"value0","nativeSrc":"4183:6:41","nodeType":"YulIdentifier","src":"4183:6:41"}]},{"nativeSrc":"4207:46:41","nodeType":"YulVariableDeclaration","src":"4207:46:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4238:9:41","nodeType":"YulIdentifier","src":"4238:9:41"},{"kind":"number","nativeSrc":"4249:2:41","nodeType":"YulLiteral","src":"4249:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4234:3:41","nodeType":"YulIdentifier","src":"4234:3:41"},"nativeSrc":"4234:18:41","nodeType":"YulFunctionCall","src":"4234:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"4221:12:41","nodeType":"YulIdentifier","src":"4221:12:41"},"nativeSrc":"4221:32:41","nodeType":"YulFunctionCall","src":"4221:32:41"},"variables":[{"name":"offset","nativeSrc":"4211:6:41","nodeType":"YulTypedName","src":"4211:6:41","type":""}]},{"body":{"nativeSrc":"4296:16:41","nodeType":"YulBlock","src":"4296:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4305:1:41","nodeType":"YulLiteral","src":"4305:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"4308:1:41","nodeType":"YulLiteral","src":"4308:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4298:6:41","nodeType":"YulIdentifier","src":"4298:6:41"},"nativeSrc":"4298:12:41","nodeType":"YulFunctionCall","src":"4298:12:41"},"nativeSrc":"4298:12:41","nodeType":"YulExpressionStatement","src":"4298:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"4268:6:41","nodeType":"YulIdentifier","src":"4268:6:41"},{"kind":"number","nativeSrc":"4276:18:41","nodeType":"YulLiteral","src":"4276:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4265:2:41","nodeType":"YulIdentifier","src":"4265:2:41"},"nativeSrc":"4265:30:41","nodeType":"YulFunctionCall","src":"4265:30:41"},"nativeSrc":"4262:50:41","nodeType":"YulIf","src":"4262:50:41"},{"nativeSrc":"4321:84:41","nodeType":"YulVariableDeclaration","src":"4321:84:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4377:9:41","nodeType":"YulIdentifier","src":"4377:9:41"},{"name":"offset","nativeSrc":"4388:6:41","nodeType":"YulIdentifier","src":"4388:6:41"}],"functionName":{"name":"add","nativeSrc":"4373:3:41","nodeType":"YulIdentifier","src":"4373:3:41"},"nativeSrc":"4373:22:41","nodeType":"YulFunctionCall","src":"4373:22:41"},{"name":"dataEnd","nativeSrc":"4397:7:41","nodeType":"YulIdentifier","src":"4397:7:41"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"4347:25:41","nodeType":"YulIdentifier","src":"4347:25:41"},"nativeSrc":"4347:58:41","nodeType":"YulFunctionCall","src":"4347:58:41"},"variables":[{"name":"value1_1","nativeSrc":"4325:8:41","nodeType":"YulTypedName","src":"4325:8:41","type":""},{"name":"value2_1","nativeSrc":"4335:8:41","nodeType":"YulTypedName","src":"4335:8:41","type":""}]},{"nativeSrc":"4414:18:41","nodeType":"YulAssignment","src":"4414:18:41","value":{"name":"value1_1","nativeSrc":"4424:8:41","nodeType":"YulIdentifier","src":"4424:8:41"},"variableNames":[{"name":"value1","nativeSrc":"4414:6:41","nodeType":"YulIdentifier","src":"4414:6:41"}]},{"nativeSrc":"4441:18:41","nodeType":"YulAssignment","src":"4441:18:41","value":{"name":"value2_1","nativeSrc":"4451:8:41","nodeType":"YulIdentifier","src":"4451:8:41"},"variableNames":[{"name":"value2","nativeSrc":"4441:6:41","nodeType":"YulIdentifier","src":"4441:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptr","nativeSrc":"3921:544:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3977:9:41","nodeType":"YulTypedName","src":"3977:9:41","type":""},{"name":"dataEnd","nativeSrc":"3988:7:41","nodeType":"YulTypedName","src":"3988:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4000:6:41","nodeType":"YulTypedName","src":"4000:6:41","type":""},{"name":"value1","nativeSrc":"4008:6:41","nodeType":"YulTypedName","src":"4008:6:41","type":""},{"name":"value2","nativeSrc":"4016:6:41","nodeType":"YulTypedName","src":"4016:6:41","type":""}],"src":"3921:544:41"},{"body":{"nativeSrc":"4518:115:41","nodeType":"YulBlock","src":"4518:115:41","statements":[{"nativeSrc":"4528:29:41","nodeType":"YulAssignment","src":"4528:29:41","value":{"arguments":[{"name":"offset","nativeSrc":"4550:6:41","nodeType":"YulIdentifier","src":"4550:6:41"}],"functionName":{"name":"calldataload","nativeSrc":"4537:12:41","nodeType":"YulIdentifier","src":"4537:12:41"},"nativeSrc":"4537:20:41","nodeType":"YulFunctionCall","src":"4537:20:41"},"variableNames":[{"name":"value","nativeSrc":"4528:5:41","nodeType":"YulIdentifier","src":"4528:5:41"}]},{"body":{"nativeSrc":"4611:16:41","nodeType":"YulBlock","src":"4611:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4620:1:41","nodeType":"YulLiteral","src":"4620:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"4623:1:41","nodeType":"YulLiteral","src":"4623:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4613:6:41","nodeType":"YulIdentifier","src":"4613:6:41"},"nativeSrc":"4613:12:41","nodeType":"YulFunctionCall","src":"4613:12:41"},"nativeSrc":"4613:12:41","nodeType":"YulExpressionStatement","src":"4613:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4579:5:41","nodeType":"YulIdentifier","src":"4579:5:41"},{"arguments":[{"name":"value","nativeSrc":"4590:5:41","nodeType":"YulIdentifier","src":"4590:5:41"},{"kind":"number","nativeSrc":"4597:10:41","nodeType":"YulLiteral","src":"4597:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"4586:3:41","nodeType":"YulIdentifier","src":"4586:3:41"},"nativeSrc":"4586:22:41","nodeType":"YulFunctionCall","src":"4586:22:41"}],"functionName":{"name":"eq","nativeSrc":"4576:2:41","nodeType":"YulIdentifier","src":"4576:2:41"},"nativeSrc":"4576:33:41","nodeType":"YulFunctionCall","src":"4576:33:41"}],"functionName":{"name":"iszero","nativeSrc":"4569:6:41","nodeType":"YulIdentifier","src":"4569:6:41"},"nativeSrc":"4569:41:41","nodeType":"YulFunctionCall","src":"4569:41:41"},"nativeSrc":"4566:61:41","nodeType":"YulIf","src":"4566:61:41"}]},"name":"abi_decode_uint32","nativeSrc":"4470:163:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"4497:6:41","nodeType":"YulTypedName","src":"4497:6:41","type":""}],"returnVariables":[{"name":"value","nativeSrc":"4508:5:41","nodeType":"YulTypedName","src":"4508:5:41","type":""}],"src":"4470:163:41"},{"body":{"nativeSrc":"4740:289:41","nodeType":"YulBlock","src":"4740:289:41","statements":[{"body":{"nativeSrc":"4786:16:41","nodeType":"YulBlock","src":"4786:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4795:1:41","nodeType":"YulLiteral","src":"4795:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"4798:1:41","nodeType":"YulLiteral","src":"4798:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4788:6:41","nodeType":"YulIdentifier","src":"4788:6:41"},"nativeSrc":"4788:12:41","nodeType":"YulFunctionCall","src":"4788:12:41"},"nativeSrc":"4788:12:41","nodeType":"YulExpressionStatement","src":"4788:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4761:7:41","nodeType":"YulIdentifier","src":"4761:7:41"},{"name":"headStart","nativeSrc":"4770:9:41","nodeType":"YulIdentifier","src":"4770:9:41"}],"functionName":{"name":"sub","nativeSrc":"4757:3:41","nodeType":"YulIdentifier","src":"4757:3:41"},"nativeSrc":"4757:23:41","nodeType":"YulFunctionCall","src":"4757:23:41"},{"kind":"number","nativeSrc":"4782:2:41","nodeType":"YulLiteral","src":"4782:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"4753:3:41","nodeType":"YulIdentifier","src":"4753:3:41"},"nativeSrc":"4753:32:41","nodeType":"YulFunctionCall","src":"4753:32:41"},"nativeSrc":"4750:52:41","nodeType":"YulIf","src":"4750:52:41"},{"nativeSrc":"4811:38:41","nodeType":"YulAssignment","src":"4811:38:41","value":{"arguments":[{"name":"headStart","nativeSrc":"4839:9:41","nodeType":"YulIdentifier","src":"4839:9:41"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"4821:17:41","nodeType":"YulIdentifier","src":"4821:17:41"},"nativeSrc":"4821:28:41","nodeType":"YulFunctionCall","src":"4821:28:41"},"variableNames":[{"name":"value0","nativeSrc":"4811:6:41","nodeType":"YulIdentifier","src":"4811:6:41"}]},{"nativeSrc":"4858:45:41","nodeType":"YulVariableDeclaration","src":"4858:45:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4888:9:41","nodeType":"YulIdentifier","src":"4888:9:41"},{"kind":"number","nativeSrc":"4899:2:41","nodeType":"YulLiteral","src":"4899:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4884:3:41","nodeType":"YulIdentifier","src":"4884:3:41"},"nativeSrc":"4884:18:41","nodeType":"YulFunctionCall","src":"4884:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"4871:12:41","nodeType":"YulIdentifier","src":"4871:12:41"},"nativeSrc":"4871:32:41","nodeType":"YulFunctionCall","src":"4871:32:41"},"variables":[{"name":"value","nativeSrc":"4862:5:41","nodeType":"YulTypedName","src":"4862:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4937:5:41","nodeType":"YulIdentifier","src":"4937:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4912:24:41","nodeType":"YulIdentifier","src":"4912:24:41"},"nativeSrc":"4912:31:41","nodeType":"YulFunctionCall","src":"4912:31:41"},"nativeSrc":"4912:31:41","nodeType":"YulExpressionStatement","src":"4912:31:41"},{"nativeSrc":"4952:15:41","nodeType":"YulAssignment","src":"4952:15:41","value":{"name":"value","nativeSrc":"4962:5:41","nodeType":"YulIdentifier","src":"4962:5:41"},"variableNames":[{"name":"value1","nativeSrc":"4952:6:41","nodeType":"YulIdentifier","src":"4952:6:41"}]},{"nativeSrc":"4976:47:41","nodeType":"YulAssignment","src":"4976:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5008:9:41","nodeType":"YulIdentifier","src":"5008:9:41"},{"kind":"number","nativeSrc":"5019:2:41","nodeType":"YulLiteral","src":"5019:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5004:3:41","nodeType":"YulIdentifier","src":"5004:3:41"},"nativeSrc":"5004:18:41","nodeType":"YulFunctionCall","src":"5004:18:41"}],"functionName":{"name":"abi_decode_uint32","nativeSrc":"4986:17:41","nodeType":"YulIdentifier","src":"4986:17:41"},"nativeSrc":"4986:37:41","nodeType":"YulFunctionCall","src":"4986:37:41"},"variableNames":[{"name":"value2","nativeSrc":"4976:6:41","nodeType":"YulIdentifier","src":"4976:6:41"}]}]},"name":"abi_decode_tuple_t_uint64t_addresst_uint32","nativeSrc":"4638:391:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4690:9:41","nodeType":"YulTypedName","src":"4690:9:41","type":""},{"name":"dataEnd","nativeSrc":"4701:7:41","nodeType":"YulTypedName","src":"4701:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4713:6:41","nodeType":"YulTypedName","src":"4713:6:41","type":""},{"name":"value1","nativeSrc":"4721:6:41","nodeType":"YulTypedName","src":"4721:6:41","type":""},{"name":"value2","nativeSrc":"4729:6:41","nodeType":"YulTypedName","src":"4729:6:41","type":""}],"src":"4638:391:41"},{"body":{"nativeSrc":"5120:233:41","nodeType":"YulBlock","src":"5120:233:41","statements":[{"body":{"nativeSrc":"5166:16:41","nodeType":"YulBlock","src":"5166:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5175:1:41","nodeType":"YulLiteral","src":"5175:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"5178:1:41","nodeType":"YulLiteral","src":"5178:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5168:6:41","nodeType":"YulIdentifier","src":"5168:6:41"},"nativeSrc":"5168:12:41","nodeType":"YulFunctionCall","src":"5168:12:41"},"nativeSrc":"5168:12:41","nodeType":"YulExpressionStatement","src":"5168:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5141:7:41","nodeType":"YulIdentifier","src":"5141:7:41"},{"name":"headStart","nativeSrc":"5150:9:41","nodeType":"YulIdentifier","src":"5150:9:41"}],"functionName":{"name":"sub","nativeSrc":"5137:3:41","nodeType":"YulIdentifier","src":"5137:3:41"},"nativeSrc":"5137:23:41","nodeType":"YulFunctionCall","src":"5137:23:41"},{"kind":"number","nativeSrc":"5162:2:41","nodeType":"YulLiteral","src":"5162:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"5133:3:41","nodeType":"YulIdentifier","src":"5133:3:41"},"nativeSrc":"5133:32:41","nodeType":"YulFunctionCall","src":"5133:32:41"},"nativeSrc":"5130:52:41","nodeType":"YulIf","src":"5130:52:41"},{"nativeSrc":"5191:38:41","nodeType":"YulAssignment","src":"5191:38:41","value":{"arguments":[{"name":"headStart","nativeSrc":"5219:9:41","nodeType":"YulIdentifier","src":"5219:9:41"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"5201:17:41","nodeType":"YulIdentifier","src":"5201:17:41"},"nativeSrc":"5201:28:41","nodeType":"YulFunctionCall","src":"5201:28:41"},"variableNames":[{"name":"value0","nativeSrc":"5191:6:41","nodeType":"YulIdentifier","src":"5191:6:41"}]},{"nativeSrc":"5238:45:41","nodeType":"YulVariableDeclaration","src":"5238:45:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5268:9:41","nodeType":"YulIdentifier","src":"5268:9:41"},{"kind":"number","nativeSrc":"5279:2:41","nodeType":"YulLiteral","src":"5279:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5264:3:41","nodeType":"YulIdentifier","src":"5264:3:41"},"nativeSrc":"5264:18:41","nodeType":"YulFunctionCall","src":"5264:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"5251:12:41","nodeType":"YulIdentifier","src":"5251:12:41"},"nativeSrc":"5251:32:41","nodeType":"YulFunctionCall","src":"5251:32:41"},"variables":[{"name":"value","nativeSrc":"5242:5:41","nodeType":"YulTypedName","src":"5242:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5317:5:41","nodeType":"YulIdentifier","src":"5317:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"5292:24:41","nodeType":"YulIdentifier","src":"5292:24:41"},"nativeSrc":"5292:31:41","nodeType":"YulFunctionCall","src":"5292:31:41"},"nativeSrc":"5292:31:41","nodeType":"YulExpressionStatement","src":"5292:31:41"},{"nativeSrc":"5332:15:41","nodeType":"YulAssignment","src":"5332:15:41","value":{"name":"value","nativeSrc":"5342:5:41","nodeType":"YulIdentifier","src":"5342:5:41"},"variableNames":[{"name":"value1","nativeSrc":"5332:6:41","nodeType":"YulIdentifier","src":"5332:6:41"}]}]},"name":"abi_decode_tuple_t_uint64t_address","nativeSrc":"5034:319:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5078:9:41","nodeType":"YulTypedName","src":"5078:9:41","type":""},{"name":"dataEnd","nativeSrc":"5089:7:41","nodeType":"YulTypedName","src":"5089:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5101:6:41","nodeType":"YulTypedName","src":"5101:6:41","type":""},{"name":"value1","nativeSrc":"5109:6:41","nodeType":"YulTypedName","src":"5109:6:41","type":""}],"src":"5034:319:41"},{"body":{"nativeSrc":"5535:282:41","nodeType":"YulBlock","src":"5535:282:41","statements":[{"nativeSrc":"5545:27:41","nodeType":"YulAssignment","src":"5545:27:41","value":{"arguments":[{"name":"headStart","nativeSrc":"5557:9:41","nodeType":"YulIdentifier","src":"5557:9:41"},{"kind":"number","nativeSrc":"5568:3:41","nodeType":"YulLiteral","src":"5568:3:41","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"5553:3:41","nodeType":"YulIdentifier","src":"5553:3:41"},"nativeSrc":"5553:19:41","nodeType":"YulFunctionCall","src":"5553:19:41"},"variableNames":[{"name":"tail","nativeSrc":"5545:4:41","nodeType":"YulIdentifier","src":"5545:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5588:9:41","nodeType":"YulIdentifier","src":"5588:9:41"},{"arguments":[{"name":"value0","nativeSrc":"5603:6:41","nodeType":"YulIdentifier","src":"5603:6:41"},{"kind":"number","nativeSrc":"5611:14:41","nodeType":"YulLiteral","src":"5611:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"5599:3:41","nodeType":"YulIdentifier","src":"5599:3:41"},"nativeSrc":"5599:27:41","nodeType":"YulFunctionCall","src":"5599:27:41"}],"functionName":{"name":"mstore","nativeSrc":"5581:6:41","nodeType":"YulIdentifier","src":"5581:6:41"},"nativeSrc":"5581:46:41","nodeType":"YulFunctionCall","src":"5581:46:41"},"nativeSrc":"5581:46:41","nodeType":"YulExpressionStatement","src":"5581:46:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5647:9:41","nodeType":"YulIdentifier","src":"5647:9:41"},{"kind":"number","nativeSrc":"5658:2:41","nodeType":"YulLiteral","src":"5658:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5643:3:41","nodeType":"YulIdentifier","src":"5643:3:41"},"nativeSrc":"5643:18:41","nodeType":"YulFunctionCall","src":"5643:18:41"},{"arguments":[{"name":"value1","nativeSrc":"5667:6:41","nodeType":"YulIdentifier","src":"5667:6:41"},{"kind":"number","nativeSrc":"5675:10:41","nodeType":"YulLiteral","src":"5675:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"5663:3:41","nodeType":"YulIdentifier","src":"5663:3:41"},"nativeSrc":"5663:23:41","nodeType":"YulFunctionCall","src":"5663:23:41"}],"functionName":{"name":"mstore","nativeSrc":"5636:6:41","nodeType":"YulIdentifier","src":"5636:6:41"},"nativeSrc":"5636:51:41","nodeType":"YulFunctionCall","src":"5636:51:41"},"nativeSrc":"5636:51:41","nodeType":"YulExpressionStatement","src":"5636:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5707:9:41","nodeType":"YulIdentifier","src":"5707:9:41"},{"kind":"number","nativeSrc":"5718:2:41","nodeType":"YulLiteral","src":"5718:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5703:3:41","nodeType":"YulIdentifier","src":"5703:3:41"},"nativeSrc":"5703:18:41","nodeType":"YulFunctionCall","src":"5703:18:41"},{"arguments":[{"name":"value2","nativeSrc":"5727:6:41","nodeType":"YulIdentifier","src":"5727:6:41"},{"kind":"number","nativeSrc":"5735:10:41","nodeType":"YulLiteral","src":"5735:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"5723:3:41","nodeType":"YulIdentifier","src":"5723:3:41"},"nativeSrc":"5723:23:41","nodeType":"YulFunctionCall","src":"5723:23:41"}],"functionName":{"name":"mstore","nativeSrc":"5696:6:41","nodeType":"YulIdentifier","src":"5696:6:41"},"nativeSrc":"5696:51:41","nodeType":"YulFunctionCall","src":"5696:51:41"},"nativeSrc":"5696:51:41","nodeType":"YulExpressionStatement","src":"5696:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5767:9:41","nodeType":"YulIdentifier","src":"5767:9:41"},{"kind":"number","nativeSrc":"5778:2:41","nodeType":"YulLiteral","src":"5778:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5763:3:41","nodeType":"YulIdentifier","src":"5763:3:41"},"nativeSrc":"5763:18:41","nodeType":"YulFunctionCall","src":"5763:18:41"},{"arguments":[{"name":"value3","nativeSrc":"5787:6:41","nodeType":"YulIdentifier","src":"5787:6:41"},{"kind":"number","nativeSrc":"5795:14:41","nodeType":"YulLiteral","src":"5795:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"5783:3:41","nodeType":"YulIdentifier","src":"5783:3:41"},"nativeSrc":"5783:27:41","nodeType":"YulFunctionCall","src":"5783:27:41"}],"functionName":{"name":"mstore","nativeSrc":"5756:6:41","nodeType":"YulIdentifier","src":"5756:6:41"},"nativeSrc":"5756:55:41","nodeType":"YulFunctionCall","src":"5756:55:41"},"nativeSrc":"5756:55:41","nodeType":"YulExpressionStatement","src":"5756:55:41"}]},"name":"abi_encode_tuple_t_uint48_t_uint32_t_uint32_t_uint48__to_t_uint48_t_uint32_t_uint32_t_uint48__fromStack_reversed","nativeSrc":"5358:459:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5480:9:41","nodeType":"YulTypedName","src":"5480:9:41","type":""},{"name":"value3","nativeSrc":"5491:6:41","nodeType":"YulTypedName","src":"5491:6:41","type":""},{"name":"value2","nativeSrc":"5499:6:41","nodeType":"YulTypedName","src":"5499:6:41","type":""},{"name":"value1","nativeSrc":"5507:6:41","nodeType":"YulTypedName","src":"5507:6:41","type":""},{"name":"value0","nativeSrc":"5515:6:41","nodeType":"YulTypedName","src":"5515:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5526:4:41","nodeType":"YulTypedName","src":"5526:4:41","type":""}],"src":"5358:459:41"},{"body":{"nativeSrc":"5907:171:41","nodeType":"YulBlock","src":"5907:171:41","statements":[{"body":{"nativeSrc":"5953:16:41","nodeType":"YulBlock","src":"5953:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5962:1:41","nodeType":"YulLiteral","src":"5962:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"5965:1:41","nodeType":"YulLiteral","src":"5965:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5955:6:41","nodeType":"YulIdentifier","src":"5955:6:41"},"nativeSrc":"5955:12:41","nodeType":"YulFunctionCall","src":"5955:12:41"},"nativeSrc":"5955:12:41","nodeType":"YulExpressionStatement","src":"5955:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5928:7:41","nodeType":"YulIdentifier","src":"5928:7:41"},{"name":"headStart","nativeSrc":"5937:9:41","nodeType":"YulIdentifier","src":"5937:9:41"}],"functionName":{"name":"sub","nativeSrc":"5924:3:41","nodeType":"YulIdentifier","src":"5924:3:41"},"nativeSrc":"5924:23:41","nodeType":"YulFunctionCall","src":"5924:23:41"},{"kind":"number","nativeSrc":"5949:2:41","nodeType":"YulLiteral","src":"5949:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"5920:3:41","nodeType":"YulIdentifier","src":"5920:3:41"},"nativeSrc":"5920:32:41","nodeType":"YulFunctionCall","src":"5920:32:41"},"nativeSrc":"5917:52:41","nodeType":"YulIf","src":"5917:52:41"},{"nativeSrc":"5978:38:41","nodeType":"YulAssignment","src":"5978:38:41","value":{"arguments":[{"name":"headStart","nativeSrc":"6006:9:41","nodeType":"YulIdentifier","src":"6006:9:41"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"5988:17:41","nodeType":"YulIdentifier","src":"5988:17:41"},"nativeSrc":"5988:28:41","nodeType":"YulFunctionCall","src":"5988:28:41"},"variableNames":[{"name":"value0","nativeSrc":"5978:6:41","nodeType":"YulIdentifier","src":"5978:6:41"}]},{"nativeSrc":"6025:47:41","nodeType":"YulAssignment","src":"6025:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6057:9:41","nodeType":"YulIdentifier","src":"6057:9:41"},{"kind":"number","nativeSrc":"6068:2:41","nodeType":"YulLiteral","src":"6068:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6053:3:41","nodeType":"YulIdentifier","src":"6053:3:41"},"nativeSrc":"6053:18:41","nodeType":"YulFunctionCall","src":"6053:18:41"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"6035:17:41","nodeType":"YulIdentifier","src":"6035:17:41"},"nativeSrc":"6035:37:41","nodeType":"YulFunctionCall","src":"6035:37:41"},"variableNames":[{"name":"value1","nativeSrc":"6025:6:41","nodeType":"YulIdentifier","src":"6025:6:41"}]}]},"name":"abi_decode_tuple_t_uint64t_uint64","nativeSrc":"5822:256:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5865:9:41","nodeType":"YulTypedName","src":"5865:9:41","type":""},{"name":"dataEnd","nativeSrc":"5876:7:41","nodeType":"YulTypedName","src":"5876:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5888:6:41","nodeType":"YulTypedName","src":"5888:6:41","type":""},{"name":"value1","nativeSrc":"5896:6:41","nodeType":"YulTypedName","src":"5896:6:41","type":""}],"src":"5822:256:41"},{"body":{"nativeSrc":"6153:156:41","nodeType":"YulBlock","src":"6153:156:41","statements":[{"body":{"nativeSrc":"6199:16:41","nodeType":"YulBlock","src":"6199:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6208:1:41","nodeType":"YulLiteral","src":"6208:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"6211:1:41","nodeType":"YulLiteral","src":"6211:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6201:6:41","nodeType":"YulIdentifier","src":"6201:6:41"},"nativeSrc":"6201:12:41","nodeType":"YulFunctionCall","src":"6201:12:41"},"nativeSrc":"6201:12:41","nodeType":"YulExpressionStatement","src":"6201:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6174:7:41","nodeType":"YulIdentifier","src":"6174:7:41"},{"name":"headStart","nativeSrc":"6183:9:41","nodeType":"YulIdentifier","src":"6183:9:41"}],"functionName":{"name":"sub","nativeSrc":"6170:3:41","nodeType":"YulIdentifier","src":"6170:3:41"},"nativeSrc":"6170:23:41","nodeType":"YulFunctionCall","src":"6170:23:41"},{"kind":"number","nativeSrc":"6195:2:41","nodeType":"YulLiteral","src":"6195:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"6166:3:41","nodeType":"YulIdentifier","src":"6166:3:41"},"nativeSrc":"6166:32:41","nodeType":"YulFunctionCall","src":"6166:32:41"},"nativeSrc":"6163:52:41","nodeType":"YulIf","src":"6163:52:41"},{"nativeSrc":"6224:14:41","nodeType":"YulVariableDeclaration","src":"6224:14:41","value":{"kind":"number","nativeSrc":"6237:1:41","nodeType":"YulLiteral","src":"6237:1:41","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"6228:5:41","nodeType":"YulTypedName","src":"6228:5:41","type":""}]},{"nativeSrc":"6247:32:41","nodeType":"YulAssignment","src":"6247:32:41","value":{"arguments":[{"name":"headStart","nativeSrc":"6269:9:41","nodeType":"YulIdentifier","src":"6269:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"6256:12:41","nodeType":"YulIdentifier","src":"6256:12:41"},"nativeSrc":"6256:23:41","nodeType":"YulFunctionCall","src":"6256:23:41"},"variableNames":[{"name":"value","nativeSrc":"6247:5:41","nodeType":"YulIdentifier","src":"6247:5:41"}]},{"nativeSrc":"6288:15:41","nodeType":"YulAssignment","src":"6288:15:41","value":{"name":"value","nativeSrc":"6298:5:41","nodeType":"YulIdentifier","src":"6298:5:41"},"variableNames":[{"name":"value0","nativeSrc":"6288:6:41","nodeType":"YulIdentifier","src":"6288:6:41"}]}]},"name":"abi_decode_tuple_t_bytes32","nativeSrc":"6083:226:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6119:9:41","nodeType":"YulTypedName","src":"6119:9:41","type":""},{"name":"dataEnd","nativeSrc":"6130:7:41","nodeType":"YulTypedName","src":"6130:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6142:6:41","nodeType":"YulTypedName","src":"6142:6:41","type":""}],"src":"6083:226:41"},{"body":{"nativeSrc":"6413:97:41","nodeType":"YulBlock","src":"6413:97:41","statements":[{"nativeSrc":"6423:26:41","nodeType":"YulAssignment","src":"6423:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"6435:9:41","nodeType":"YulIdentifier","src":"6435:9:41"},{"kind":"number","nativeSrc":"6446:2:41","nodeType":"YulLiteral","src":"6446:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6431:3:41","nodeType":"YulIdentifier","src":"6431:3:41"},"nativeSrc":"6431:18:41","nodeType":"YulFunctionCall","src":"6431:18:41"},"variableNames":[{"name":"tail","nativeSrc":"6423:4:41","nodeType":"YulIdentifier","src":"6423:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6465:9:41","nodeType":"YulIdentifier","src":"6465:9:41"},{"arguments":[{"name":"value0","nativeSrc":"6480:6:41","nodeType":"YulIdentifier","src":"6480:6:41"},{"kind":"number","nativeSrc":"6488:14:41","nodeType":"YulLiteral","src":"6488:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"6476:3:41","nodeType":"YulIdentifier","src":"6476:3:41"},"nativeSrc":"6476:27:41","nodeType":"YulFunctionCall","src":"6476:27:41"}],"functionName":{"name":"mstore","nativeSrc":"6458:6:41","nodeType":"YulIdentifier","src":"6458:6:41"},"nativeSrc":"6458:46:41","nodeType":"YulFunctionCall","src":"6458:46:41"},"nativeSrc":"6458:46:41","nodeType":"YulExpressionStatement","src":"6458:46:41"}]},"name":"abi_encode_tuple_t_uint48__to_t_uint48__fromStack_reversed","nativeSrc":"6314:196:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6382:9:41","nodeType":"YulTypedName","src":"6382:9:41","type":""},{"name":"value0","nativeSrc":"6393:6:41","nodeType":"YulTypedName","src":"6393:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6404:4:41","nodeType":"YulTypedName","src":"6404:4:41","type":""}],"src":"6314:196:41"},{"body":{"nativeSrc":"6585:177:41","nodeType":"YulBlock","src":"6585:177:41","statements":[{"body":{"nativeSrc":"6631:16:41","nodeType":"YulBlock","src":"6631:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6640:1:41","nodeType":"YulLiteral","src":"6640:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"6643:1:41","nodeType":"YulLiteral","src":"6643:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6633:6:41","nodeType":"YulIdentifier","src":"6633:6:41"},"nativeSrc":"6633:12:41","nodeType":"YulFunctionCall","src":"6633:12:41"},"nativeSrc":"6633:12:41","nodeType":"YulExpressionStatement","src":"6633:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6606:7:41","nodeType":"YulIdentifier","src":"6606:7:41"},{"name":"headStart","nativeSrc":"6615:9:41","nodeType":"YulIdentifier","src":"6615:9:41"}],"functionName":{"name":"sub","nativeSrc":"6602:3:41","nodeType":"YulIdentifier","src":"6602:3:41"},"nativeSrc":"6602:23:41","nodeType":"YulFunctionCall","src":"6602:23:41"},{"kind":"number","nativeSrc":"6627:2:41","nodeType":"YulLiteral","src":"6627:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"6598:3:41","nodeType":"YulIdentifier","src":"6598:3:41"},"nativeSrc":"6598:32:41","nodeType":"YulFunctionCall","src":"6598:32:41"},"nativeSrc":"6595:52:41","nodeType":"YulIf","src":"6595:52:41"},{"nativeSrc":"6656:36:41","nodeType":"YulVariableDeclaration","src":"6656:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"6682:9:41","nodeType":"YulIdentifier","src":"6682:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"6669:12:41","nodeType":"YulIdentifier","src":"6669:12:41"},"nativeSrc":"6669:23:41","nodeType":"YulFunctionCall","src":"6669:23:41"},"variables":[{"name":"value","nativeSrc":"6660:5:41","nodeType":"YulTypedName","src":"6660:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6726:5:41","nodeType":"YulIdentifier","src":"6726:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6701:24:41","nodeType":"YulIdentifier","src":"6701:24:41"},"nativeSrc":"6701:31:41","nodeType":"YulFunctionCall","src":"6701:31:41"},"nativeSrc":"6701:31:41","nodeType":"YulExpressionStatement","src":"6701:31:41"},{"nativeSrc":"6741:15:41","nodeType":"YulAssignment","src":"6741:15:41","value":{"name":"value","nativeSrc":"6751:5:41","nodeType":"YulIdentifier","src":"6751:5:41"},"variableNames":[{"name":"value0","nativeSrc":"6741:6:41","nodeType":"YulIdentifier","src":"6741:6:41"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"6515:247:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6551:9:41","nodeType":"YulTypedName","src":"6551:9:41","type":""},{"name":"dataEnd","nativeSrc":"6562:7:41","nodeType":"YulTypedName","src":"6562:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6574:6:41","nodeType":"YulTypedName","src":"6574:6:41","type":""}],"src":"6515:247:41"},{"body":{"nativeSrc":"6862:280:41","nodeType":"YulBlock","src":"6862:280:41","statements":[{"body":{"nativeSrc":"6908:16:41","nodeType":"YulBlock","src":"6908:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6917:1:41","nodeType":"YulLiteral","src":"6917:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"6920:1:41","nodeType":"YulLiteral","src":"6920:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6910:6:41","nodeType":"YulIdentifier","src":"6910:6:41"},"nativeSrc":"6910:12:41","nodeType":"YulFunctionCall","src":"6910:12:41"},"nativeSrc":"6910:12:41","nodeType":"YulExpressionStatement","src":"6910:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6883:7:41","nodeType":"YulIdentifier","src":"6883:7:41"},{"name":"headStart","nativeSrc":"6892:9:41","nodeType":"YulIdentifier","src":"6892:9:41"}],"functionName":{"name":"sub","nativeSrc":"6879:3:41","nodeType":"YulIdentifier","src":"6879:3:41"},"nativeSrc":"6879:23:41","nodeType":"YulFunctionCall","src":"6879:23:41"},{"kind":"number","nativeSrc":"6904:2:41","nodeType":"YulLiteral","src":"6904:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6875:3:41","nodeType":"YulIdentifier","src":"6875:3:41"},"nativeSrc":"6875:32:41","nodeType":"YulFunctionCall","src":"6875:32:41"},"nativeSrc":"6872:52:41","nodeType":"YulIf","src":"6872:52:41"},{"nativeSrc":"6933:36:41","nodeType":"YulVariableDeclaration","src":"6933:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"6959:9:41","nodeType":"YulIdentifier","src":"6959:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"6946:12:41","nodeType":"YulIdentifier","src":"6946:12:41"},"nativeSrc":"6946:23:41","nodeType":"YulFunctionCall","src":"6946:23:41"},"variables":[{"name":"value","nativeSrc":"6937:5:41","nodeType":"YulTypedName","src":"6937:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7003:5:41","nodeType":"YulIdentifier","src":"7003:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6978:24:41","nodeType":"YulIdentifier","src":"6978:24:41"},"nativeSrc":"6978:31:41","nodeType":"YulFunctionCall","src":"6978:31:41"},"nativeSrc":"6978:31:41","nodeType":"YulExpressionStatement","src":"6978:31:41"},{"nativeSrc":"7018:15:41","nodeType":"YulAssignment","src":"7018:15:41","value":{"name":"value","nativeSrc":"7028:5:41","nodeType":"YulIdentifier","src":"7028:5:41"},"variableNames":[{"name":"value0","nativeSrc":"7018:6:41","nodeType":"YulIdentifier","src":"7018:6:41"}]},{"nativeSrc":"7042:16:41","nodeType":"YulVariableDeclaration","src":"7042:16:41","value":{"kind":"number","nativeSrc":"7057:1:41","nodeType":"YulLiteral","src":"7057:1:41","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"7046:7:41","nodeType":"YulTypedName","src":"7046:7:41","type":""}]},{"nativeSrc":"7067:43:41","nodeType":"YulAssignment","src":"7067:43:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7095:9:41","nodeType":"YulIdentifier","src":"7095:9:41"},{"kind":"number","nativeSrc":"7106:2:41","nodeType":"YulLiteral","src":"7106:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7091:3:41","nodeType":"YulIdentifier","src":"7091:3:41"},"nativeSrc":"7091:18:41","nodeType":"YulFunctionCall","src":"7091:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"7078:12:41","nodeType":"YulIdentifier","src":"7078:12:41"},"nativeSrc":"7078:32:41","nodeType":"YulFunctionCall","src":"7078:32:41"},"variableNames":[{"name":"value_1","nativeSrc":"7067:7:41","nodeType":"YulIdentifier","src":"7067:7:41"}]},{"nativeSrc":"7119:17:41","nodeType":"YulAssignment","src":"7119:17:41","value":{"name":"value_1","nativeSrc":"7129:7:41","nodeType":"YulIdentifier","src":"7129:7:41"},"variableNames":[{"name":"value1","nativeSrc":"7119:6:41","nodeType":"YulIdentifier","src":"7119:6:41"}]}]},"name":"abi_decode_tuple_t_address_payablet_uint256","nativeSrc":"6767:375:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6820:9:41","nodeType":"YulTypedName","src":"6820:9:41","type":""},{"name":"dataEnd","nativeSrc":"6831:7:41","nodeType":"YulTypedName","src":"6831:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6843:6:41","nodeType":"YulTypedName","src":"6843:6:41","type":""},{"name":"value1","nativeSrc":"6851:6:41","nodeType":"YulTypedName","src":"6851:6:41","type":""}],"src":"6767:375:41"},{"body":{"nativeSrc":"7191:87:41","nodeType":"YulBlock","src":"7191:87:41","statements":[{"body":{"nativeSrc":"7256:16:41","nodeType":"YulBlock","src":"7256:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7265:1:41","nodeType":"YulLiteral","src":"7265:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"7268:1:41","nodeType":"YulLiteral","src":"7268:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7258:6:41","nodeType":"YulIdentifier","src":"7258:6:41"},"nativeSrc":"7258:12:41","nodeType":"YulFunctionCall","src":"7258:12:41"},"nativeSrc":"7258:12:41","nodeType":"YulExpressionStatement","src":"7258:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7214:5:41","nodeType":"YulIdentifier","src":"7214:5:41"},{"arguments":[{"name":"value","nativeSrc":"7225:5:41","nodeType":"YulIdentifier","src":"7225:5:41"},{"arguments":[{"kind":"number","nativeSrc":"7236:3:41","nodeType":"YulLiteral","src":"7236:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"7241:10:41","nodeType":"YulLiteral","src":"7241:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"7232:3:41","nodeType":"YulIdentifier","src":"7232:3:41"},"nativeSrc":"7232:20:41","nodeType":"YulFunctionCall","src":"7232:20:41"}],"functionName":{"name":"and","nativeSrc":"7221:3:41","nodeType":"YulIdentifier","src":"7221:3:41"},"nativeSrc":"7221:32:41","nodeType":"YulFunctionCall","src":"7221:32:41"}],"functionName":{"name":"eq","nativeSrc":"7211:2:41","nodeType":"YulIdentifier","src":"7211:2:41"},"nativeSrc":"7211:43:41","nodeType":"YulFunctionCall","src":"7211:43:41"}],"functionName":{"name":"iszero","nativeSrc":"7204:6:41","nodeType":"YulIdentifier","src":"7204:6:41"},"nativeSrc":"7204:51:41","nodeType":"YulFunctionCall","src":"7204:51:41"},"nativeSrc":"7201:71:41","nodeType":"YulIf","src":"7201:71:41"}]},"name":"validator_revert_bytes4","nativeSrc":"7147:131:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"7180:5:41","nodeType":"YulTypedName","src":"7180:5:41","type":""}],"src":"7147:131:41"},{"body":{"nativeSrc":"7369:300:41","nodeType":"YulBlock","src":"7369:300:41","statements":[{"body":{"nativeSrc":"7415:16:41","nodeType":"YulBlock","src":"7415:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7424:1:41","nodeType":"YulLiteral","src":"7424:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"7427:1:41","nodeType":"YulLiteral","src":"7427:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7417:6:41","nodeType":"YulIdentifier","src":"7417:6:41"},"nativeSrc":"7417:12:41","nodeType":"YulFunctionCall","src":"7417:12:41"},"nativeSrc":"7417:12:41","nodeType":"YulExpressionStatement","src":"7417:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7390:7:41","nodeType":"YulIdentifier","src":"7390:7:41"},{"name":"headStart","nativeSrc":"7399:9:41","nodeType":"YulIdentifier","src":"7399:9:41"}],"functionName":{"name":"sub","nativeSrc":"7386:3:41","nodeType":"YulIdentifier","src":"7386:3:41"},"nativeSrc":"7386:23:41","nodeType":"YulFunctionCall","src":"7386:23:41"},{"kind":"number","nativeSrc":"7411:2:41","nodeType":"YulLiteral","src":"7411:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"7382:3:41","nodeType":"YulIdentifier","src":"7382:3:41"},"nativeSrc":"7382:32:41","nodeType":"YulFunctionCall","src":"7382:32:41"},"nativeSrc":"7379:52:41","nodeType":"YulIf","src":"7379:52:41"},{"nativeSrc":"7440:36:41","nodeType":"YulVariableDeclaration","src":"7440:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"7466:9:41","nodeType":"YulIdentifier","src":"7466:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"7453:12:41","nodeType":"YulIdentifier","src":"7453:12:41"},"nativeSrc":"7453:23:41","nodeType":"YulFunctionCall","src":"7453:23:41"},"variables":[{"name":"value","nativeSrc":"7444:5:41","nodeType":"YulTypedName","src":"7444:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7510:5:41","nodeType":"YulIdentifier","src":"7510:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"7485:24:41","nodeType":"YulIdentifier","src":"7485:24:41"},"nativeSrc":"7485:31:41","nodeType":"YulFunctionCall","src":"7485:31:41"},"nativeSrc":"7485:31:41","nodeType":"YulExpressionStatement","src":"7485:31:41"},{"nativeSrc":"7525:15:41","nodeType":"YulAssignment","src":"7525:15:41","value":{"name":"value","nativeSrc":"7535:5:41","nodeType":"YulIdentifier","src":"7535:5:41"},"variableNames":[{"name":"value0","nativeSrc":"7525:6:41","nodeType":"YulIdentifier","src":"7525:6:41"}]},{"nativeSrc":"7549:47:41","nodeType":"YulVariableDeclaration","src":"7549:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7581:9:41","nodeType":"YulIdentifier","src":"7581:9:41"},{"kind":"number","nativeSrc":"7592:2:41","nodeType":"YulLiteral","src":"7592:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7577:3:41","nodeType":"YulIdentifier","src":"7577:3:41"},"nativeSrc":"7577:18:41","nodeType":"YulFunctionCall","src":"7577:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"7564:12:41","nodeType":"YulIdentifier","src":"7564:12:41"},"nativeSrc":"7564:32:41","nodeType":"YulFunctionCall","src":"7564:32:41"},"variables":[{"name":"value_1","nativeSrc":"7553:7:41","nodeType":"YulTypedName","src":"7553:7:41","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"7629:7:41","nodeType":"YulIdentifier","src":"7629:7:41"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"7605:23:41","nodeType":"YulIdentifier","src":"7605:23:41"},"nativeSrc":"7605:32:41","nodeType":"YulFunctionCall","src":"7605:32:41"},"nativeSrc":"7605:32:41","nodeType":"YulExpressionStatement","src":"7605:32:41"},{"nativeSrc":"7646:17:41","nodeType":"YulAssignment","src":"7646:17:41","value":{"name":"value_1","nativeSrc":"7656:7:41","nodeType":"YulIdentifier","src":"7656:7:41"},"variableNames":[{"name":"value1","nativeSrc":"7646:6:41","nodeType":"YulIdentifier","src":"7646:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_bytes4","nativeSrc":"7283:386:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7327:9:41","nodeType":"YulTypedName","src":"7327:9:41","type":""},{"name":"dataEnd","nativeSrc":"7338:7:41","nodeType":"YulTypedName","src":"7338:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7350:6:41","nodeType":"YulTypedName","src":"7350:6:41","type":""},{"name":"value1","nativeSrc":"7358:6:41","nodeType":"YulTypedName","src":"7358:6:41","type":""}],"src":"7283:386:41"},{"body":{"nativeSrc":"7780:376:41","nodeType":"YulBlock","src":"7780:376:41","statements":[{"body":{"nativeSrc":"7826:16:41","nodeType":"YulBlock","src":"7826:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7835:1:41","nodeType":"YulLiteral","src":"7835:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"7838:1:41","nodeType":"YulLiteral","src":"7838:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7828:6:41","nodeType":"YulIdentifier","src":"7828:6:41"},"nativeSrc":"7828:12:41","nodeType":"YulFunctionCall","src":"7828:12:41"},"nativeSrc":"7828:12:41","nodeType":"YulExpressionStatement","src":"7828:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7801:7:41","nodeType":"YulIdentifier","src":"7801:7:41"},{"name":"headStart","nativeSrc":"7810:9:41","nodeType":"YulIdentifier","src":"7810:9:41"}],"functionName":{"name":"sub","nativeSrc":"7797:3:41","nodeType":"YulIdentifier","src":"7797:3:41"},"nativeSrc":"7797:23:41","nodeType":"YulFunctionCall","src":"7797:23:41"},{"kind":"number","nativeSrc":"7822:2:41","nodeType":"YulLiteral","src":"7822:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"7793:3:41","nodeType":"YulIdentifier","src":"7793:3:41"},"nativeSrc":"7793:32:41","nodeType":"YulFunctionCall","src":"7793:32:41"},"nativeSrc":"7790:52:41","nodeType":"YulIf","src":"7790:52:41"},{"nativeSrc":"7851:38:41","nodeType":"YulAssignment","src":"7851:38:41","value":{"arguments":[{"name":"headStart","nativeSrc":"7879:9:41","nodeType":"YulIdentifier","src":"7879:9:41"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"7861:17:41","nodeType":"YulIdentifier","src":"7861:17:41"},"nativeSrc":"7861:28:41","nodeType":"YulFunctionCall","src":"7861:28:41"},"variableNames":[{"name":"value0","nativeSrc":"7851:6:41","nodeType":"YulIdentifier","src":"7851:6:41"}]},{"nativeSrc":"7898:46:41","nodeType":"YulVariableDeclaration","src":"7898:46:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7929:9:41","nodeType":"YulIdentifier","src":"7929:9:41"},{"kind":"number","nativeSrc":"7940:2:41","nodeType":"YulLiteral","src":"7940:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7925:3:41","nodeType":"YulIdentifier","src":"7925:3:41"},"nativeSrc":"7925:18:41","nodeType":"YulFunctionCall","src":"7925:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"7912:12:41","nodeType":"YulIdentifier","src":"7912:12:41"},"nativeSrc":"7912:32:41","nodeType":"YulFunctionCall","src":"7912:32:41"},"variables":[{"name":"offset","nativeSrc":"7902:6:41","nodeType":"YulTypedName","src":"7902:6:41","type":""}]},{"body":{"nativeSrc":"7987:16:41","nodeType":"YulBlock","src":"7987:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7996:1:41","nodeType":"YulLiteral","src":"7996:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"7999:1:41","nodeType":"YulLiteral","src":"7999:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7989:6:41","nodeType":"YulIdentifier","src":"7989:6:41"},"nativeSrc":"7989:12:41","nodeType":"YulFunctionCall","src":"7989:12:41"},"nativeSrc":"7989:12:41","nodeType":"YulExpressionStatement","src":"7989:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"7959:6:41","nodeType":"YulIdentifier","src":"7959:6:41"},{"kind":"number","nativeSrc":"7967:18:41","nodeType":"YulLiteral","src":"7967:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7956:2:41","nodeType":"YulIdentifier","src":"7956:2:41"},"nativeSrc":"7956:30:41","nodeType":"YulFunctionCall","src":"7956:30:41"},"nativeSrc":"7953:50:41","nodeType":"YulIf","src":"7953:50:41"},{"nativeSrc":"8012:84:41","nodeType":"YulVariableDeclaration","src":"8012:84:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8068:9:41","nodeType":"YulIdentifier","src":"8068:9:41"},{"name":"offset","nativeSrc":"8079:6:41","nodeType":"YulIdentifier","src":"8079:6:41"}],"functionName":{"name":"add","nativeSrc":"8064:3:41","nodeType":"YulIdentifier","src":"8064:3:41"},"nativeSrc":"8064:22:41","nodeType":"YulFunctionCall","src":"8064:22:41"},{"name":"dataEnd","nativeSrc":"8088:7:41","nodeType":"YulIdentifier","src":"8088:7:41"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"8038:25:41","nodeType":"YulIdentifier","src":"8038:25:41"},"nativeSrc":"8038:58:41","nodeType":"YulFunctionCall","src":"8038:58:41"},"variables":[{"name":"value1_1","nativeSrc":"8016:8:41","nodeType":"YulTypedName","src":"8016:8:41","type":""},{"name":"value2_1","nativeSrc":"8026:8:41","nodeType":"YulTypedName","src":"8026:8:41","type":""}]},{"nativeSrc":"8105:18:41","nodeType":"YulAssignment","src":"8105:18:41","value":{"name":"value1_1","nativeSrc":"8115:8:41","nodeType":"YulIdentifier","src":"8115:8:41"},"variableNames":[{"name":"value1","nativeSrc":"8105:6:41","nodeType":"YulIdentifier","src":"8105:6:41"}]},{"nativeSrc":"8132:18:41","nodeType":"YulAssignment","src":"8132:18:41","value":{"name":"value2_1","nativeSrc":"8142:8:41","nodeType":"YulIdentifier","src":"8142:8:41"},"variableNames":[{"name":"value2","nativeSrc":"8132:6:41","nodeType":"YulIdentifier","src":"8132:6:41"}]}]},"name":"abi_decode_tuple_t_uint64t_string_calldata_ptr","nativeSrc":"7674:482:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7730:9:41","nodeType":"YulTypedName","src":"7730:9:41","type":""},{"name":"dataEnd","nativeSrc":"7741:7:41","nodeType":"YulTypedName","src":"7741:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7753:6:41","nodeType":"YulTypedName","src":"7753:6:41","type":""},{"name":"value1","nativeSrc":"7761:6:41","nodeType":"YulTypedName","src":"7761:6:41","type":""},{"name":"value2","nativeSrc":"7769:6:41","nodeType":"YulTypedName","src":"7769:6:41","type":""}],"src":"7674:482:41"},{"body":{"nativeSrc":"8256:92:41","nodeType":"YulBlock","src":"8256:92:41","statements":[{"nativeSrc":"8266:26:41","nodeType":"YulAssignment","src":"8266:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"8278:9:41","nodeType":"YulIdentifier","src":"8278:9:41"},{"kind":"number","nativeSrc":"8289:2:41","nodeType":"YulLiteral","src":"8289:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8274:3:41","nodeType":"YulIdentifier","src":"8274:3:41"},"nativeSrc":"8274:18:41","nodeType":"YulFunctionCall","src":"8274:18:41"},"variableNames":[{"name":"tail","nativeSrc":"8266:4:41","nodeType":"YulIdentifier","src":"8266:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8308:9:41","nodeType":"YulIdentifier","src":"8308:9:41"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"8333:6:41","nodeType":"YulIdentifier","src":"8333:6:41"}],"functionName":{"name":"iszero","nativeSrc":"8326:6:41","nodeType":"YulIdentifier","src":"8326:6:41"},"nativeSrc":"8326:14:41","nodeType":"YulFunctionCall","src":"8326:14:41"}],"functionName":{"name":"iszero","nativeSrc":"8319:6:41","nodeType":"YulIdentifier","src":"8319:6:41"},"nativeSrc":"8319:22:41","nodeType":"YulFunctionCall","src":"8319:22:41"}],"functionName":{"name":"mstore","nativeSrc":"8301:6:41","nodeType":"YulIdentifier","src":"8301:6:41"},"nativeSrc":"8301:41:41","nodeType":"YulFunctionCall","src":"8301:41:41"},"nativeSrc":"8301:41:41","nodeType":"YulExpressionStatement","src":"8301:41:41"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"8161:187:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8225:9:41","nodeType":"YulTypedName","src":"8225:9:41","type":""},{"name":"value0","nativeSrc":"8236:6:41","nodeType":"YulTypedName","src":"8236:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8247:4:41","nodeType":"YulTypedName","src":"8247:4:41","type":""}],"src":"8161:187:41"},{"body":{"nativeSrc":"8438:171:41","nodeType":"YulBlock","src":"8438:171:41","statements":[{"body":{"nativeSrc":"8484:16:41","nodeType":"YulBlock","src":"8484:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8493:1:41","nodeType":"YulLiteral","src":"8493:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"8496:1:41","nodeType":"YulLiteral","src":"8496:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8486:6:41","nodeType":"YulIdentifier","src":"8486:6:41"},"nativeSrc":"8486:12:41","nodeType":"YulFunctionCall","src":"8486:12:41"},"nativeSrc":"8486:12:41","nodeType":"YulExpressionStatement","src":"8486:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8459:7:41","nodeType":"YulIdentifier","src":"8459:7:41"},{"name":"headStart","nativeSrc":"8468:9:41","nodeType":"YulIdentifier","src":"8468:9:41"}],"functionName":{"name":"sub","nativeSrc":"8455:3:41","nodeType":"YulIdentifier","src":"8455:3:41"},"nativeSrc":"8455:23:41","nodeType":"YulFunctionCall","src":"8455:23:41"},{"kind":"number","nativeSrc":"8480:2:41","nodeType":"YulLiteral","src":"8480:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"8451:3:41","nodeType":"YulIdentifier","src":"8451:3:41"},"nativeSrc":"8451:32:41","nodeType":"YulFunctionCall","src":"8451:32:41"},"nativeSrc":"8448:52:41","nodeType":"YulIf","src":"8448:52:41"},{"nativeSrc":"8509:38:41","nodeType":"YulAssignment","src":"8509:38:41","value":{"arguments":[{"name":"headStart","nativeSrc":"8537:9:41","nodeType":"YulIdentifier","src":"8537:9:41"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"8519:17:41","nodeType":"YulIdentifier","src":"8519:17:41"},"nativeSrc":"8519:28:41","nodeType":"YulFunctionCall","src":"8519:28:41"},"variableNames":[{"name":"value0","nativeSrc":"8509:6:41","nodeType":"YulIdentifier","src":"8509:6:41"}]},{"nativeSrc":"8556:47:41","nodeType":"YulAssignment","src":"8556:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8588:9:41","nodeType":"YulIdentifier","src":"8588:9:41"},{"kind":"number","nativeSrc":"8599:2:41","nodeType":"YulLiteral","src":"8599:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8584:3:41","nodeType":"YulIdentifier","src":"8584:3:41"},"nativeSrc":"8584:18:41","nodeType":"YulFunctionCall","src":"8584:18:41"}],"functionName":{"name":"abi_decode_uint32","nativeSrc":"8566:17:41","nodeType":"YulIdentifier","src":"8566:17:41"},"nativeSrc":"8566:37:41","nodeType":"YulFunctionCall","src":"8566:37:41"},"variableNames":[{"name":"value1","nativeSrc":"8556:6:41","nodeType":"YulIdentifier","src":"8556:6:41"}]}]},"name":"abi_decode_tuple_t_uint64t_uint32","nativeSrc":"8353:256:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8396:9:41","nodeType":"YulTypedName","src":"8396:9:41","type":""},{"name":"dataEnd","nativeSrc":"8407:7:41","nodeType":"YulTypedName","src":"8407:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8419:6:41","nodeType":"YulTypedName","src":"8419:6:41","type":""},{"name":"value1","nativeSrc":"8427:6:41","nodeType":"YulTypedName","src":"8427:6:41","type":""}],"src":"8353:256:41"},{"body":{"nativeSrc":"8737:562:41","nodeType":"YulBlock","src":"8737:562:41","statements":[{"body":{"nativeSrc":"8783:16:41","nodeType":"YulBlock","src":"8783:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8792:1:41","nodeType":"YulLiteral","src":"8792:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"8795:1:41","nodeType":"YulLiteral","src":"8795:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8785:6:41","nodeType":"YulIdentifier","src":"8785:6:41"},"nativeSrc":"8785:12:41","nodeType":"YulFunctionCall","src":"8785:12:41"},"nativeSrc":"8785:12:41","nodeType":"YulExpressionStatement","src":"8785:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8758:7:41","nodeType":"YulIdentifier","src":"8758:7:41"},{"name":"headStart","nativeSrc":"8767:9:41","nodeType":"YulIdentifier","src":"8767:9:41"}],"functionName":{"name":"sub","nativeSrc":"8754:3:41","nodeType":"YulIdentifier","src":"8754:3:41"},"nativeSrc":"8754:23:41","nodeType":"YulFunctionCall","src":"8754:23:41"},{"kind":"number","nativeSrc":"8779:2:41","nodeType":"YulLiteral","src":"8779:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"8750:3:41","nodeType":"YulIdentifier","src":"8750:3:41"},"nativeSrc":"8750:32:41","nodeType":"YulFunctionCall","src":"8750:32:41"},"nativeSrc":"8747:52:41","nodeType":"YulIf","src":"8747:52:41"},{"nativeSrc":"8808:36:41","nodeType":"YulVariableDeclaration","src":"8808:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"8834:9:41","nodeType":"YulIdentifier","src":"8834:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"8821:12:41","nodeType":"YulIdentifier","src":"8821:12:41"},"nativeSrc":"8821:23:41","nodeType":"YulFunctionCall","src":"8821:23:41"},"variables":[{"name":"value","nativeSrc":"8812:5:41","nodeType":"YulTypedName","src":"8812:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8878:5:41","nodeType":"YulIdentifier","src":"8878:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"8853:24:41","nodeType":"YulIdentifier","src":"8853:24:41"},"nativeSrc":"8853:31:41","nodeType":"YulFunctionCall","src":"8853:31:41"},"nativeSrc":"8853:31:41","nodeType":"YulExpressionStatement","src":"8853:31:41"},{"nativeSrc":"8893:15:41","nodeType":"YulAssignment","src":"8893:15:41","value":{"name":"value","nativeSrc":"8903:5:41","nodeType":"YulIdentifier","src":"8903:5:41"},"variableNames":[{"name":"value0","nativeSrc":"8893:6:41","nodeType":"YulIdentifier","src":"8893:6:41"}]},{"nativeSrc":"8917:47:41","nodeType":"YulVariableDeclaration","src":"8917:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8949:9:41","nodeType":"YulIdentifier","src":"8949:9:41"},{"kind":"number","nativeSrc":"8960:2:41","nodeType":"YulLiteral","src":"8960:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8945:3:41","nodeType":"YulIdentifier","src":"8945:3:41"},"nativeSrc":"8945:18:41","nodeType":"YulFunctionCall","src":"8945:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"8932:12:41","nodeType":"YulIdentifier","src":"8932:12:41"},"nativeSrc":"8932:32:41","nodeType":"YulFunctionCall","src":"8932:32:41"},"variables":[{"name":"value_1","nativeSrc":"8921:7:41","nodeType":"YulTypedName","src":"8921:7:41","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"8998:7:41","nodeType":"YulIdentifier","src":"8998:7:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"8973:24:41","nodeType":"YulIdentifier","src":"8973:24:41"},"nativeSrc":"8973:33:41","nodeType":"YulFunctionCall","src":"8973:33:41"},"nativeSrc":"8973:33:41","nodeType":"YulExpressionStatement","src":"8973:33:41"},{"nativeSrc":"9015:17:41","nodeType":"YulAssignment","src":"9015:17:41","value":{"name":"value_1","nativeSrc":"9025:7:41","nodeType":"YulIdentifier","src":"9025:7:41"},"variableNames":[{"name":"value1","nativeSrc":"9015:6:41","nodeType":"YulIdentifier","src":"9015:6:41"}]},{"nativeSrc":"9041:46:41","nodeType":"YulVariableDeclaration","src":"9041:46:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9072:9:41","nodeType":"YulIdentifier","src":"9072:9:41"},{"kind":"number","nativeSrc":"9083:2:41","nodeType":"YulLiteral","src":"9083:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9068:3:41","nodeType":"YulIdentifier","src":"9068:3:41"},"nativeSrc":"9068:18:41","nodeType":"YulFunctionCall","src":"9068:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"9055:12:41","nodeType":"YulIdentifier","src":"9055:12:41"},"nativeSrc":"9055:32:41","nodeType":"YulFunctionCall","src":"9055:32:41"},"variables":[{"name":"offset","nativeSrc":"9045:6:41","nodeType":"YulTypedName","src":"9045:6:41","type":""}]},{"body":{"nativeSrc":"9130:16:41","nodeType":"YulBlock","src":"9130:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9139:1:41","nodeType":"YulLiteral","src":"9139:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"9142:1:41","nodeType":"YulLiteral","src":"9142:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9132:6:41","nodeType":"YulIdentifier","src":"9132:6:41"},"nativeSrc":"9132:12:41","nodeType":"YulFunctionCall","src":"9132:12:41"},"nativeSrc":"9132:12:41","nodeType":"YulExpressionStatement","src":"9132:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"9102:6:41","nodeType":"YulIdentifier","src":"9102:6:41"},{"kind":"number","nativeSrc":"9110:18:41","nodeType":"YulLiteral","src":"9110:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"9099:2:41","nodeType":"YulIdentifier","src":"9099:2:41"},"nativeSrc":"9099:30:41","nodeType":"YulFunctionCall","src":"9099:30:41"},"nativeSrc":"9096:50:41","nodeType":"YulIf","src":"9096:50:41"},{"nativeSrc":"9155:84:41","nodeType":"YulVariableDeclaration","src":"9155:84:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9211:9:41","nodeType":"YulIdentifier","src":"9211:9:41"},{"name":"offset","nativeSrc":"9222:6:41","nodeType":"YulIdentifier","src":"9222:6:41"}],"functionName":{"name":"add","nativeSrc":"9207:3:41","nodeType":"YulIdentifier","src":"9207:3:41"},"nativeSrc":"9207:22:41","nodeType":"YulFunctionCall","src":"9207:22:41"},{"name":"dataEnd","nativeSrc":"9231:7:41","nodeType":"YulIdentifier","src":"9231:7:41"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"9181:25:41","nodeType":"YulIdentifier","src":"9181:25:41"},"nativeSrc":"9181:58:41","nodeType":"YulFunctionCall","src":"9181:58:41"},"variables":[{"name":"value2_1","nativeSrc":"9159:8:41","nodeType":"YulTypedName","src":"9159:8:41","type":""},{"name":"value3_1","nativeSrc":"9169:8:41","nodeType":"YulTypedName","src":"9169:8:41","type":""}]},{"nativeSrc":"9248:18:41","nodeType":"YulAssignment","src":"9248:18:41","value":{"name":"value2_1","nativeSrc":"9258:8:41","nodeType":"YulIdentifier","src":"9258:8:41"},"variableNames":[{"name":"value2","nativeSrc":"9248:6:41","nodeType":"YulIdentifier","src":"9248:6:41"}]},{"nativeSrc":"9275:18:41","nodeType":"YulAssignment","src":"9275:18:41","value":{"name":"value3_1","nativeSrc":"9285:8:41","nodeType":"YulIdentifier","src":"9285:8:41"},"variableNames":[{"name":"value3","nativeSrc":"9275:6:41","nodeType":"YulIdentifier","src":"9275:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_bytes_calldata_ptr","nativeSrc":"8614:685:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8679:9:41","nodeType":"YulTypedName","src":"8679:9:41","type":""},{"name":"dataEnd","nativeSrc":"8690:7:41","nodeType":"YulTypedName","src":"8690:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8702:6:41","nodeType":"YulTypedName","src":"8702:6:41","type":""},{"name":"value1","nativeSrc":"8710:6:41","nodeType":"YulTypedName","src":"8710:6:41","type":""},{"name":"value2","nativeSrc":"8718:6:41","nodeType":"YulTypedName","src":"8718:6:41","type":""},{"name":"value3","nativeSrc":"8726:6:41","nodeType":"YulTypedName","src":"8726:6:41","type":""}],"src":"8614:685:41"},{"body":{"nativeSrc":"9405:76:41","nodeType":"YulBlock","src":"9405:76:41","statements":[{"nativeSrc":"9415:26:41","nodeType":"YulAssignment","src":"9415:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"9427:9:41","nodeType":"YulIdentifier","src":"9427:9:41"},{"kind":"number","nativeSrc":"9438:2:41","nodeType":"YulLiteral","src":"9438:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9423:3:41","nodeType":"YulIdentifier","src":"9423:3:41"},"nativeSrc":"9423:18:41","nodeType":"YulFunctionCall","src":"9423:18:41"},"variableNames":[{"name":"tail","nativeSrc":"9415:4:41","nodeType":"YulIdentifier","src":"9415:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9457:9:41","nodeType":"YulIdentifier","src":"9457:9:41"},{"name":"value0","nativeSrc":"9468:6:41","nodeType":"YulIdentifier","src":"9468:6:41"}],"functionName":{"name":"mstore","nativeSrc":"9450:6:41","nodeType":"YulIdentifier","src":"9450:6:41"},"nativeSrc":"9450:25:41","nodeType":"YulFunctionCall","src":"9450:25:41"},"nativeSrc":"9450:25:41","nodeType":"YulExpressionStatement","src":"9450:25:41"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"9304:177:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9374:9:41","nodeType":"YulTypedName","src":"9374:9:41","type":""},{"name":"value0","nativeSrc":"9385:6:41","nodeType":"YulTypedName","src":"9385:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9396:4:41","nodeType":"YulTypedName","src":"9396:4:41","type":""}],"src":"9304:177:41"},{"body":{"nativeSrc":"9602:331:41","nodeType":"YulBlock","src":"9602:331:41","statements":[{"body":{"nativeSrc":"9648:16:41","nodeType":"YulBlock","src":"9648:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9657:1:41","nodeType":"YulLiteral","src":"9657:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"9660:1:41","nodeType":"YulLiteral","src":"9660:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9650:6:41","nodeType":"YulIdentifier","src":"9650:6:41"},"nativeSrc":"9650:12:41","nodeType":"YulFunctionCall","src":"9650:12:41"},"nativeSrc":"9650:12:41","nodeType":"YulExpressionStatement","src":"9650:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9623:7:41","nodeType":"YulIdentifier","src":"9623:7:41"},{"name":"headStart","nativeSrc":"9632:9:41","nodeType":"YulIdentifier","src":"9632:9:41"}],"functionName":{"name":"sub","nativeSrc":"9619:3:41","nodeType":"YulIdentifier","src":"9619:3:41"},"nativeSrc":"9619:23:41","nodeType":"YulFunctionCall","src":"9619:23:41"},{"kind":"number","nativeSrc":"9644:2:41","nodeType":"YulLiteral","src":"9644:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"9615:3:41","nodeType":"YulIdentifier","src":"9615:3:41"},"nativeSrc":"9615:32:41","nodeType":"YulFunctionCall","src":"9615:32:41"},"nativeSrc":"9612:52:41","nodeType":"YulIf","src":"9612:52:41"},{"nativeSrc":"9673:37:41","nodeType":"YulVariableDeclaration","src":"9673:37:41","value":{"arguments":[{"name":"headStart","nativeSrc":"9700:9:41","nodeType":"YulIdentifier","src":"9700:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"9687:12:41","nodeType":"YulIdentifier","src":"9687:12:41"},"nativeSrc":"9687:23:41","nodeType":"YulFunctionCall","src":"9687:23:41"},"variables":[{"name":"offset","nativeSrc":"9677:6:41","nodeType":"YulTypedName","src":"9677:6:41","type":""}]},{"body":{"nativeSrc":"9753:16:41","nodeType":"YulBlock","src":"9753:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9762:1:41","nodeType":"YulLiteral","src":"9762:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"9765:1:41","nodeType":"YulLiteral","src":"9765:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9755:6:41","nodeType":"YulIdentifier","src":"9755:6:41"},"nativeSrc":"9755:12:41","nodeType":"YulFunctionCall","src":"9755:12:41"},"nativeSrc":"9755:12:41","nodeType":"YulExpressionStatement","src":"9755:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"9725:6:41","nodeType":"YulIdentifier","src":"9725:6:41"},{"kind":"number","nativeSrc":"9733:18:41","nodeType":"YulLiteral","src":"9733:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"9722:2:41","nodeType":"YulIdentifier","src":"9722:2:41"},"nativeSrc":"9722:30:41","nodeType":"YulFunctionCall","src":"9722:30:41"},"nativeSrc":"9719:50:41","nodeType":"YulIf","src":"9719:50:41"},{"nativeSrc":"9778:95:41","nodeType":"YulVariableDeclaration","src":"9778:95:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9845:9:41","nodeType":"YulIdentifier","src":"9845:9:41"},{"name":"offset","nativeSrc":"9856:6:41","nodeType":"YulIdentifier","src":"9856:6:41"}],"functionName":{"name":"add","nativeSrc":"9841:3:41","nodeType":"YulIdentifier","src":"9841:3:41"},"nativeSrc":"9841:22:41","nodeType":"YulFunctionCall","src":"9841:22:41"},{"name":"dataEnd","nativeSrc":"9865:7:41","nodeType":"YulIdentifier","src":"9865:7:41"}],"functionName":{"name":"abi_decode_array_bytes4_dyn_calldata","nativeSrc":"9804:36:41","nodeType":"YulIdentifier","src":"9804:36:41"},"nativeSrc":"9804:69:41","nodeType":"YulFunctionCall","src":"9804:69:41"},"variables":[{"name":"value0_1","nativeSrc":"9782:8:41","nodeType":"YulTypedName","src":"9782:8:41","type":""},{"name":"value1_1","nativeSrc":"9792:8:41","nodeType":"YulTypedName","src":"9792:8:41","type":""}]},{"nativeSrc":"9882:18:41","nodeType":"YulAssignment","src":"9882:18:41","value":{"name":"value0_1","nativeSrc":"9892:8:41","nodeType":"YulIdentifier","src":"9892:8:41"},"variableNames":[{"name":"value0","nativeSrc":"9882:6:41","nodeType":"YulIdentifier","src":"9882:6:41"}]},{"nativeSrc":"9909:18:41","nodeType":"YulAssignment","src":"9909:18:41","value":{"name":"value1_1","nativeSrc":"9919:8:41","nodeType":"YulIdentifier","src":"9919:8:41"},"variableNames":[{"name":"value1","nativeSrc":"9909:6:41","nodeType":"YulIdentifier","src":"9909:6:41"}]}]},"name":"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","nativeSrc":"9486:447:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9560:9:41","nodeType":"YulTypedName","src":"9560:9:41","type":""},{"name":"dataEnd","nativeSrc":"9571:7:41","nodeType":"YulTypedName","src":"9571:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9583:6:41","nodeType":"YulTypedName","src":"9583:6:41","type":""},{"name":"value1","nativeSrc":"9591:6:41","nodeType":"YulTypedName","src":"9591:6:41","type":""}],"src":"9486:447:41"},{"body":{"nativeSrc":"9996:239:41","nodeType":"YulBlock","src":"9996:239:41","statements":[{"nativeSrc":"10006:26:41","nodeType":"YulVariableDeclaration","src":"10006:26:41","value":{"arguments":[{"name":"value","nativeSrc":"10026:5:41","nodeType":"YulIdentifier","src":"10026:5:41"}],"functionName":{"name":"mload","nativeSrc":"10020:5:41","nodeType":"YulIdentifier","src":"10020:5:41"},"nativeSrc":"10020:12:41","nodeType":"YulFunctionCall","src":"10020:12:41"},"variables":[{"name":"length","nativeSrc":"10010:6:41","nodeType":"YulTypedName","src":"10010:6:41","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"10048:3:41","nodeType":"YulIdentifier","src":"10048:3:41"},{"name":"length","nativeSrc":"10053:6:41","nodeType":"YulIdentifier","src":"10053:6:41"}],"functionName":{"name":"mstore","nativeSrc":"10041:6:41","nodeType":"YulIdentifier","src":"10041:6:41"},"nativeSrc":"10041:19:41","nodeType":"YulFunctionCall","src":"10041:19:41"},"nativeSrc":"10041:19:41","nodeType":"YulExpressionStatement","src":"10041:19:41"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"10079:3:41","nodeType":"YulIdentifier","src":"10079:3:41"},{"kind":"number","nativeSrc":"10084:4:41","nodeType":"YulLiteral","src":"10084:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"10075:3:41","nodeType":"YulIdentifier","src":"10075:3:41"},"nativeSrc":"10075:14:41","nodeType":"YulFunctionCall","src":"10075:14:41"},{"arguments":[{"name":"value","nativeSrc":"10095:5:41","nodeType":"YulIdentifier","src":"10095:5:41"},{"kind":"number","nativeSrc":"10102:4:41","nodeType":"YulLiteral","src":"10102:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"10091:3:41","nodeType":"YulIdentifier","src":"10091:3:41"},"nativeSrc":"10091:16:41","nodeType":"YulFunctionCall","src":"10091:16:41"},{"name":"length","nativeSrc":"10109:6:41","nodeType":"YulIdentifier","src":"10109:6:41"}],"functionName":{"name":"mcopy","nativeSrc":"10069:5:41","nodeType":"YulIdentifier","src":"10069:5:41"},"nativeSrc":"10069:47:41","nodeType":"YulFunctionCall","src":"10069:47:41"},"nativeSrc":"10069:47:41","nodeType":"YulExpressionStatement","src":"10069:47:41"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"10140:3:41","nodeType":"YulIdentifier","src":"10140:3:41"},{"name":"length","nativeSrc":"10145:6:41","nodeType":"YulIdentifier","src":"10145:6:41"}],"functionName":{"name":"add","nativeSrc":"10136:3:41","nodeType":"YulIdentifier","src":"10136:3:41"},"nativeSrc":"10136:16:41","nodeType":"YulFunctionCall","src":"10136:16:41"},{"kind":"number","nativeSrc":"10154:4:41","nodeType":"YulLiteral","src":"10154:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"10132:3:41","nodeType":"YulIdentifier","src":"10132:3:41"},"nativeSrc":"10132:27:41","nodeType":"YulFunctionCall","src":"10132:27:41"},{"kind":"number","nativeSrc":"10161:1:41","nodeType":"YulLiteral","src":"10161:1:41","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"10125:6:41","nodeType":"YulIdentifier","src":"10125:6:41"},"nativeSrc":"10125:38:41","nodeType":"YulFunctionCall","src":"10125:38:41"},"nativeSrc":"10125:38:41","nodeType":"YulExpressionStatement","src":"10125:38:41"},{"nativeSrc":"10172:57:41","nodeType":"YulAssignment","src":"10172:57:41","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"10187:3:41","nodeType":"YulIdentifier","src":"10187:3:41"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"10200:6:41","nodeType":"YulIdentifier","src":"10200:6:41"},{"kind":"number","nativeSrc":"10208:2:41","nodeType":"YulLiteral","src":"10208:2:41","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"10196:3:41","nodeType":"YulIdentifier","src":"10196:3:41"},"nativeSrc":"10196:15:41","nodeType":"YulFunctionCall","src":"10196:15:41"},{"arguments":[{"kind":"number","nativeSrc":"10217:2:41","nodeType":"YulLiteral","src":"10217:2:41","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"10213:3:41","nodeType":"YulIdentifier","src":"10213:3:41"},"nativeSrc":"10213:7:41","nodeType":"YulFunctionCall","src":"10213:7:41"}],"functionName":{"name":"and","nativeSrc":"10192:3:41","nodeType":"YulIdentifier","src":"10192:3:41"},"nativeSrc":"10192:29:41","nodeType":"YulFunctionCall","src":"10192:29:41"}],"functionName":{"name":"add","nativeSrc":"10183:3:41","nodeType":"YulIdentifier","src":"10183:3:41"},"nativeSrc":"10183:39:41","nodeType":"YulFunctionCall","src":"10183:39:41"},{"kind":"number","nativeSrc":"10224:4:41","nodeType":"YulLiteral","src":"10224:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"10179:3:41","nodeType":"YulIdentifier","src":"10179:3:41"},"nativeSrc":"10179:50:41","nodeType":"YulFunctionCall","src":"10179:50:41"},"variableNames":[{"name":"end","nativeSrc":"10172:3:41","nodeType":"YulIdentifier","src":"10172:3:41"}]}]},"name":"abi_encode_bytes_to_bytes","nativeSrc":"9938:297:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"9973:5:41","nodeType":"YulTypedName","src":"9973:5:41","type":""},{"name":"pos","nativeSrc":"9980:3:41","nodeType":"YulTypedName","src":"9980:3:41","type":""}],"returnVariables":[{"name":"end","nativeSrc":"9988:3:41","nodeType":"YulTypedName","src":"9988:3:41","type":""}],"src":"9938:297:41"},{"body":{"nativeSrc":"10409:619:41","nodeType":"YulBlock","src":"10409:619:41","statements":[{"nativeSrc":"10419:32:41","nodeType":"YulVariableDeclaration","src":"10419:32:41","value":{"arguments":[{"name":"headStart","nativeSrc":"10437:9:41","nodeType":"YulIdentifier","src":"10437:9:41"},{"kind":"number","nativeSrc":"10448:2:41","nodeType":"YulLiteral","src":"10448:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10433:3:41","nodeType":"YulIdentifier","src":"10433:3:41"},"nativeSrc":"10433:18:41","nodeType":"YulFunctionCall","src":"10433:18:41"},"variables":[{"name":"tail_1","nativeSrc":"10423:6:41","nodeType":"YulTypedName","src":"10423:6:41","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10467:9:41","nodeType":"YulIdentifier","src":"10467:9:41"},{"kind":"number","nativeSrc":"10478:2:41","nodeType":"YulLiteral","src":"10478:2:41","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"10460:6:41","nodeType":"YulIdentifier","src":"10460:6:41"},"nativeSrc":"10460:21:41","nodeType":"YulFunctionCall","src":"10460:21:41"},"nativeSrc":"10460:21:41","nodeType":"YulExpressionStatement","src":"10460:21:41"},{"nativeSrc":"10490:17:41","nodeType":"YulVariableDeclaration","src":"10490:17:41","value":{"name":"tail_1","nativeSrc":"10501:6:41","nodeType":"YulIdentifier","src":"10501:6:41"},"variables":[{"name":"pos","nativeSrc":"10494:3:41","nodeType":"YulTypedName","src":"10494:3:41","type":""}]},{"nativeSrc":"10516:27:41","nodeType":"YulVariableDeclaration","src":"10516:27:41","value":{"arguments":[{"name":"value0","nativeSrc":"10536:6:41","nodeType":"YulIdentifier","src":"10536:6:41"}],"functionName":{"name":"mload","nativeSrc":"10530:5:41","nodeType":"YulIdentifier","src":"10530:5:41"},"nativeSrc":"10530:13:41","nodeType":"YulFunctionCall","src":"10530:13:41"},"variables":[{"name":"length","nativeSrc":"10520:6:41","nodeType":"YulTypedName","src":"10520:6:41","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"10559:6:41","nodeType":"YulIdentifier","src":"10559:6:41"},{"name":"length","nativeSrc":"10567:6:41","nodeType":"YulIdentifier","src":"10567:6:41"}],"functionName":{"name":"mstore","nativeSrc":"10552:6:41","nodeType":"YulIdentifier","src":"10552:6:41"},"nativeSrc":"10552:22:41","nodeType":"YulFunctionCall","src":"10552:22:41"},"nativeSrc":"10552:22:41","nodeType":"YulExpressionStatement","src":"10552:22:41"},{"nativeSrc":"10583:25:41","nodeType":"YulAssignment","src":"10583:25:41","value":{"arguments":[{"name":"headStart","nativeSrc":"10594:9:41","nodeType":"YulIdentifier","src":"10594:9:41"},{"kind":"number","nativeSrc":"10605:2:41","nodeType":"YulLiteral","src":"10605:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10590:3:41","nodeType":"YulIdentifier","src":"10590:3:41"},"nativeSrc":"10590:18:41","nodeType":"YulFunctionCall","src":"10590:18:41"},"variableNames":[{"name":"pos","nativeSrc":"10583:3:41","nodeType":"YulIdentifier","src":"10583:3:41"}]},{"nativeSrc":"10617:53:41","nodeType":"YulVariableDeclaration","src":"10617:53:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10639:9:41","nodeType":"YulIdentifier","src":"10639:9:41"},{"arguments":[{"kind":"number","nativeSrc":"10654:1:41","nodeType":"YulLiteral","src":"10654:1:41","type":"","value":"5"},{"name":"length","nativeSrc":"10657:6:41","nodeType":"YulIdentifier","src":"10657:6:41"}],"functionName":{"name":"shl","nativeSrc":"10650:3:41","nodeType":"YulIdentifier","src":"10650:3:41"},"nativeSrc":"10650:14:41","nodeType":"YulFunctionCall","src":"10650:14:41"}],"functionName":{"name":"add","nativeSrc":"10635:3:41","nodeType":"YulIdentifier","src":"10635:3:41"},"nativeSrc":"10635:30:41","nodeType":"YulFunctionCall","src":"10635:30:41"},{"kind":"number","nativeSrc":"10667:2:41","nodeType":"YulLiteral","src":"10667:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10631:3:41","nodeType":"YulIdentifier","src":"10631:3:41"},"nativeSrc":"10631:39:41","nodeType":"YulFunctionCall","src":"10631:39:41"},"variables":[{"name":"tail_2","nativeSrc":"10621:6:41","nodeType":"YulTypedName","src":"10621:6:41","type":""}]},{"nativeSrc":"10679:29:41","nodeType":"YulVariableDeclaration","src":"10679:29:41","value":{"arguments":[{"name":"value0","nativeSrc":"10697:6:41","nodeType":"YulIdentifier","src":"10697:6:41"},{"kind":"number","nativeSrc":"10705:2:41","nodeType":"YulLiteral","src":"10705:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10693:3:41","nodeType":"YulIdentifier","src":"10693:3:41"},"nativeSrc":"10693:15:41","nodeType":"YulFunctionCall","src":"10693:15:41"},"variables":[{"name":"srcPtr","nativeSrc":"10683:6:41","nodeType":"YulTypedName","src":"10683:6:41","type":""}]},{"nativeSrc":"10717:10:41","nodeType":"YulVariableDeclaration","src":"10717:10:41","value":{"kind":"number","nativeSrc":"10726:1:41","nodeType":"YulLiteral","src":"10726:1:41","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"10721:1:41","nodeType":"YulTypedName","src":"10721:1:41","type":""}]},{"body":{"nativeSrc":"10785:214:41","nodeType":"YulBlock","src":"10785:214:41","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"10806:3:41","nodeType":"YulIdentifier","src":"10806:3:41"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"10819:6:41","nodeType":"YulIdentifier","src":"10819:6:41"},{"name":"headStart","nativeSrc":"10827:9:41","nodeType":"YulIdentifier","src":"10827:9:41"}],"functionName":{"name":"sub","nativeSrc":"10815:3:41","nodeType":"YulIdentifier","src":"10815:3:41"},"nativeSrc":"10815:22:41","nodeType":"YulFunctionCall","src":"10815:22:41"},{"arguments":[{"kind":"number","nativeSrc":"10843:2:41","nodeType":"YulLiteral","src":"10843:2:41","type":"","value":"63"}],"functionName":{"name":"not","nativeSrc":"10839:3:41","nodeType":"YulIdentifier","src":"10839:3:41"},"nativeSrc":"10839:7:41","nodeType":"YulFunctionCall","src":"10839:7:41"}],"functionName":{"name":"add","nativeSrc":"10811:3:41","nodeType":"YulIdentifier","src":"10811:3:41"},"nativeSrc":"10811:36:41","nodeType":"YulFunctionCall","src":"10811:36:41"}],"functionName":{"name":"mstore","nativeSrc":"10799:6:41","nodeType":"YulIdentifier","src":"10799:6:41"},"nativeSrc":"10799:49:41","nodeType":"YulFunctionCall","src":"10799:49:41"},"nativeSrc":"10799:49:41","nodeType":"YulExpressionStatement","src":"10799:49:41"},{"nativeSrc":"10861:58:41","nodeType":"YulAssignment","src":"10861:58:41","value":{"arguments":[{"arguments":[{"name":"srcPtr","nativeSrc":"10903:6:41","nodeType":"YulIdentifier","src":"10903:6:41"}],"functionName":{"name":"mload","nativeSrc":"10897:5:41","nodeType":"YulIdentifier","src":"10897:5:41"},"nativeSrc":"10897:13:41","nodeType":"YulFunctionCall","src":"10897:13:41"},{"name":"tail_2","nativeSrc":"10912:6:41","nodeType":"YulIdentifier","src":"10912:6:41"}],"functionName":{"name":"abi_encode_bytes_to_bytes","nativeSrc":"10871:25:41","nodeType":"YulIdentifier","src":"10871:25:41"},"nativeSrc":"10871:48:41","nodeType":"YulFunctionCall","src":"10871:48:41"},"variableNames":[{"name":"tail_2","nativeSrc":"10861:6:41","nodeType":"YulIdentifier","src":"10861:6:41"}]},{"nativeSrc":"10932:25:41","nodeType":"YulAssignment","src":"10932:25:41","value":{"arguments":[{"name":"srcPtr","nativeSrc":"10946:6:41","nodeType":"YulIdentifier","src":"10946:6:41"},{"kind":"number","nativeSrc":"10954:2:41","nodeType":"YulLiteral","src":"10954:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10942:3:41","nodeType":"YulIdentifier","src":"10942:3:41"},"nativeSrc":"10942:15:41","nodeType":"YulFunctionCall","src":"10942:15:41"},"variableNames":[{"name":"srcPtr","nativeSrc":"10932:6:41","nodeType":"YulIdentifier","src":"10932:6:41"}]},{"nativeSrc":"10970:19:41","nodeType":"YulAssignment","src":"10970:19:41","value":{"arguments":[{"name":"pos","nativeSrc":"10981:3:41","nodeType":"YulIdentifier","src":"10981:3:41"},{"kind":"number","nativeSrc":"10986:2:41","nodeType":"YulLiteral","src":"10986:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10977:3:41","nodeType":"YulIdentifier","src":"10977:3:41"},"nativeSrc":"10977:12:41","nodeType":"YulFunctionCall","src":"10977:12:41"},"variableNames":[{"name":"pos","nativeSrc":"10970:3:41","nodeType":"YulIdentifier","src":"10970:3:41"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"10747:1:41","nodeType":"YulIdentifier","src":"10747:1:41"},{"name":"length","nativeSrc":"10750:6:41","nodeType":"YulIdentifier","src":"10750:6:41"}],"functionName":{"name":"lt","nativeSrc":"10744:2:41","nodeType":"YulIdentifier","src":"10744:2:41"},"nativeSrc":"10744:13:41","nodeType":"YulFunctionCall","src":"10744:13:41"},"nativeSrc":"10736:263:41","nodeType":"YulForLoop","post":{"nativeSrc":"10758:18:41","nodeType":"YulBlock","src":"10758:18:41","statements":[{"nativeSrc":"10760:14:41","nodeType":"YulAssignment","src":"10760:14:41","value":{"arguments":[{"name":"i","nativeSrc":"10769:1:41","nodeType":"YulIdentifier","src":"10769:1:41"},{"kind":"number","nativeSrc":"10772:1:41","nodeType":"YulLiteral","src":"10772:1:41","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"10765:3:41","nodeType":"YulIdentifier","src":"10765:3:41"},"nativeSrc":"10765:9:41","nodeType":"YulFunctionCall","src":"10765:9:41"},"variableNames":[{"name":"i","nativeSrc":"10760:1:41","nodeType":"YulIdentifier","src":"10760:1:41"}]}]},"pre":{"nativeSrc":"10740:3:41","nodeType":"YulBlock","src":"10740:3:41","statements":[]},"src":"10736:263:41"},{"nativeSrc":"11008:14:41","nodeType":"YulAssignment","src":"11008:14:41","value":{"name":"tail_2","nativeSrc":"11016:6:41","nodeType":"YulIdentifier","src":"11016:6:41"},"variableNames":[{"name":"tail","nativeSrc":"11008:4:41","nodeType":"YulIdentifier","src":"11008:4:41"}]}]},"name":"abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"10240:788:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10378:9:41","nodeType":"YulTypedName","src":"10378:9:41","type":""},{"name":"value0","nativeSrc":"10389:6:41","nodeType":"YulTypedName","src":"10389:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10400:4:41","nodeType":"YulTypedName","src":"10400:4:41","type":""}],"src":"10240:788:41"},{"body":{"nativeSrc":"11153:102:41","nodeType":"YulBlock","src":"11153:102:41","statements":[{"nativeSrc":"11163:26:41","nodeType":"YulAssignment","src":"11163:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"11175:9:41","nodeType":"YulIdentifier","src":"11175:9:41"},{"kind":"number","nativeSrc":"11186:2:41","nodeType":"YulLiteral","src":"11186:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11171:3:41","nodeType":"YulIdentifier","src":"11171:3:41"},"nativeSrc":"11171:18:41","nodeType":"YulFunctionCall","src":"11171:18:41"},"variableNames":[{"name":"tail","nativeSrc":"11163:4:41","nodeType":"YulIdentifier","src":"11163:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11205:9:41","nodeType":"YulIdentifier","src":"11205:9:41"},{"arguments":[{"name":"value0","nativeSrc":"11220:6:41","nodeType":"YulIdentifier","src":"11220:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11236:3:41","nodeType":"YulLiteral","src":"11236:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"11241:1:41","nodeType":"YulLiteral","src":"11241:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11232:3:41","nodeType":"YulIdentifier","src":"11232:3:41"},"nativeSrc":"11232:11:41","nodeType":"YulFunctionCall","src":"11232:11:41"},{"kind":"number","nativeSrc":"11245:1:41","nodeType":"YulLiteral","src":"11245:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11228:3:41","nodeType":"YulIdentifier","src":"11228:3:41"},"nativeSrc":"11228:19:41","nodeType":"YulFunctionCall","src":"11228:19:41"}],"functionName":{"name":"and","nativeSrc":"11216:3:41","nodeType":"YulIdentifier","src":"11216:3:41"},"nativeSrc":"11216:32:41","nodeType":"YulFunctionCall","src":"11216:32:41"}],"functionName":{"name":"mstore","nativeSrc":"11198:6:41","nodeType":"YulIdentifier","src":"11198:6:41"},"nativeSrc":"11198:51:41","nodeType":"YulFunctionCall","src":"11198:51:41"},"nativeSrc":"11198:51:41","nodeType":"YulExpressionStatement","src":"11198:51:41"}]},"name":"abi_encode_tuple_t_contract$_IEntryPoint_$909__to_t_address__fromStack_reversed","nativeSrc":"11033:222:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11122:9:41","nodeType":"YulTypedName","src":"11122:9:41","type":""},{"name":"value0","nativeSrc":"11133:6:41","nodeType":"YulTypedName","src":"11133:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11144:4:41","nodeType":"YulTypedName","src":"11144:4:41","type":""}],"src":"11033:222:41"},{"body":{"nativeSrc":"11383:541:41","nodeType":"YulBlock","src":"11383:541:41","statements":[{"body":{"nativeSrc":"11429:16:41","nodeType":"YulBlock","src":"11429:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11438:1:41","nodeType":"YulLiteral","src":"11438:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"11441:1:41","nodeType":"YulLiteral","src":"11441:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11431:6:41","nodeType":"YulIdentifier","src":"11431:6:41"},"nativeSrc":"11431:12:41","nodeType":"YulFunctionCall","src":"11431:12:41"},"nativeSrc":"11431:12:41","nodeType":"YulExpressionStatement","src":"11431:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11404:7:41","nodeType":"YulIdentifier","src":"11404:7:41"},{"name":"headStart","nativeSrc":"11413:9:41","nodeType":"YulIdentifier","src":"11413:9:41"}],"functionName":{"name":"sub","nativeSrc":"11400:3:41","nodeType":"YulIdentifier","src":"11400:3:41"},"nativeSrc":"11400:23:41","nodeType":"YulFunctionCall","src":"11400:23:41"},{"kind":"number","nativeSrc":"11425:2:41","nodeType":"YulLiteral","src":"11425:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"11396:3:41","nodeType":"YulIdentifier","src":"11396:3:41"},"nativeSrc":"11396:32:41","nodeType":"YulFunctionCall","src":"11396:32:41"},"nativeSrc":"11393:52:41","nodeType":"YulIf","src":"11393:52:41"},{"nativeSrc":"11454:36:41","nodeType":"YulVariableDeclaration","src":"11454:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"11480:9:41","nodeType":"YulIdentifier","src":"11480:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"11467:12:41","nodeType":"YulIdentifier","src":"11467:12:41"},"nativeSrc":"11467:23:41","nodeType":"YulFunctionCall","src":"11467:23:41"},"variables":[{"name":"value","nativeSrc":"11458:5:41","nodeType":"YulTypedName","src":"11458:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"11524:5:41","nodeType":"YulIdentifier","src":"11524:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"11499:24:41","nodeType":"YulIdentifier","src":"11499:24:41"},"nativeSrc":"11499:31:41","nodeType":"YulFunctionCall","src":"11499:31:41"},"nativeSrc":"11499:31:41","nodeType":"YulExpressionStatement","src":"11499:31:41"},{"nativeSrc":"11539:15:41","nodeType":"YulAssignment","src":"11539:15:41","value":{"name":"value","nativeSrc":"11549:5:41","nodeType":"YulIdentifier","src":"11549:5:41"},"variableNames":[{"name":"value0","nativeSrc":"11539:6:41","nodeType":"YulIdentifier","src":"11539:6:41"}]},{"nativeSrc":"11563:16:41","nodeType":"YulVariableDeclaration","src":"11563:16:41","value":{"kind":"number","nativeSrc":"11578:1:41","nodeType":"YulLiteral","src":"11578:1:41","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"11567:7:41","nodeType":"YulTypedName","src":"11567:7:41","type":""}]},{"nativeSrc":"11588:43:41","nodeType":"YulAssignment","src":"11588:43:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11616:9:41","nodeType":"YulIdentifier","src":"11616:9:41"},{"kind":"number","nativeSrc":"11627:2:41","nodeType":"YulLiteral","src":"11627:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11612:3:41","nodeType":"YulIdentifier","src":"11612:3:41"},"nativeSrc":"11612:18:41","nodeType":"YulFunctionCall","src":"11612:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"11599:12:41","nodeType":"YulIdentifier","src":"11599:12:41"},"nativeSrc":"11599:32:41","nodeType":"YulFunctionCall","src":"11599:32:41"},"variableNames":[{"name":"value_1","nativeSrc":"11588:7:41","nodeType":"YulIdentifier","src":"11588:7:41"}]},{"nativeSrc":"11640:17:41","nodeType":"YulAssignment","src":"11640:17:41","value":{"name":"value_1","nativeSrc":"11650:7:41","nodeType":"YulIdentifier","src":"11650:7:41"},"variableNames":[{"name":"value1","nativeSrc":"11640:6:41","nodeType":"YulIdentifier","src":"11640:6:41"}]},{"nativeSrc":"11666:46:41","nodeType":"YulVariableDeclaration","src":"11666:46:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11697:9:41","nodeType":"YulIdentifier","src":"11697:9:41"},{"kind":"number","nativeSrc":"11708:2:41","nodeType":"YulLiteral","src":"11708:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11693:3:41","nodeType":"YulIdentifier","src":"11693:3:41"},"nativeSrc":"11693:18:41","nodeType":"YulFunctionCall","src":"11693:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"11680:12:41","nodeType":"YulIdentifier","src":"11680:12:41"},"nativeSrc":"11680:32:41","nodeType":"YulFunctionCall","src":"11680:32:41"},"variables":[{"name":"offset","nativeSrc":"11670:6:41","nodeType":"YulTypedName","src":"11670:6:41","type":""}]},{"body":{"nativeSrc":"11755:16:41","nodeType":"YulBlock","src":"11755:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11764:1:41","nodeType":"YulLiteral","src":"11764:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"11767:1:41","nodeType":"YulLiteral","src":"11767:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11757:6:41","nodeType":"YulIdentifier","src":"11757:6:41"},"nativeSrc":"11757:12:41","nodeType":"YulFunctionCall","src":"11757:12:41"},"nativeSrc":"11757:12:41","nodeType":"YulExpressionStatement","src":"11757:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"11727:6:41","nodeType":"YulIdentifier","src":"11727:6:41"},{"kind":"number","nativeSrc":"11735:18:41","nodeType":"YulLiteral","src":"11735:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"11724:2:41","nodeType":"YulIdentifier","src":"11724:2:41"},"nativeSrc":"11724:30:41","nodeType":"YulFunctionCall","src":"11724:30:41"},"nativeSrc":"11721:50:41","nodeType":"YulIf","src":"11721:50:41"},{"nativeSrc":"11780:84:41","nodeType":"YulVariableDeclaration","src":"11780:84:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11836:9:41","nodeType":"YulIdentifier","src":"11836:9:41"},{"name":"offset","nativeSrc":"11847:6:41","nodeType":"YulIdentifier","src":"11847:6:41"}],"functionName":{"name":"add","nativeSrc":"11832:3:41","nodeType":"YulIdentifier","src":"11832:3:41"},"nativeSrc":"11832:22:41","nodeType":"YulFunctionCall","src":"11832:22:41"},{"name":"dataEnd","nativeSrc":"11856:7:41","nodeType":"YulIdentifier","src":"11856:7:41"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"11806:25:41","nodeType":"YulIdentifier","src":"11806:25:41"},"nativeSrc":"11806:58:41","nodeType":"YulFunctionCall","src":"11806:58:41"},"variables":[{"name":"value2_1","nativeSrc":"11784:8:41","nodeType":"YulTypedName","src":"11784:8:41","type":""},{"name":"value3_1","nativeSrc":"11794:8:41","nodeType":"YulTypedName","src":"11794:8:41","type":""}]},{"nativeSrc":"11873:18:41","nodeType":"YulAssignment","src":"11873:18:41","value":{"name":"value2_1","nativeSrc":"11883:8:41","nodeType":"YulIdentifier","src":"11883:8:41"},"variableNames":[{"name":"value2","nativeSrc":"11873:6:41","nodeType":"YulIdentifier","src":"11873:6:41"}]},{"nativeSrc":"11900:18:41","nodeType":"YulAssignment","src":"11900:18:41","value":{"name":"value3_1","nativeSrc":"11910:8:41","nodeType":"YulIdentifier","src":"11910:8:41"},"variableNames":[{"name":"value3","nativeSrc":"11900:6:41","nodeType":"YulIdentifier","src":"11900:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_bytes_calldata_ptr","nativeSrc":"11260:664:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11325:9:41","nodeType":"YulTypedName","src":"11325:9:41","type":""},{"name":"dataEnd","nativeSrc":"11336:7:41","nodeType":"YulTypedName","src":"11336:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11348:6:41","nodeType":"YulTypedName","src":"11348:6:41","type":""},{"name":"value1","nativeSrc":"11356:6:41","nodeType":"YulTypedName","src":"11356:6:41","type":""},{"name":"value2","nativeSrc":"11364:6:41","nodeType":"YulTypedName","src":"11364:6:41","type":""},{"name":"value3","nativeSrc":"11372:6:41","nodeType":"YulTypedName","src":"11372:6:41","type":""}],"src":"11260:664:41"},{"body":{"nativeSrc":"12032:424:41","nodeType":"YulBlock","src":"12032:424:41","statements":[{"body":{"nativeSrc":"12078:16:41","nodeType":"YulBlock","src":"12078:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12087:1:41","nodeType":"YulLiteral","src":"12087:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"12090:1:41","nodeType":"YulLiteral","src":"12090:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12080:6:41","nodeType":"YulIdentifier","src":"12080:6:41"},"nativeSrc":"12080:12:41","nodeType":"YulFunctionCall","src":"12080:12:41"},"nativeSrc":"12080:12:41","nodeType":"YulExpressionStatement","src":"12080:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12053:7:41","nodeType":"YulIdentifier","src":"12053:7:41"},{"name":"headStart","nativeSrc":"12062:9:41","nodeType":"YulIdentifier","src":"12062:9:41"}],"functionName":{"name":"sub","nativeSrc":"12049:3:41","nodeType":"YulIdentifier","src":"12049:3:41"},"nativeSrc":"12049:23:41","nodeType":"YulFunctionCall","src":"12049:23:41"},{"kind":"number","nativeSrc":"12074:2:41","nodeType":"YulLiteral","src":"12074:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"12045:3:41","nodeType":"YulIdentifier","src":"12045:3:41"},"nativeSrc":"12045:32:41","nodeType":"YulFunctionCall","src":"12045:32:41"},"nativeSrc":"12042:52:41","nodeType":"YulIf","src":"12042:52:41"},{"nativeSrc":"12103:36:41","nodeType":"YulVariableDeclaration","src":"12103:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"12129:9:41","nodeType":"YulIdentifier","src":"12129:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"12116:12:41","nodeType":"YulIdentifier","src":"12116:12:41"},"nativeSrc":"12116:23:41","nodeType":"YulFunctionCall","src":"12116:23:41"},"variables":[{"name":"value","nativeSrc":"12107:5:41","nodeType":"YulTypedName","src":"12107:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12173:5:41","nodeType":"YulIdentifier","src":"12173:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"12148:24:41","nodeType":"YulIdentifier","src":"12148:24:41"},"nativeSrc":"12148:31:41","nodeType":"YulFunctionCall","src":"12148:31:41"},"nativeSrc":"12148:31:41","nodeType":"YulExpressionStatement","src":"12148:31:41"},{"nativeSrc":"12188:15:41","nodeType":"YulAssignment","src":"12188:15:41","value":{"name":"value","nativeSrc":"12198:5:41","nodeType":"YulIdentifier","src":"12198:5:41"},"variableNames":[{"name":"value0","nativeSrc":"12188:6:41","nodeType":"YulIdentifier","src":"12188:6:41"}]},{"nativeSrc":"12212:47:41","nodeType":"YulVariableDeclaration","src":"12212:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12244:9:41","nodeType":"YulIdentifier","src":"12244:9:41"},{"kind":"number","nativeSrc":"12255:2:41","nodeType":"YulLiteral","src":"12255:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12240:3:41","nodeType":"YulIdentifier","src":"12240:3:41"},"nativeSrc":"12240:18:41","nodeType":"YulFunctionCall","src":"12240:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"12227:12:41","nodeType":"YulIdentifier","src":"12227:12:41"},"nativeSrc":"12227:32:41","nodeType":"YulFunctionCall","src":"12227:32:41"},"variables":[{"name":"value_1","nativeSrc":"12216:7:41","nodeType":"YulTypedName","src":"12216:7:41","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"12293:7:41","nodeType":"YulIdentifier","src":"12293:7:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"12268:24:41","nodeType":"YulIdentifier","src":"12268:24:41"},"nativeSrc":"12268:33:41","nodeType":"YulFunctionCall","src":"12268:33:41"},"nativeSrc":"12268:33:41","nodeType":"YulExpressionStatement","src":"12268:33:41"},{"nativeSrc":"12310:17:41","nodeType":"YulAssignment","src":"12310:17:41","value":{"name":"value_1","nativeSrc":"12320:7:41","nodeType":"YulIdentifier","src":"12320:7:41"},"variableNames":[{"name":"value1","nativeSrc":"12310:6:41","nodeType":"YulIdentifier","src":"12310:6:41"}]},{"nativeSrc":"12336:47:41","nodeType":"YulVariableDeclaration","src":"12336:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12368:9:41","nodeType":"YulIdentifier","src":"12368:9:41"},{"kind":"number","nativeSrc":"12379:2:41","nodeType":"YulLiteral","src":"12379:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12364:3:41","nodeType":"YulIdentifier","src":"12364:3:41"},"nativeSrc":"12364:18:41","nodeType":"YulFunctionCall","src":"12364:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"12351:12:41","nodeType":"YulIdentifier","src":"12351:12:41"},"nativeSrc":"12351:32:41","nodeType":"YulFunctionCall","src":"12351:32:41"},"variables":[{"name":"value_2","nativeSrc":"12340:7:41","nodeType":"YulTypedName","src":"12340:7:41","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"12416:7:41","nodeType":"YulIdentifier","src":"12416:7:41"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"12392:23:41","nodeType":"YulIdentifier","src":"12392:23:41"},"nativeSrc":"12392:32:41","nodeType":"YulFunctionCall","src":"12392:32:41"},"nativeSrc":"12392:32:41","nodeType":"YulExpressionStatement","src":"12392:32:41"},{"nativeSrc":"12433:17:41","nodeType":"YulAssignment","src":"12433:17:41","value":{"name":"value_2","nativeSrc":"12443:7:41","nodeType":"YulIdentifier","src":"12443:7:41"},"variableNames":[{"name":"value2","nativeSrc":"12433:6:41","nodeType":"YulIdentifier","src":"12433:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_bytes4","nativeSrc":"11929:527:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11982:9:41","nodeType":"YulTypedName","src":"11982:9:41","type":""},{"name":"dataEnd","nativeSrc":"11993:7:41","nodeType":"YulTypedName","src":"11993:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12005:6:41","nodeType":"YulTypedName","src":"12005:6:41","type":""},{"name":"value1","nativeSrc":"12013:6:41","nodeType":"YulTypedName","src":"12013:6:41","type":""},{"name":"value2","nativeSrc":"12021:6:41","nodeType":"YulTypedName","src":"12021:6:41","type":""}],"src":"11929:527:41"},{"body":{"nativeSrc":"12582:152:41","nodeType":"YulBlock","src":"12582:152:41","statements":[{"nativeSrc":"12592:26:41","nodeType":"YulAssignment","src":"12592:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"12604:9:41","nodeType":"YulIdentifier","src":"12604:9:41"},{"kind":"number","nativeSrc":"12615:2:41","nodeType":"YulLiteral","src":"12615:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12600:3:41","nodeType":"YulIdentifier","src":"12600:3:41"},"nativeSrc":"12600:18:41","nodeType":"YulFunctionCall","src":"12600:18:41"},"variableNames":[{"name":"tail","nativeSrc":"12592:4:41","nodeType":"YulIdentifier","src":"12592:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12634:9:41","nodeType":"YulIdentifier","src":"12634:9:41"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"12659:6:41","nodeType":"YulIdentifier","src":"12659:6:41"}],"functionName":{"name":"iszero","nativeSrc":"12652:6:41","nodeType":"YulIdentifier","src":"12652:6:41"},"nativeSrc":"12652:14:41","nodeType":"YulFunctionCall","src":"12652:14:41"}],"functionName":{"name":"iszero","nativeSrc":"12645:6:41","nodeType":"YulIdentifier","src":"12645:6:41"},"nativeSrc":"12645:22:41","nodeType":"YulFunctionCall","src":"12645:22:41"}],"functionName":{"name":"mstore","nativeSrc":"12627:6:41","nodeType":"YulIdentifier","src":"12627:6:41"},"nativeSrc":"12627:41:41","nodeType":"YulFunctionCall","src":"12627:41:41"},"nativeSrc":"12627:41:41","nodeType":"YulExpressionStatement","src":"12627:41:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12688:9:41","nodeType":"YulIdentifier","src":"12688:9:41"},{"kind":"number","nativeSrc":"12699:2:41","nodeType":"YulLiteral","src":"12699:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12684:3:41","nodeType":"YulIdentifier","src":"12684:3:41"},"nativeSrc":"12684:18:41","nodeType":"YulFunctionCall","src":"12684:18:41"},{"arguments":[{"name":"value1","nativeSrc":"12708:6:41","nodeType":"YulIdentifier","src":"12708:6:41"},{"kind":"number","nativeSrc":"12716:10:41","nodeType":"YulLiteral","src":"12716:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"12704:3:41","nodeType":"YulIdentifier","src":"12704:3:41"},"nativeSrc":"12704:23:41","nodeType":"YulFunctionCall","src":"12704:23:41"}],"functionName":{"name":"mstore","nativeSrc":"12677:6:41","nodeType":"YulIdentifier","src":"12677:6:41"},"nativeSrc":"12677:51:41","nodeType":"YulFunctionCall","src":"12677:51:41"},"nativeSrc":"12677:51:41","nodeType":"YulExpressionStatement","src":"12677:51:41"}]},"name":"abi_encode_tuple_t_bool_t_uint32__to_t_bool_t_uint32__fromStack_reversed","nativeSrc":"12461:273:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12543:9:41","nodeType":"YulTypedName","src":"12543:9:41","type":""},{"name":"value1","nativeSrc":"12554:6:41","nodeType":"YulTypedName","src":"12554:6:41","type":""},{"name":"value0","nativeSrc":"12562:6:41","nodeType":"YulTypedName","src":"12562:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12573:4:41","nodeType":"YulTypedName","src":"12573:4:41","type":""}],"src":"12461:273:41"},{"body":{"nativeSrc":"12825:233:41","nodeType":"YulBlock","src":"12825:233:41","statements":[{"body":{"nativeSrc":"12871:16:41","nodeType":"YulBlock","src":"12871:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12880:1:41","nodeType":"YulLiteral","src":"12880:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"12883:1:41","nodeType":"YulLiteral","src":"12883:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12873:6:41","nodeType":"YulIdentifier","src":"12873:6:41"},"nativeSrc":"12873:12:41","nodeType":"YulFunctionCall","src":"12873:12:41"},"nativeSrc":"12873:12:41","nodeType":"YulExpressionStatement","src":"12873:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12846:7:41","nodeType":"YulIdentifier","src":"12846:7:41"},{"name":"headStart","nativeSrc":"12855:9:41","nodeType":"YulIdentifier","src":"12855:9:41"}],"functionName":{"name":"sub","nativeSrc":"12842:3:41","nodeType":"YulIdentifier","src":"12842:3:41"},"nativeSrc":"12842:23:41","nodeType":"YulFunctionCall","src":"12842:23:41"},{"kind":"number","nativeSrc":"12867:2:41","nodeType":"YulLiteral","src":"12867:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"12838:3:41","nodeType":"YulIdentifier","src":"12838:3:41"},"nativeSrc":"12838:32:41","nodeType":"YulFunctionCall","src":"12838:32:41"},"nativeSrc":"12835:52:41","nodeType":"YulIf","src":"12835:52:41"},{"nativeSrc":"12896:36:41","nodeType":"YulVariableDeclaration","src":"12896:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"12922:9:41","nodeType":"YulIdentifier","src":"12922:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"12909:12:41","nodeType":"YulIdentifier","src":"12909:12:41"},"nativeSrc":"12909:23:41","nodeType":"YulFunctionCall","src":"12909:23:41"},"variables":[{"name":"value","nativeSrc":"12900:5:41","nodeType":"YulTypedName","src":"12900:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12966:5:41","nodeType":"YulIdentifier","src":"12966:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"12941:24:41","nodeType":"YulIdentifier","src":"12941:24:41"},"nativeSrc":"12941:31:41","nodeType":"YulFunctionCall","src":"12941:31:41"},"nativeSrc":"12941:31:41","nodeType":"YulExpressionStatement","src":"12941:31:41"},{"nativeSrc":"12981:15:41","nodeType":"YulAssignment","src":"12981:15:41","value":{"name":"value","nativeSrc":"12991:5:41","nodeType":"YulIdentifier","src":"12991:5:41"},"variableNames":[{"name":"value0","nativeSrc":"12981:6:41","nodeType":"YulIdentifier","src":"12981:6:41"}]},{"nativeSrc":"13005:47:41","nodeType":"YulAssignment","src":"13005:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13037:9:41","nodeType":"YulIdentifier","src":"13037:9:41"},{"kind":"number","nativeSrc":"13048:2:41","nodeType":"YulLiteral","src":"13048:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13033:3:41","nodeType":"YulIdentifier","src":"13033:3:41"},"nativeSrc":"13033:18:41","nodeType":"YulFunctionCall","src":"13033:18:41"}],"functionName":{"name":"abi_decode_uint32","nativeSrc":"13015:17:41","nodeType":"YulIdentifier","src":"13015:17:41"},"nativeSrc":"13015:37:41","nodeType":"YulFunctionCall","src":"13015:37:41"},"variableNames":[{"name":"value1","nativeSrc":"13005:6:41","nodeType":"YulIdentifier","src":"13005:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_uint32","nativeSrc":"12739:319:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12783:9:41","nodeType":"YulTypedName","src":"12783:9:41","type":""},{"name":"dataEnd","nativeSrc":"12794:7:41","nodeType":"YulTypedName","src":"12794:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12806:6:41","nodeType":"YulTypedName","src":"12806:6:41","type":""},{"name":"value1","nativeSrc":"12814:6:41","nodeType":"YulTypedName","src":"12814:6:41","type":""}],"src":"12739:319:41"},{"body":{"nativeSrc":"13185:598:41","nodeType":"YulBlock","src":"13185:598:41","statements":[{"body":{"nativeSrc":"13231:16:41","nodeType":"YulBlock","src":"13231:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13240:1:41","nodeType":"YulLiteral","src":"13240:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"13243:1:41","nodeType":"YulLiteral","src":"13243:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13233:6:41","nodeType":"YulIdentifier","src":"13233:6:41"},"nativeSrc":"13233:12:41","nodeType":"YulFunctionCall","src":"13233:12:41"},"nativeSrc":"13233:12:41","nodeType":"YulExpressionStatement","src":"13233:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13206:7:41","nodeType":"YulIdentifier","src":"13206:7:41"},{"name":"headStart","nativeSrc":"13215:9:41","nodeType":"YulIdentifier","src":"13215:9:41"}],"functionName":{"name":"sub","nativeSrc":"13202:3:41","nodeType":"YulIdentifier","src":"13202:3:41"},"nativeSrc":"13202:23:41","nodeType":"YulFunctionCall","src":"13202:23:41"},{"kind":"number","nativeSrc":"13227:2:41","nodeType":"YulLiteral","src":"13227:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"13198:3:41","nodeType":"YulIdentifier","src":"13198:3:41"},"nativeSrc":"13198:32:41","nodeType":"YulFunctionCall","src":"13198:32:41"},"nativeSrc":"13195:52:41","nodeType":"YulIf","src":"13195:52:41"},{"nativeSrc":"13256:36:41","nodeType":"YulVariableDeclaration","src":"13256:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"13282:9:41","nodeType":"YulIdentifier","src":"13282:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"13269:12:41","nodeType":"YulIdentifier","src":"13269:12:41"},"nativeSrc":"13269:23:41","nodeType":"YulFunctionCall","src":"13269:23:41"},"variables":[{"name":"value","nativeSrc":"13260:5:41","nodeType":"YulTypedName","src":"13260:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13326:5:41","nodeType":"YulIdentifier","src":"13326:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"13301:24:41","nodeType":"YulIdentifier","src":"13301:24:41"},"nativeSrc":"13301:31:41","nodeType":"YulFunctionCall","src":"13301:31:41"},"nativeSrc":"13301:31:41","nodeType":"YulExpressionStatement","src":"13301:31:41"},{"nativeSrc":"13341:15:41","nodeType":"YulAssignment","src":"13341:15:41","value":{"name":"value","nativeSrc":"13351:5:41","nodeType":"YulIdentifier","src":"13351:5:41"},"variableNames":[{"name":"value0","nativeSrc":"13341:6:41","nodeType":"YulIdentifier","src":"13341:6:41"}]},{"nativeSrc":"13365:46:41","nodeType":"YulVariableDeclaration","src":"13365:46:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13396:9:41","nodeType":"YulIdentifier","src":"13396:9:41"},{"kind":"number","nativeSrc":"13407:2:41","nodeType":"YulLiteral","src":"13407:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13392:3:41","nodeType":"YulIdentifier","src":"13392:3:41"},"nativeSrc":"13392:18:41","nodeType":"YulFunctionCall","src":"13392:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"13379:12:41","nodeType":"YulIdentifier","src":"13379:12:41"},"nativeSrc":"13379:32:41","nodeType":"YulFunctionCall","src":"13379:32:41"},"variables":[{"name":"offset","nativeSrc":"13369:6:41","nodeType":"YulTypedName","src":"13369:6:41","type":""}]},{"body":{"nativeSrc":"13454:16:41","nodeType":"YulBlock","src":"13454:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13463:1:41","nodeType":"YulLiteral","src":"13463:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"13466:1:41","nodeType":"YulLiteral","src":"13466:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13456:6:41","nodeType":"YulIdentifier","src":"13456:6:41"},"nativeSrc":"13456:12:41","nodeType":"YulFunctionCall","src":"13456:12:41"},"nativeSrc":"13456:12:41","nodeType":"YulExpressionStatement","src":"13456:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"13426:6:41","nodeType":"YulIdentifier","src":"13426:6:41"},{"kind":"number","nativeSrc":"13434:18:41","nodeType":"YulLiteral","src":"13434:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"13423:2:41","nodeType":"YulIdentifier","src":"13423:2:41"},"nativeSrc":"13423:30:41","nodeType":"YulFunctionCall","src":"13423:30:41"},"nativeSrc":"13420:50:41","nodeType":"YulIf","src":"13420:50:41"},{"nativeSrc":"13479:84:41","nodeType":"YulVariableDeclaration","src":"13479:84:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13535:9:41","nodeType":"YulIdentifier","src":"13535:9:41"},{"name":"offset","nativeSrc":"13546:6:41","nodeType":"YulIdentifier","src":"13546:6:41"}],"functionName":{"name":"add","nativeSrc":"13531:3:41","nodeType":"YulIdentifier","src":"13531:3:41"},"nativeSrc":"13531:22:41","nodeType":"YulFunctionCall","src":"13531:22:41"},{"name":"dataEnd","nativeSrc":"13555:7:41","nodeType":"YulIdentifier","src":"13555:7:41"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"13505:25:41","nodeType":"YulIdentifier","src":"13505:25:41"},"nativeSrc":"13505:58:41","nodeType":"YulFunctionCall","src":"13505:58:41"},"variables":[{"name":"value1_1","nativeSrc":"13483:8:41","nodeType":"YulTypedName","src":"13483:8:41","type":""},{"name":"value2_1","nativeSrc":"13493:8:41","nodeType":"YulTypedName","src":"13493:8:41","type":""}]},{"nativeSrc":"13572:18:41","nodeType":"YulAssignment","src":"13572:18:41","value":{"name":"value1_1","nativeSrc":"13582:8:41","nodeType":"YulIdentifier","src":"13582:8:41"},"variableNames":[{"name":"value1","nativeSrc":"13572:6:41","nodeType":"YulIdentifier","src":"13572:6:41"}]},{"nativeSrc":"13599:18:41","nodeType":"YulAssignment","src":"13599:18:41","value":{"name":"value2_1","nativeSrc":"13609:8:41","nodeType":"YulIdentifier","src":"13609:8:41"},"variableNames":[{"name":"value2","nativeSrc":"13599:6:41","nodeType":"YulIdentifier","src":"13599:6:41"}]},{"nativeSrc":"13626:47:41","nodeType":"YulVariableDeclaration","src":"13626:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13658:9:41","nodeType":"YulIdentifier","src":"13658:9:41"},{"kind":"number","nativeSrc":"13669:2:41","nodeType":"YulLiteral","src":"13669:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13654:3:41","nodeType":"YulIdentifier","src":"13654:3:41"},"nativeSrc":"13654:18:41","nodeType":"YulFunctionCall","src":"13654:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"13641:12:41","nodeType":"YulIdentifier","src":"13641:12:41"},"nativeSrc":"13641:32:41","nodeType":"YulFunctionCall","src":"13641:32:41"},"variables":[{"name":"value_1","nativeSrc":"13630:7:41","nodeType":"YulTypedName","src":"13630:7:41","type":""}]},{"body":{"nativeSrc":"13735:16:41","nodeType":"YulBlock","src":"13735:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13744:1:41","nodeType":"YulLiteral","src":"13744:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"13747:1:41","nodeType":"YulLiteral","src":"13747:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13737:6:41","nodeType":"YulIdentifier","src":"13737:6:41"},"nativeSrc":"13737:12:41","nodeType":"YulFunctionCall","src":"13737:12:41"},"nativeSrc":"13737:12:41","nodeType":"YulExpressionStatement","src":"13737:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"13695:7:41","nodeType":"YulIdentifier","src":"13695:7:41"},{"arguments":[{"name":"value_1","nativeSrc":"13708:7:41","nodeType":"YulIdentifier","src":"13708:7:41"},{"kind":"number","nativeSrc":"13717:14:41","nodeType":"YulLiteral","src":"13717:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"13704:3:41","nodeType":"YulIdentifier","src":"13704:3:41"},"nativeSrc":"13704:28:41","nodeType":"YulFunctionCall","src":"13704:28:41"}],"functionName":{"name":"eq","nativeSrc":"13692:2:41","nodeType":"YulIdentifier","src":"13692:2:41"},"nativeSrc":"13692:41:41","nodeType":"YulFunctionCall","src":"13692:41:41"}],"functionName":{"name":"iszero","nativeSrc":"13685:6:41","nodeType":"YulIdentifier","src":"13685:6:41"},"nativeSrc":"13685:49:41","nodeType":"YulFunctionCall","src":"13685:49:41"},"nativeSrc":"13682:69:41","nodeType":"YulIf","src":"13682:69:41"},{"nativeSrc":"13760:17:41","nodeType":"YulAssignment","src":"13760:17:41","value":{"name":"value_1","nativeSrc":"13770:7:41","nodeType":"YulIdentifier","src":"13770:7:41"},"variableNames":[{"name":"value3","nativeSrc":"13760:6:41","nodeType":"YulIdentifier","src":"13760:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptrt_uint48","nativeSrc":"13063:720:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13127:9:41","nodeType":"YulTypedName","src":"13127:9:41","type":""},{"name":"dataEnd","nativeSrc":"13138:7:41","nodeType":"YulTypedName","src":"13138:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13150:6:41","nodeType":"YulTypedName","src":"13150:6:41","type":""},{"name":"value1","nativeSrc":"13158:6:41","nodeType":"YulTypedName","src":"13158:6:41","type":""},{"name":"value2","nativeSrc":"13166:6:41","nodeType":"YulTypedName","src":"13166:6:41","type":""},{"name":"value3","nativeSrc":"13174:6:41","nodeType":"YulTypedName","src":"13174:6:41","type":""}],"src":"13063:720:41"},{"body":{"nativeSrc":"13915:136:41","nodeType":"YulBlock","src":"13915:136:41","statements":[{"nativeSrc":"13925:26:41","nodeType":"YulAssignment","src":"13925:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"13937:9:41","nodeType":"YulIdentifier","src":"13937:9:41"},{"kind":"number","nativeSrc":"13948:2:41","nodeType":"YulLiteral","src":"13948:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13933:3:41","nodeType":"YulIdentifier","src":"13933:3:41"},"nativeSrc":"13933:18:41","nodeType":"YulFunctionCall","src":"13933:18:41"},"variableNames":[{"name":"tail","nativeSrc":"13925:4:41","nodeType":"YulIdentifier","src":"13925:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13967:9:41","nodeType":"YulIdentifier","src":"13967:9:41"},{"name":"value0","nativeSrc":"13978:6:41","nodeType":"YulIdentifier","src":"13978:6:41"}],"functionName":{"name":"mstore","nativeSrc":"13960:6:41","nodeType":"YulIdentifier","src":"13960:6:41"},"nativeSrc":"13960:25:41","nodeType":"YulFunctionCall","src":"13960:25:41"},"nativeSrc":"13960:25:41","nodeType":"YulExpressionStatement","src":"13960:25:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14005:9:41","nodeType":"YulIdentifier","src":"14005:9:41"},{"kind":"number","nativeSrc":"14016:2:41","nodeType":"YulLiteral","src":"14016:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14001:3:41","nodeType":"YulIdentifier","src":"14001:3:41"},"nativeSrc":"14001:18:41","nodeType":"YulFunctionCall","src":"14001:18:41"},{"arguments":[{"name":"value1","nativeSrc":"14025:6:41","nodeType":"YulIdentifier","src":"14025:6:41"},{"kind":"number","nativeSrc":"14033:10:41","nodeType":"YulLiteral","src":"14033:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"14021:3:41","nodeType":"YulIdentifier","src":"14021:3:41"},"nativeSrc":"14021:23:41","nodeType":"YulFunctionCall","src":"14021:23:41"}],"functionName":{"name":"mstore","nativeSrc":"13994:6:41","nodeType":"YulIdentifier","src":"13994:6:41"},"nativeSrc":"13994:51:41","nodeType":"YulFunctionCall","src":"13994:51:41"},"nativeSrc":"13994:51:41","nodeType":"YulExpressionStatement","src":"13994:51:41"}]},"name":"abi_encode_tuple_t_bytes32_t_uint32__to_t_bytes32_t_uint32__fromStack_reversed","nativeSrc":"13788:263:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13876:9:41","nodeType":"YulTypedName","src":"13876:9:41","type":""},{"name":"value1","nativeSrc":"13887:6:41","nodeType":"YulTypedName","src":"13887:6:41","type":""},{"name":"value0","nativeSrc":"13895:6:41","nodeType":"YulTypedName","src":"13895:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13906:4:41","nodeType":"YulTypedName","src":"13906:4:41","type":""}],"src":"13788:263:41"},{"body":{"nativeSrc":"14088:95:41","nodeType":"YulBlock","src":"14088:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14105:1:41","nodeType":"YulLiteral","src":"14105:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"14112:3:41","nodeType":"YulLiteral","src":"14112:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"14117:10:41","nodeType":"YulLiteral","src":"14117:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"14108:3:41","nodeType":"YulIdentifier","src":"14108:3:41"},"nativeSrc":"14108:20:41","nodeType":"YulFunctionCall","src":"14108:20:41"}],"functionName":{"name":"mstore","nativeSrc":"14098:6:41","nodeType":"YulIdentifier","src":"14098:6:41"},"nativeSrc":"14098:31:41","nodeType":"YulFunctionCall","src":"14098:31:41"},"nativeSrc":"14098:31:41","nodeType":"YulExpressionStatement","src":"14098:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14145:1:41","nodeType":"YulLiteral","src":"14145:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"14148:4:41","nodeType":"YulLiteral","src":"14148:4:41","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"14138:6:41","nodeType":"YulIdentifier","src":"14138:6:41"},"nativeSrc":"14138:15:41","nodeType":"YulFunctionCall","src":"14138:15:41"},"nativeSrc":"14138:15:41","nodeType":"YulExpressionStatement","src":"14138:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14169:1:41","nodeType":"YulLiteral","src":"14169:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"14172:4:41","nodeType":"YulLiteral","src":"14172:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"14162:6:41","nodeType":"YulIdentifier","src":"14162:6:41"},"nativeSrc":"14162:15:41","nodeType":"YulFunctionCall","src":"14162:15:41"},"nativeSrc":"14162:15:41","nodeType":"YulExpressionStatement","src":"14162:15:41"}]},"name":"panic_error_0x32","nativeSrc":"14056:127:41","nodeType":"YulFunctionDefinition","src":"14056:127:41"},{"body":{"nativeSrc":"14257:176:41","nodeType":"YulBlock","src":"14257:176:41","statements":[{"body":{"nativeSrc":"14303:16:41","nodeType":"YulBlock","src":"14303:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14312:1:41","nodeType":"YulLiteral","src":"14312:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"14315:1:41","nodeType":"YulLiteral","src":"14315:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14305:6:41","nodeType":"YulIdentifier","src":"14305:6:41"},"nativeSrc":"14305:12:41","nodeType":"YulFunctionCall","src":"14305:12:41"},"nativeSrc":"14305:12:41","nodeType":"YulExpressionStatement","src":"14305:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"14278:7:41","nodeType":"YulIdentifier","src":"14278:7:41"},{"name":"headStart","nativeSrc":"14287:9:41","nodeType":"YulIdentifier","src":"14287:9:41"}],"functionName":{"name":"sub","nativeSrc":"14274:3:41","nodeType":"YulIdentifier","src":"14274:3:41"},"nativeSrc":"14274:23:41","nodeType":"YulFunctionCall","src":"14274:23:41"},{"kind":"number","nativeSrc":"14299:2:41","nodeType":"YulLiteral","src":"14299:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"14270:3:41","nodeType":"YulIdentifier","src":"14270:3:41"},"nativeSrc":"14270:32:41","nodeType":"YulFunctionCall","src":"14270:32:41"},"nativeSrc":"14267:52:41","nodeType":"YulIf","src":"14267:52:41"},{"nativeSrc":"14328:36:41","nodeType":"YulVariableDeclaration","src":"14328:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"14354:9:41","nodeType":"YulIdentifier","src":"14354:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"14341:12:41","nodeType":"YulIdentifier","src":"14341:12:41"},"nativeSrc":"14341:23:41","nodeType":"YulFunctionCall","src":"14341:23:41"},"variables":[{"name":"value","nativeSrc":"14332:5:41","nodeType":"YulTypedName","src":"14332:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"14397:5:41","nodeType":"YulIdentifier","src":"14397:5:41"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"14373:23:41","nodeType":"YulIdentifier","src":"14373:23:41"},"nativeSrc":"14373:30:41","nodeType":"YulFunctionCall","src":"14373:30:41"},"nativeSrc":"14373:30:41","nodeType":"YulExpressionStatement","src":"14373:30:41"},{"nativeSrc":"14412:15:41","nodeType":"YulAssignment","src":"14412:15:41","value":{"name":"value","nativeSrc":"14422:5:41","nodeType":"YulIdentifier","src":"14422:5:41"},"variableNames":[{"name":"value0","nativeSrc":"14412:6:41","nodeType":"YulIdentifier","src":"14412:6:41"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14188:245:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14223:9:41","nodeType":"YulTypedName","src":"14223:9:41","type":""},{"name":"dataEnd","nativeSrc":"14234:7:41","nodeType":"YulTypedName","src":"14234:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"14246:6:41","nodeType":"YulTypedName","src":"14246:6:41","type":""}],"src":"14188:245:41"},{"body":{"nativeSrc":"14539:102:41","nodeType":"YulBlock","src":"14539:102:41","statements":[{"nativeSrc":"14549:26:41","nodeType":"YulAssignment","src":"14549:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"14561:9:41","nodeType":"YulIdentifier","src":"14561:9:41"},{"kind":"number","nativeSrc":"14572:2:41","nodeType":"YulLiteral","src":"14572:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14557:3:41","nodeType":"YulIdentifier","src":"14557:3:41"},"nativeSrc":"14557:18:41","nodeType":"YulFunctionCall","src":"14557:18:41"},"variableNames":[{"name":"tail","nativeSrc":"14549:4:41","nodeType":"YulIdentifier","src":"14549:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14591:9:41","nodeType":"YulIdentifier","src":"14591:9:41"},{"arguments":[{"name":"value0","nativeSrc":"14606:6:41","nodeType":"YulIdentifier","src":"14606:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"14622:3:41","nodeType":"YulLiteral","src":"14622:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"14627:1:41","nodeType":"YulLiteral","src":"14627:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"14618:3:41","nodeType":"YulIdentifier","src":"14618:3:41"},"nativeSrc":"14618:11:41","nodeType":"YulFunctionCall","src":"14618:11:41"},{"kind":"number","nativeSrc":"14631:1:41","nodeType":"YulLiteral","src":"14631:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"14614:3:41","nodeType":"YulIdentifier","src":"14614:3:41"},"nativeSrc":"14614:19:41","nodeType":"YulFunctionCall","src":"14614:19:41"}],"functionName":{"name":"and","nativeSrc":"14602:3:41","nodeType":"YulIdentifier","src":"14602:3:41"},"nativeSrc":"14602:32:41","nodeType":"YulFunctionCall","src":"14602:32:41"}],"functionName":{"name":"mstore","nativeSrc":"14584:6:41","nodeType":"YulIdentifier","src":"14584:6:41"},"nativeSrc":"14584:51:41","nodeType":"YulFunctionCall","src":"14584:51:41"},"nativeSrc":"14584:51:41","nodeType":"YulExpressionStatement","src":"14584:51:41"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"14438:203:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14508:9:41","nodeType":"YulTypedName","src":"14508:9:41","type":""},{"name":"value0","nativeSrc":"14519:6:41","nodeType":"YulTypedName","src":"14519:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14530:4:41","nodeType":"YulTypedName","src":"14530:4:41","type":""}],"src":"14438:203:41"},{"body":{"nativeSrc":"14801:241:41","nodeType":"YulBlock","src":"14801:241:41","statements":[{"nativeSrc":"14811:26:41","nodeType":"YulAssignment","src":"14811:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"14823:9:41","nodeType":"YulIdentifier","src":"14823:9:41"},{"kind":"number","nativeSrc":"14834:2:41","nodeType":"YulLiteral","src":"14834:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14819:3:41","nodeType":"YulIdentifier","src":"14819:3:41"},"nativeSrc":"14819:18:41","nodeType":"YulFunctionCall","src":"14819:18:41"},"variableNames":[{"name":"tail","nativeSrc":"14811:4:41","nodeType":"YulIdentifier","src":"14811:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14853:9:41","nodeType":"YulIdentifier","src":"14853:9:41"},{"arguments":[{"name":"value0","nativeSrc":"14868:6:41","nodeType":"YulIdentifier","src":"14868:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"14884:3:41","nodeType":"YulLiteral","src":"14884:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"14889:1:41","nodeType":"YulLiteral","src":"14889:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"14880:3:41","nodeType":"YulIdentifier","src":"14880:3:41"},"nativeSrc":"14880:11:41","nodeType":"YulFunctionCall","src":"14880:11:41"},{"kind":"number","nativeSrc":"14893:1:41","nodeType":"YulLiteral","src":"14893:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"14876:3:41","nodeType":"YulIdentifier","src":"14876:3:41"},"nativeSrc":"14876:19:41","nodeType":"YulFunctionCall","src":"14876:19:41"}],"functionName":{"name":"and","nativeSrc":"14864:3:41","nodeType":"YulIdentifier","src":"14864:3:41"},"nativeSrc":"14864:32:41","nodeType":"YulFunctionCall","src":"14864:32:41"}],"functionName":{"name":"mstore","nativeSrc":"14846:6:41","nodeType":"YulIdentifier","src":"14846:6:41"},"nativeSrc":"14846:51:41","nodeType":"YulFunctionCall","src":"14846:51:41"},"nativeSrc":"14846:51:41","nodeType":"YulExpressionStatement","src":"14846:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14917:9:41","nodeType":"YulIdentifier","src":"14917:9:41"},{"kind":"number","nativeSrc":"14928:2:41","nodeType":"YulLiteral","src":"14928:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14913:3:41","nodeType":"YulIdentifier","src":"14913:3:41"},"nativeSrc":"14913:18:41","nodeType":"YulFunctionCall","src":"14913:18:41"},{"arguments":[{"name":"value1","nativeSrc":"14937:6:41","nodeType":"YulIdentifier","src":"14937:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"14953:3:41","nodeType":"YulLiteral","src":"14953:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"14958:1:41","nodeType":"YulLiteral","src":"14958:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"14949:3:41","nodeType":"YulIdentifier","src":"14949:3:41"},"nativeSrc":"14949:11:41","nodeType":"YulFunctionCall","src":"14949:11:41"},{"kind":"number","nativeSrc":"14962:1:41","nodeType":"YulLiteral","src":"14962:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"14945:3:41","nodeType":"YulIdentifier","src":"14945:3:41"},"nativeSrc":"14945:19:41","nodeType":"YulFunctionCall","src":"14945:19:41"}],"functionName":{"name":"and","nativeSrc":"14933:3:41","nodeType":"YulIdentifier","src":"14933:3:41"},"nativeSrc":"14933:32:41","nodeType":"YulFunctionCall","src":"14933:32:41"}],"functionName":{"name":"mstore","nativeSrc":"14906:6:41","nodeType":"YulIdentifier","src":"14906:6:41"},"nativeSrc":"14906:60:41","nodeType":"YulFunctionCall","src":"14906:60:41"},"nativeSrc":"14906:60:41","nodeType":"YulExpressionStatement","src":"14906:60:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14986:9:41","nodeType":"YulIdentifier","src":"14986:9:41"},{"kind":"number","nativeSrc":"14997:2:41","nodeType":"YulLiteral","src":"14997:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14982:3:41","nodeType":"YulIdentifier","src":"14982:3:41"},"nativeSrc":"14982:18:41","nodeType":"YulFunctionCall","src":"14982:18:41"},{"arguments":[{"name":"value2","nativeSrc":"15006:6:41","nodeType":"YulIdentifier","src":"15006:6:41"},{"arguments":[{"kind":"number","nativeSrc":"15018:3:41","nodeType":"YulLiteral","src":"15018:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"15023:10:41","nodeType":"YulLiteral","src":"15023:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"15014:3:41","nodeType":"YulIdentifier","src":"15014:3:41"},"nativeSrc":"15014:20:41","nodeType":"YulFunctionCall","src":"15014:20:41"}],"functionName":{"name":"and","nativeSrc":"15002:3:41","nodeType":"YulIdentifier","src":"15002:3:41"},"nativeSrc":"15002:33:41","nodeType":"YulFunctionCall","src":"15002:33:41"}],"functionName":{"name":"mstore","nativeSrc":"14975:6:41","nodeType":"YulIdentifier","src":"14975:6:41"},"nativeSrc":"14975:61:41","nodeType":"YulFunctionCall","src":"14975:61:41"},"nativeSrc":"14975:61:41","nodeType":"YulExpressionStatement","src":"14975:61:41"}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"14646:396:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14754:9:41","nodeType":"YulTypedName","src":"14754:9:41","type":""},{"name":"value2","nativeSrc":"14765:6:41","nodeType":"YulTypedName","src":"14765:6:41","type":""},{"name":"value1","nativeSrc":"14773:6:41","nodeType":"YulTypedName","src":"14773:6:41","type":""},{"name":"value0","nativeSrc":"14781:6:41","nodeType":"YulTypedName","src":"14781:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14792:4:41","nodeType":"YulTypedName","src":"14792:4:41","type":""}],"src":"14646:396:41"},{"body":{"nativeSrc":"15192:145:41","nodeType":"YulBlock","src":"15192:145:41","statements":[{"nativeSrc":"15202:26:41","nodeType":"YulAssignment","src":"15202:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"15214:9:41","nodeType":"YulIdentifier","src":"15214:9:41"},{"kind":"number","nativeSrc":"15225:2:41","nodeType":"YulLiteral","src":"15225:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15210:3:41","nodeType":"YulIdentifier","src":"15210:3:41"},"nativeSrc":"15210:18:41","nodeType":"YulFunctionCall","src":"15210:18:41"},"variableNames":[{"name":"tail","nativeSrc":"15202:4:41","nodeType":"YulIdentifier","src":"15202:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15244:9:41","nodeType":"YulIdentifier","src":"15244:9:41"},{"arguments":[{"name":"value0","nativeSrc":"15259:6:41","nodeType":"YulIdentifier","src":"15259:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"15275:3:41","nodeType":"YulLiteral","src":"15275:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"15280:1:41","nodeType":"YulLiteral","src":"15280:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"15271:3:41","nodeType":"YulIdentifier","src":"15271:3:41"},"nativeSrc":"15271:11:41","nodeType":"YulFunctionCall","src":"15271:11:41"},{"kind":"number","nativeSrc":"15284:1:41","nodeType":"YulLiteral","src":"15284:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"15267:3:41","nodeType":"YulIdentifier","src":"15267:3:41"},"nativeSrc":"15267:19:41","nodeType":"YulFunctionCall","src":"15267:19:41"}],"functionName":{"name":"and","nativeSrc":"15255:3:41","nodeType":"YulIdentifier","src":"15255:3:41"},"nativeSrc":"15255:32:41","nodeType":"YulFunctionCall","src":"15255:32:41"}],"functionName":{"name":"mstore","nativeSrc":"15237:6:41","nodeType":"YulIdentifier","src":"15237:6:41"},"nativeSrc":"15237:51:41","nodeType":"YulFunctionCall","src":"15237:51:41"},"nativeSrc":"15237:51:41","nodeType":"YulExpressionStatement","src":"15237:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15308:9:41","nodeType":"YulIdentifier","src":"15308:9:41"},{"kind":"number","nativeSrc":"15319:2:41","nodeType":"YulLiteral","src":"15319:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15304:3:41","nodeType":"YulIdentifier","src":"15304:3:41"},"nativeSrc":"15304:18:41","nodeType":"YulFunctionCall","src":"15304:18:41"},{"name":"value1","nativeSrc":"15324:6:41","nodeType":"YulIdentifier","src":"15324:6:41"}],"functionName":{"name":"mstore","nativeSrc":"15297:6:41","nodeType":"YulIdentifier","src":"15297:6:41"},"nativeSrc":"15297:34:41","nodeType":"YulFunctionCall","src":"15297:34:41"},"nativeSrc":"15297:34:41","nodeType":"YulExpressionStatement","src":"15297:34:41"}]},"name":"abi_encode_tuple_t_address_payable_t_uint256__to_t_address_payable_t_uint256__fromStack_reversed","nativeSrc":"15047:290:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15153:9:41","nodeType":"YulTypedName","src":"15153:9:41","type":""},{"name":"value1","nativeSrc":"15164:6:41","nodeType":"YulTypedName","src":"15164:6:41","type":""},{"name":"value0","nativeSrc":"15172:6:41","nodeType":"YulTypedName","src":"15172:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15183:4:41","nodeType":"YulTypedName","src":"15183:4:41","type":""}],"src":"15047:290:41"},{"body":{"nativeSrc":"15409:200:41","nodeType":"YulBlock","src":"15409:200:41","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"15426:3:41","nodeType":"YulIdentifier","src":"15426:3:41"},{"name":"length","nativeSrc":"15431:6:41","nodeType":"YulIdentifier","src":"15431:6:41"}],"functionName":{"name":"mstore","nativeSrc":"15419:6:41","nodeType":"YulIdentifier","src":"15419:6:41"},"nativeSrc":"15419:19:41","nodeType":"YulFunctionCall","src":"15419:19:41"},"nativeSrc":"15419:19:41","nodeType":"YulExpressionStatement","src":"15419:19:41"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"15464:3:41","nodeType":"YulIdentifier","src":"15464:3:41"},{"kind":"number","nativeSrc":"15469:4:41","nodeType":"YulLiteral","src":"15469:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15460:3:41","nodeType":"YulIdentifier","src":"15460:3:41"},"nativeSrc":"15460:14:41","nodeType":"YulFunctionCall","src":"15460:14:41"},{"name":"start","nativeSrc":"15476:5:41","nodeType":"YulIdentifier","src":"15476:5:41"},{"name":"length","nativeSrc":"15483:6:41","nodeType":"YulIdentifier","src":"15483:6:41"}],"functionName":{"name":"calldatacopy","nativeSrc":"15447:12:41","nodeType":"YulIdentifier","src":"15447:12:41"},"nativeSrc":"15447:43:41","nodeType":"YulFunctionCall","src":"15447:43:41"},"nativeSrc":"15447:43:41","nodeType":"YulExpressionStatement","src":"15447:43:41"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"15514:3:41","nodeType":"YulIdentifier","src":"15514:3:41"},{"name":"length","nativeSrc":"15519:6:41","nodeType":"YulIdentifier","src":"15519:6:41"}],"functionName":{"name":"add","nativeSrc":"15510:3:41","nodeType":"YulIdentifier","src":"15510:3:41"},"nativeSrc":"15510:16:41","nodeType":"YulFunctionCall","src":"15510:16:41"},{"kind":"number","nativeSrc":"15528:4:41","nodeType":"YulLiteral","src":"15528:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15506:3:41","nodeType":"YulIdentifier","src":"15506:3:41"},"nativeSrc":"15506:27:41","nodeType":"YulFunctionCall","src":"15506:27:41"},{"kind":"number","nativeSrc":"15535:1:41","nodeType":"YulLiteral","src":"15535:1:41","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"15499:6:41","nodeType":"YulIdentifier","src":"15499:6:41"},"nativeSrc":"15499:38:41","nodeType":"YulFunctionCall","src":"15499:38:41"},"nativeSrc":"15499:38:41","nodeType":"YulExpressionStatement","src":"15499:38:41"},{"nativeSrc":"15546:57:41","nodeType":"YulAssignment","src":"15546:57:41","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"15561:3:41","nodeType":"YulIdentifier","src":"15561:3:41"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"15574:6:41","nodeType":"YulIdentifier","src":"15574:6:41"},{"kind":"number","nativeSrc":"15582:2:41","nodeType":"YulLiteral","src":"15582:2:41","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"15570:3:41","nodeType":"YulIdentifier","src":"15570:3:41"},"nativeSrc":"15570:15:41","nodeType":"YulFunctionCall","src":"15570:15:41"},{"arguments":[{"kind":"number","nativeSrc":"15591:2:41","nodeType":"YulLiteral","src":"15591:2:41","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"15587:3:41","nodeType":"YulIdentifier","src":"15587:3:41"},"nativeSrc":"15587:7:41","nodeType":"YulFunctionCall","src":"15587:7:41"}],"functionName":{"name":"and","nativeSrc":"15566:3:41","nodeType":"YulIdentifier","src":"15566:3:41"},"nativeSrc":"15566:29:41","nodeType":"YulFunctionCall","src":"15566:29:41"}],"functionName":{"name":"add","nativeSrc":"15557:3:41","nodeType":"YulIdentifier","src":"15557:3:41"},"nativeSrc":"15557:39:41","nodeType":"YulFunctionCall","src":"15557:39:41"},{"kind":"number","nativeSrc":"15598:4:41","nodeType":"YulLiteral","src":"15598:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15553:3:41","nodeType":"YulIdentifier","src":"15553:3:41"},"nativeSrc":"15553:50:41","nodeType":"YulFunctionCall","src":"15553:50:41"},"variableNames":[{"name":"end","nativeSrc":"15546:3:41","nodeType":"YulIdentifier","src":"15546:3:41"}]}]},"name":"abi_encode_string_calldata","nativeSrc":"15342:267:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nativeSrc":"15378:5:41","nodeType":"YulTypedName","src":"15378:5:41","type":""},{"name":"length","nativeSrc":"15385:6:41","nodeType":"YulTypedName","src":"15385:6:41","type":""},{"name":"pos","nativeSrc":"15393:3:41","nodeType":"YulTypedName","src":"15393:3:41","type":""}],"returnVariables":[{"name":"end","nativeSrc":"15401:3:41","nodeType":"YulTypedName","src":"15401:3:41","type":""}],"src":"15342:267:41"},{"body":{"nativeSrc":"15745:116:41","nodeType":"YulBlock","src":"15745:116:41","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15762:9:41","nodeType":"YulIdentifier","src":"15762:9:41"},{"kind":"number","nativeSrc":"15773:2:41","nodeType":"YulLiteral","src":"15773:2:41","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"15755:6:41","nodeType":"YulIdentifier","src":"15755:6:41"},"nativeSrc":"15755:21:41","nodeType":"YulFunctionCall","src":"15755:21:41"},"nativeSrc":"15755:21:41","nodeType":"YulExpressionStatement","src":"15755:21:41"},{"nativeSrc":"15785:70:41","nodeType":"YulAssignment","src":"15785:70:41","value":{"arguments":[{"name":"value0","nativeSrc":"15820:6:41","nodeType":"YulIdentifier","src":"15820:6:41"},{"name":"value1","nativeSrc":"15828:6:41","nodeType":"YulIdentifier","src":"15828:6:41"},{"arguments":[{"name":"headStart","nativeSrc":"15840:9:41","nodeType":"YulIdentifier","src":"15840:9:41"},{"kind":"number","nativeSrc":"15851:2:41","nodeType":"YulLiteral","src":"15851:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15836:3:41","nodeType":"YulIdentifier","src":"15836:3:41"},"nativeSrc":"15836:18:41","nodeType":"YulFunctionCall","src":"15836:18:41"}],"functionName":{"name":"abi_encode_string_calldata","nativeSrc":"15793:26:41","nodeType":"YulIdentifier","src":"15793:26:41"},"nativeSrc":"15793:62:41","nodeType":"YulFunctionCall","src":"15793:62:41"},"variableNames":[{"name":"tail","nativeSrc":"15785:4:41","nodeType":"YulIdentifier","src":"15785:4:41"}]}]},"name":"abi_encode_tuple_t_string_calldata_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"15614:247:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15706:9:41","nodeType":"YulTypedName","src":"15706:9:41","type":""},{"name":"value1","nativeSrc":"15717:6:41","nodeType":"YulTypedName","src":"15717:6:41","type":""},{"name":"value0","nativeSrc":"15725:6:41","nodeType":"YulTypedName","src":"15725:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15736:4:41","nodeType":"YulTypedName","src":"15736:4:41","type":""}],"src":"15614:247:41"},{"body":{"nativeSrc":"15946:169:41","nodeType":"YulBlock","src":"15946:169:41","statements":[{"body":{"nativeSrc":"15992:16:41","nodeType":"YulBlock","src":"15992:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16001:1:41","nodeType":"YulLiteral","src":"16001:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"16004:1:41","nodeType":"YulLiteral","src":"16004:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15994:6:41","nodeType":"YulIdentifier","src":"15994:6:41"},"nativeSrc":"15994:12:41","nodeType":"YulFunctionCall","src":"15994:12:41"},"nativeSrc":"15994:12:41","nodeType":"YulExpressionStatement","src":"15994:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15967:7:41","nodeType":"YulIdentifier","src":"15967:7:41"},{"name":"headStart","nativeSrc":"15976:9:41","nodeType":"YulIdentifier","src":"15976:9:41"}],"functionName":{"name":"sub","nativeSrc":"15963:3:41","nodeType":"YulIdentifier","src":"15963:3:41"},"nativeSrc":"15963:23:41","nodeType":"YulFunctionCall","src":"15963:23:41"},{"kind":"number","nativeSrc":"15988:2:41","nodeType":"YulLiteral","src":"15988:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"15959:3:41","nodeType":"YulIdentifier","src":"15959:3:41"},"nativeSrc":"15959:32:41","nodeType":"YulFunctionCall","src":"15959:32:41"},"nativeSrc":"15956:52:41","nodeType":"YulIf","src":"15956:52:41"},{"nativeSrc":"16017:29:41","nodeType":"YulVariableDeclaration","src":"16017:29:41","value":{"arguments":[{"name":"headStart","nativeSrc":"16036:9:41","nodeType":"YulIdentifier","src":"16036:9:41"}],"functionName":{"name":"mload","nativeSrc":"16030:5:41","nodeType":"YulIdentifier","src":"16030:5:41"},"nativeSrc":"16030:16:41","nodeType":"YulFunctionCall","src":"16030:16:41"},"variables":[{"name":"value","nativeSrc":"16021:5:41","nodeType":"YulTypedName","src":"16021:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"16079:5:41","nodeType":"YulIdentifier","src":"16079:5:41"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"16055:23:41","nodeType":"YulIdentifier","src":"16055:23:41"},"nativeSrc":"16055:30:41","nodeType":"YulFunctionCall","src":"16055:30:41"},"nativeSrc":"16055:30:41","nodeType":"YulExpressionStatement","src":"16055:30:41"},{"nativeSrc":"16094:15:41","nodeType":"YulAssignment","src":"16094:15:41","value":{"name":"value","nativeSrc":"16104:5:41","nodeType":"YulIdentifier","src":"16104:5:41"},"variableNames":[{"name":"value0","nativeSrc":"16094:6:41","nodeType":"YulIdentifier","src":"16094:6:41"}]}]},"name":"abi_decode_tuple_t_bytes4_fromMemory","nativeSrc":"15866:249:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15912:9:41","nodeType":"YulTypedName","src":"15912:9:41","type":""},{"name":"dataEnd","nativeSrc":"15923:7:41","nodeType":"YulTypedName","src":"15923:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15935:6:41","nodeType":"YulTypedName","src":"15935:6:41","type":""}],"src":"15866:249:41"},{"body":{"nativeSrc":"16305:254:41","nodeType":"YulBlock","src":"16305:254:41","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16322:9:41","nodeType":"YulIdentifier","src":"16322:9:41"},{"arguments":[{"name":"value0","nativeSrc":"16337:6:41","nodeType":"YulIdentifier","src":"16337:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16353:3:41","nodeType":"YulLiteral","src":"16353:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"16358:1:41","nodeType":"YulLiteral","src":"16358:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16349:3:41","nodeType":"YulIdentifier","src":"16349:3:41"},"nativeSrc":"16349:11:41","nodeType":"YulFunctionCall","src":"16349:11:41"},{"kind":"number","nativeSrc":"16362:1:41","nodeType":"YulLiteral","src":"16362:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16345:3:41","nodeType":"YulIdentifier","src":"16345:3:41"},"nativeSrc":"16345:19:41","nodeType":"YulFunctionCall","src":"16345:19:41"}],"functionName":{"name":"and","nativeSrc":"16333:3:41","nodeType":"YulIdentifier","src":"16333:3:41"},"nativeSrc":"16333:32:41","nodeType":"YulFunctionCall","src":"16333:32:41"}],"functionName":{"name":"mstore","nativeSrc":"16315:6:41","nodeType":"YulIdentifier","src":"16315:6:41"},"nativeSrc":"16315:51:41","nodeType":"YulFunctionCall","src":"16315:51:41"},"nativeSrc":"16315:51:41","nodeType":"YulExpressionStatement","src":"16315:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16386:9:41","nodeType":"YulIdentifier","src":"16386:9:41"},{"kind":"number","nativeSrc":"16397:2:41","nodeType":"YulLiteral","src":"16397:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16382:3:41","nodeType":"YulIdentifier","src":"16382:3:41"},"nativeSrc":"16382:18:41","nodeType":"YulFunctionCall","src":"16382:18:41"},{"arguments":[{"name":"value1","nativeSrc":"16406:6:41","nodeType":"YulIdentifier","src":"16406:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16422:3:41","nodeType":"YulLiteral","src":"16422:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"16427:1:41","nodeType":"YulLiteral","src":"16427:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16418:3:41","nodeType":"YulIdentifier","src":"16418:3:41"},"nativeSrc":"16418:11:41","nodeType":"YulFunctionCall","src":"16418:11:41"},{"kind":"number","nativeSrc":"16431:1:41","nodeType":"YulLiteral","src":"16431:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16414:3:41","nodeType":"YulIdentifier","src":"16414:3:41"},"nativeSrc":"16414:19:41","nodeType":"YulFunctionCall","src":"16414:19:41"}],"functionName":{"name":"and","nativeSrc":"16402:3:41","nodeType":"YulIdentifier","src":"16402:3:41"},"nativeSrc":"16402:32:41","nodeType":"YulFunctionCall","src":"16402:32:41"}],"functionName":{"name":"mstore","nativeSrc":"16375:6:41","nodeType":"YulIdentifier","src":"16375:6:41"},"nativeSrc":"16375:60:41","nodeType":"YulFunctionCall","src":"16375:60:41"},"nativeSrc":"16375:60:41","nodeType":"YulExpressionStatement","src":"16375:60:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16455:9:41","nodeType":"YulIdentifier","src":"16455:9:41"},{"kind":"number","nativeSrc":"16466:2:41","nodeType":"YulLiteral","src":"16466:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16451:3:41","nodeType":"YulIdentifier","src":"16451:3:41"},"nativeSrc":"16451:18:41","nodeType":"YulFunctionCall","src":"16451:18:41"},{"kind":"number","nativeSrc":"16471:2:41","nodeType":"YulLiteral","src":"16471:2:41","type":"","value":"96"}],"functionName":{"name":"mstore","nativeSrc":"16444:6:41","nodeType":"YulIdentifier","src":"16444:6:41"},"nativeSrc":"16444:30:41","nodeType":"YulFunctionCall","src":"16444:30:41"},"nativeSrc":"16444:30:41","nodeType":"YulExpressionStatement","src":"16444:30:41"},{"nativeSrc":"16483:70:41","nodeType":"YulAssignment","src":"16483:70:41","value":{"arguments":[{"name":"value2","nativeSrc":"16518:6:41","nodeType":"YulIdentifier","src":"16518:6:41"},{"name":"value3","nativeSrc":"16526:6:41","nodeType":"YulIdentifier","src":"16526:6:41"},{"arguments":[{"name":"headStart","nativeSrc":"16538:9:41","nodeType":"YulIdentifier","src":"16538:9:41"},{"kind":"number","nativeSrc":"16549:2:41","nodeType":"YulLiteral","src":"16549:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16534:3:41","nodeType":"YulIdentifier","src":"16534:3:41"},"nativeSrc":"16534:18:41","nodeType":"YulFunctionCall","src":"16534:18:41"}],"functionName":{"name":"abi_encode_string_calldata","nativeSrc":"16491:26:41","nodeType":"YulIdentifier","src":"16491:26:41"},"nativeSrc":"16491:62:41","nodeType":"YulFunctionCall","src":"16491:62:41"},"variableNames":[{"name":"tail","nativeSrc":"16483:4:41","nodeType":"YulIdentifier","src":"16483:4:41"}]}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes_calldata_ptr__to_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"16120:439:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16250:9:41","nodeType":"YulTypedName","src":"16250:9:41","type":""},{"name":"value3","nativeSrc":"16261:6:41","nodeType":"YulTypedName","src":"16261:6:41","type":""},{"name":"value2","nativeSrc":"16269:6:41","nodeType":"YulTypedName","src":"16269:6:41","type":""},{"name":"value1","nativeSrc":"16277:6:41","nodeType":"YulTypedName","src":"16277:6:41","type":""},{"name":"value0","nativeSrc":"16285:6:41","nodeType":"YulTypedName","src":"16285:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16296:4:41","nodeType":"YulTypedName","src":"16296:4:41","type":""}],"src":"16120:439:41"},{"body":{"nativeSrc":"16596:95:41","nodeType":"YulBlock","src":"16596:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16613:1:41","nodeType":"YulLiteral","src":"16613:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"16620:3:41","nodeType":"YulLiteral","src":"16620:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"16625:10:41","nodeType":"YulLiteral","src":"16625:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"16616:3:41","nodeType":"YulIdentifier","src":"16616:3:41"},"nativeSrc":"16616:20:41","nodeType":"YulFunctionCall","src":"16616:20:41"}],"functionName":{"name":"mstore","nativeSrc":"16606:6:41","nodeType":"YulIdentifier","src":"16606:6:41"},"nativeSrc":"16606:31:41","nodeType":"YulFunctionCall","src":"16606:31:41"},"nativeSrc":"16606:31:41","nodeType":"YulExpressionStatement","src":"16606:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"16653:1:41","nodeType":"YulLiteral","src":"16653:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"16656:4:41","nodeType":"YulLiteral","src":"16656:4:41","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"16646:6:41","nodeType":"YulIdentifier","src":"16646:6:41"},"nativeSrc":"16646:15:41","nodeType":"YulFunctionCall","src":"16646:15:41"},"nativeSrc":"16646:15:41","nodeType":"YulExpressionStatement","src":"16646:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"16677:1:41","nodeType":"YulLiteral","src":"16677:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"16680:4:41","nodeType":"YulLiteral","src":"16680:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"16670:6:41","nodeType":"YulIdentifier","src":"16670:6:41"},"nativeSrc":"16670:15:41","nodeType":"YulFunctionCall","src":"16670:15:41"},"nativeSrc":"16670:15:41","nodeType":"YulExpressionStatement","src":"16670:15:41"}]},"name":"panic_error_0x11","nativeSrc":"16564:127:41","nodeType":"YulFunctionDefinition","src":"16564:127:41"},{"body":{"nativeSrc":"16745:79:41","nodeType":"YulBlock","src":"16745:79:41","statements":[{"nativeSrc":"16755:17:41","nodeType":"YulAssignment","src":"16755:17:41","value":{"arguments":[{"name":"x","nativeSrc":"16767:1:41","nodeType":"YulIdentifier","src":"16767:1:41"},{"name":"y","nativeSrc":"16770:1:41","nodeType":"YulIdentifier","src":"16770:1:41"}],"functionName":{"name":"sub","nativeSrc":"16763:3:41","nodeType":"YulIdentifier","src":"16763:3:41"},"nativeSrc":"16763:9:41","nodeType":"YulFunctionCall","src":"16763:9:41"},"variableNames":[{"name":"diff","nativeSrc":"16755:4:41","nodeType":"YulIdentifier","src":"16755:4:41"}]},{"body":{"nativeSrc":"16796:22:41","nodeType":"YulBlock","src":"16796:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"16798:16:41","nodeType":"YulIdentifier","src":"16798:16:41"},"nativeSrc":"16798:18:41","nodeType":"YulFunctionCall","src":"16798:18:41"},"nativeSrc":"16798:18:41","nodeType":"YulExpressionStatement","src":"16798:18:41"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"16787:4:41","nodeType":"YulIdentifier","src":"16787:4:41"},{"name":"x","nativeSrc":"16793:1:41","nodeType":"YulIdentifier","src":"16793:1:41"}],"functionName":{"name":"gt","nativeSrc":"16784:2:41","nodeType":"YulIdentifier","src":"16784:2:41"},"nativeSrc":"16784:11:41","nodeType":"YulFunctionCall","src":"16784:11:41"},"nativeSrc":"16781:37:41","nodeType":"YulIf","src":"16781:37:41"}]},"name":"checked_sub_t_uint256","nativeSrc":"16696:128:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"16727:1:41","nodeType":"YulTypedName","src":"16727:1:41","type":""},{"name":"y","nativeSrc":"16730:1:41","nodeType":"YulTypedName","src":"16730:1:41","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"16736:4:41","nodeType":"YulTypedName","src":"16736:4:41","type":""}],"src":"16696:128:41"},{"body":{"nativeSrc":"16959:201:41","nodeType":"YulBlock","src":"16959:201:41","statements":[{"body":{"nativeSrc":"16997:16:41","nodeType":"YulBlock","src":"16997:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17006:1:41","nodeType":"YulLiteral","src":"17006:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"17009:1:41","nodeType":"YulLiteral","src":"17009:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16999:6:41","nodeType":"YulIdentifier","src":"16999:6:41"},"nativeSrc":"16999:12:41","nodeType":"YulFunctionCall","src":"16999:12:41"},"nativeSrc":"16999:12:41","nodeType":"YulExpressionStatement","src":"16999:12:41"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"16975:10:41","nodeType":"YulIdentifier","src":"16975:10:41"},{"name":"endIndex","nativeSrc":"16987:8:41","nodeType":"YulIdentifier","src":"16987:8:41"}],"functionName":{"name":"gt","nativeSrc":"16972:2:41","nodeType":"YulIdentifier","src":"16972:2:41"},"nativeSrc":"16972:24:41","nodeType":"YulFunctionCall","src":"16972:24:41"},"nativeSrc":"16969:44:41","nodeType":"YulIf","src":"16969:44:41"},{"body":{"nativeSrc":"17046:16:41","nodeType":"YulBlock","src":"17046:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17055:1:41","nodeType":"YulLiteral","src":"17055:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"17058:1:41","nodeType":"YulLiteral","src":"17058:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17048:6:41","nodeType":"YulIdentifier","src":"17048:6:41"},"nativeSrc":"17048:12:41","nodeType":"YulFunctionCall","src":"17048:12:41"},"nativeSrc":"17048:12:41","nodeType":"YulExpressionStatement","src":"17048:12:41"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"17028:8:41","nodeType":"YulIdentifier","src":"17028:8:41"},{"name":"length","nativeSrc":"17038:6:41","nodeType":"YulIdentifier","src":"17038:6:41"}],"functionName":{"name":"gt","nativeSrc":"17025:2:41","nodeType":"YulIdentifier","src":"17025:2:41"},"nativeSrc":"17025:20:41","nodeType":"YulFunctionCall","src":"17025:20:41"},"nativeSrc":"17022:40:41","nodeType":"YulIf","src":"17022:40:41"},{"nativeSrc":"17071:36:41","nodeType":"YulAssignment","src":"17071:36:41","value":{"arguments":[{"name":"offset","nativeSrc":"17088:6:41","nodeType":"YulIdentifier","src":"17088:6:41"},{"name":"startIndex","nativeSrc":"17096:10:41","nodeType":"YulIdentifier","src":"17096:10:41"}],"functionName":{"name":"add","nativeSrc":"17084:3:41","nodeType":"YulIdentifier","src":"17084:3:41"},"nativeSrc":"17084:23:41","nodeType":"YulFunctionCall","src":"17084:23:41"},"variableNames":[{"name":"offsetOut","nativeSrc":"17071:9:41","nodeType":"YulIdentifier","src":"17071:9:41"}]},{"nativeSrc":"17116:38:41","nodeType":"YulAssignment","src":"17116:38:41","value":{"arguments":[{"name":"endIndex","nativeSrc":"17133:8:41","nodeType":"YulIdentifier","src":"17133:8:41"},{"name":"startIndex","nativeSrc":"17143:10:41","nodeType":"YulIdentifier","src":"17143:10:41"}],"functionName":{"name":"sub","nativeSrc":"17129:3:41","nodeType":"YulIdentifier","src":"17129:3:41"},"nativeSrc":"17129:25:41","nodeType":"YulFunctionCall","src":"17129:25:41"},"variableNames":[{"name":"lengthOut","nativeSrc":"17116:9:41","nodeType":"YulIdentifier","src":"17116:9:41"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"16829:331:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"16893:6:41","nodeType":"YulTypedName","src":"16893:6:41","type":""},{"name":"length","nativeSrc":"16901:6:41","nodeType":"YulTypedName","src":"16901:6:41","type":""},{"name":"startIndex","nativeSrc":"16909:10:41","nodeType":"YulTypedName","src":"16909:10:41","type":""},{"name":"endIndex","nativeSrc":"16921:8:41","nodeType":"YulTypedName","src":"16921:8:41","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"16934:9:41","nodeType":"YulTypedName","src":"16934:9:41","type":""},{"name":"lengthOut","nativeSrc":"16945:9:41","nodeType":"YulTypedName","src":"16945:9:41","type":""}],"src":"16829:331:41"},{"body":{"nativeSrc":"17197:95:41","nodeType":"YulBlock","src":"17197:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17214:1:41","nodeType":"YulLiteral","src":"17214:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"17221:3:41","nodeType":"YulLiteral","src":"17221:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"17226:10:41","nodeType":"YulLiteral","src":"17226:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"17217:3:41","nodeType":"YulIdentifier","src":"17217:3:41"},"nativeSrc":"17217:20:41","nodeType":"YulFunctionCall","src":"17217:20:41"}],"functionName":{"name":"mstore","nativeSrc":"17207:6:41","nodeType":"YulIdentifier","src":"17207:6:41"},"nativeSrc":"17207:31:41","nodeType":"YulFunctionCall","src":"17207:31:41"},"nativeSrc":"17207:31:41","nodeType":"YulExpressionStatement","src":"17207:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"17254:1:41","nodeType":"YulLiteral","src":"17254:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"17257:4:41","nodeType":"YulLiteral","src":"17257:4:41","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"17247:6:41","nodeType":"YulIdentifier","src":"17247:6:41"},"nativeSrc":"17247:15:41","nodeType":"YulFunctionCall","src":"17247:15:41"},"nativeSrc":"17247:15:41","nodeType":"YulExpressionStatement","src":"17247:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"17278:1:41","nodeType":"YulLiteral","src":"17278:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"17281:4:41","nodeType":"YulLiteral","src":"17281:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"17271:6:41","nodeType":"YulIdentifier","src":"17271:6:41"},"nativeSrc":"17271:15:41","nodeType":"YulFunctionCall","src":"17271:15:41"},"nativeSrc":"17271:15:41","nodeType":"YulExpressionStatement","src":"17271:15:41"}]},"name":"panic_error_0x41","nativeSrc":"17165:127:41","nodeType":"YulFunctionDefinition","src":"17165:127:41"},{"body":{"nativeSrc":"17391:427:41","nodeType":"YulBlock","src":"17391:427:41","statements":[{"nativeSrc":"17401:51:41","nodeType":"YulVariableDeclaration","src":"17401:51:41","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"17440:11:41","nodeType":"YulIdentifier","src":"17440:11:41"}],"functionName":{"name":"calldataload","nativeSrc":"17427:12:41","nodeType":"YulIdentifier","src":"17427:12:41"},"nativeSrc":"17427:25:41","nodeType":"YulFunctionCall","src":"17427:25:41"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"17405:18:41","nodeType":"YulTypedName","src":"17405:18:41","type":""}]},{"body":{"nativeSrc":"17541:16:41","nodeType":"YulBlock","src":"17541:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17550:1:41","nodeType":"YulLiteral","src":"17550:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"17553:1:41","nodeType":"YulLiteral","src":"17553:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17543:6:41","nodeType":"YulIdentifier","src":"17543:6:41"},"nativeSrc":"17543:12:41","nodeType":"YulFunctionCall","src":"17543:12:41"},"nativeSrc":"17543:12:41","nodeType":"YulExpressionStatement","src":"17543:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"17475:18:41","nodeType":"YulIdentifier","src":"17475:18:41"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"17503:12:41","nodeType":"YulIdentifier","src":"17503:12:41"},"nativeSrc":"17503:14:41","nodeType":"YulFunctionCall","src":"17503:14:41"},{"name":"base_ref","nativeSrc":"17519:8:41","nodeType":"YulIdentifier","src":"17519:8:41"}],"functionName":{"name":"sub","nativeSrc":"17499:3:41","nodeType":"YulIdentifier","src":"17499:3:41"},"nativeSrc":"17499:29:41","nodeType":"YulFunctionCall","src":"17499:29:41"},{"arguments":[{"kind":"number","nativeSrc":"17534:2:41","nodeType":"YulLiteral","src":"17534:2:41","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"17530:3:41","nodeType":"YulIdentifier","src":"17530:3:41"},"nativeSrc":"17530:7:41","nodeType":"YulFunctionCall","src":"17530:7:41"}],"functionName":{"name":"add","nativeSrc":"17495:3:41","nodeType":"YulIdentifier","src":"17495:3:41"},"nativeSrc":"17495:43:41","nodeType":"YulFunctionCall","src":"17495:43:41"}],"functionName":{"name":"slt","nativeSrc":"17471:3:41","nodeType":"YulIdentifier","src":"17471:3:41"},"nativeSrc":"17471:68:41","nodeType":"YulFunctionCall","src":"17471:68:41"}],"functionName":{"name":"iszero","nativeSrc":"17464:6:41","nodeType":"YulIdentifier","src":"17464:6:41"},"nativeSrc":"17464:76:41","nodeType":"YulFunctionCall","src":"17464:76:41"},"nativeSrc":"17461:96:41","nodeType":"YulIf","src":"17461:96:41"},{"nativeSrc":"17566:47:41","nodeType":"YulVariableDeclaration","src":"17566:47:41","value":{"arguments":[{"name":"base_ref","nativeSrc":"17584:8:41","nodeType":"YulIdentifier","src":"17584:8:41"},{"name":"rel_offset_of_tail","nativeSrc":"17594:18:41","nodeType":"YulIdentifier","src":"17594:18:41"}],"functionName":{"name":"add","nativeSrc":"17580:3:41","nodeType":"YulIdentifier","src":"17580:3:41"},"nativeSrc":"17580:33:41","nodeType":"YulFunctionCall","src":"17580:33:41"},"variables":[{"name":"addr_1","nativeSrc":"17570:6:41","nodeType":"YulTypedName","src":"17570:6:41","type":""}]},{"nativeSrc":"17622:30:41","nodeType":"YulAssignment","src":"17622:30:41","value":{"arguments":[{"name":"addr_1","nativeSrc":"17645:6:41","nodeType":"YulIdentifier","src":"17645:6:41"}],"functionName":{"name":"calldataload","nativeSrc":"17632:12:41","nodeType":"YulIdentifier","src":"17632:12:41"},"nativeSrc":"17632:20:41","nodeType":"YulFunctionCall","src":"17632:20:41"},"variableNames":[{"name":"length","nativeSrc":"17622:6:41","nodeType":"YulIdentifier","src":"17622:6:41"}]},{"body":{"nativeSrc":"17695:16:41","nodeType":"YulBlock","src":"17695:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17704:1:41","nodeType":"YulLiteral","src":"17704:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"17707:1:41","nodeType":"YulLiteral","src":"17707:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17697:6:41","nodeType":"YulIdentifier","src":"17697:6:41"},"nativeSrc":"17697:12:41","nodeType":"YulFunctionCall","src":"17697:12:41"},"nativeSrc":"17697:12:41","nodeType":"YulExpressionStatement","src":"17697:12:41"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"17667:6:41","nodeType":"YulIdentifier","src":"17667:6:41"},{"kind":"number","nativeSrc":"17675:18:41","nodeType":"YulLiteral","src":"17675:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"17664:2:41","nodeType":"YulIdentifier","src":"17664:2:41"},"nativeSrc":"17664:30:41","nodeType":"YulFunctionCall","src":"17664:30:41"},"nativeSrc":"17661:50:41","nodeType":"YulIf","src":"17661:50:41"},{"nativeSrc":"17720:25:41","nodeType":"YulAssignment","src":"17720:25:41","value":{"arguments":[{"name":"addr_1","nativeSrc":"17732:6:41","nodeType":"YulIdentifier","src":"17732:6:41"},{"kind":"number","nativeSrc":"17740:4:41","nodeType":"YulLiteral","src":"17740:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"17728:3:41","nodeType":"YulIdentifier","src":"17728:3:41"},"nativeSrc":"17728:17:41","nodeType":"YulFunctionCall","src":"17728:17:41"},"variableNames":[{"name":"addr","nativeSrc":"17720:4:41","nodeType":"YulIdentifier","src":"17720:4:41"}]},{"body":{"nativeSrc":"17796:16:41","nodeType":"YulBlock","src":"17796:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17805:1:41","nodeType":"YulLiteral","src":"17805:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"17808:1:41","nodeType":"YulLiteral","src":"17808:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17798:6:41","nodeType":"YulIdentifier","src":"17798:6:41"},"nativeSrc":"17798:12:41","nodeType":"YulFunctionCall","src":"17798:12:41"},"nativeSrc":"17798:12:41","nodeType":"YulExpressionStatement","src":"17798:12:41"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"17761:4:41","nodeType":"YulIdentifier","src":"17761:4:41"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"17771:12:41","nodeType":"YulIdentifier","src":"17771:12:41"},"nativeSrc":"17771:14:41","nodeType":"YulFunctionCall","src":"17771:14:41"},{"name":"length","nativeSrc":"17787:6:41","nodeType":"YulIdentifier","src":"17787:6:41"}],"functionName":{"name":"sub","nativeSrc":"17767:3:41","nodeType":"YulIdentifier","src":"17767:3:41"},"nativeSrc":"17767:27:41","nodeType":"YulFunctionCall","src":"17767:27:41"}],"functionName":{"name":"sgt","nativeSrc":"17757:3:41","nodeType":"YulIdentifier","src":"17757:3:41"},"nativeSrc":"17757:38:41","nodeType":"YulFunctionCall","src":"17757:38:41"},"nativeSrc":"17754:58:41","nodeType":"YulIf","src":"17754:58:41"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"17297:521:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"17348:8:41","nodeType":"YulTypedName","src":"17348:8:41","type":""},{"name":"ptr_to_tail","nativeSrc":"17358:11:41","nodeType":"YulTypedName","src":"17358:11:41","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"17374:4:41","nodeType":"YulTypedName","src":"17374:4:41","type":""},{"name":"length","nativeSrc":"17380:6:41","nodeType":"YulTypedName","src":"17380:6:41","type":""}],"src":"17297:521:41"},{"body":{"nativeSrc":"17872:162:41","nodeType":"YulBlock","src":"17872:162:41","statements":[{"nativeSrc":"17882:26:41","nodeType":"YulVariableDeclaration","src":"17882:26:41","value":{"arguments":[{"name":"value","nativeSrc":"17902:5:41","nodeType":"YulIdentifier","src":"17902:5:41"}],"functionName":{"name":"mload","nativeSrc":"17896:5:41","nodeType":"YulIdentifier","src":"17896:5:41"},"nativeSrc":"17896:12:41","nodeType":"YulFunctionCall","src":"17896:12:41"},"variables":[{"name":"length","nativeSrc":"17886:6:41","nodeType":"YulTypedName","src":"17886:6:41","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"17923:3:41","nodeType":"YulIdentifier","src":"17923:3:41"},{"arguments":[{"name":"value","nativeSrc":"17932:5:41","nodeType":"YulIdentifier","src":"17932:5:41"},{"kind":"number","nativeSrc":"17939:4:41","nodeType":"YulLiteral","src":"17939:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"17928:3:41","nodeType":"YulIdentifier","src":"17928:3:41"},"nativeSrc":"17928:16:41","nodeType":"YulFunctionCall","src":"17928:16:41"},{"name":"length","nativeSrc":"17946:6:41","nodeType":"YulIdentifier","src":"17946:6:41"}],"functionName":{"name":"mcopy","nativeSrc":"17917:5:41","nodeType":"YulIdentifier","src":"17917:5:41"},"nativeSrc":"17917:36:41","nodeType":"YulFunctionCall","src":"17917:36:41"},"nativeSrc":"17917:36:41","nodeType":"YulExpressionStatement","src":"17917:36:41"},{"nativeSrc":"17962:26:41","nodeType":"YulVariableDeclaration","src":"17962:26:41","value":{"arguments":[{"name":"pos","nativeSrc":"17976:3:41","nodeType":"YulIdentifier","src":"17976:3:41"},{"name":"length","nativeSrc":"17981:6:41","nodeType":"YulIdentifier","src":"17981:6:41"}],"functionName":{"name":"add","nativeSrc":"17972:3:41","nodeType":"YulIdentifier","src":"17972:3:41"},"nativeSrc":"17972:16:41","nodeType":"YulFunctionCall","src":"17972:16:41"},"variables":[{"name":"_1","nativeSrc":"17966:2:41","nodeType":"YulTypedName","src":"17966:2:41","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"18004:2:41","nodeType":"YulIdentifier","src":"18004:2:41"},{"kind":"number","nativeSrc":"18008:1:41","nodeType":"YulLiteral","src":"18008:1:41","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"17997:6:41","nodeType":"YulIdentifier","src":"17997:6:41"},"nativeSrc":"17997:13:41","nodeType":"YulFunctionCall","src":"17997:13:41"},"nativeSrc":"17997:13:41","nodeType":"YulExpressionStatement","src":"17997:13:41"},{"nativeSrc":"18019:9:41","nodeType":"YulAssignment","src":"18019:9:41","value":{"name":"_1","nativeSrc":"18026:2:41","nodeType":"YulIdentifier","src":"18026:2:41"},"variableNames":[{"name":"end","nativeSrc":"18019:3:41","nodeType":"YulIdentifier","src":"18019:3:41"}]}]},"name":"abi_encode_bytes","nativeSrc":"17823:211:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"17849:5:41","nodeType":"YulTypedName","src":"17849:5:41","type":""},{"name":"pos","nativeSrc":"17856:3:41","nodeType":"YulTypedName","src":"17856:3:41","type":""}],"returnVariables":[{"name":"end","nativeSrc":"17864:3:41","nodeType":"YulTypedName","src":"17864:3:41","type":""}],"src":"17823:211:41"},{"body":{"nativeSrc":"18232:150:41","nodeType":"YulBlock","src":"18232:150:41","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"18255:3:41","nodeType":"YulIdentifier","src":"18255:3:41"},{"name":"value0","nativeSrc":"18260:6:41","nodeType":"YulIdentifier","src":"18260:6:41"},{"name":"value1","nativeSrc":"18268:6:41","nodeType":"YulIdentifier","src":"18268:6:41"}],"functionName":{"name":"calldatacopy","nativeSrc":"18242:12:41","nodeType":"YulIdentifier","src":"18242:12:41"},"nativeSrc":"18242:33:41","nodeType":"YulFunctionCall","src":"18242:33:41"},"nativeSrc":"18242:33:41","nodeType":"YulExpressionStatement","src":"18242:33:41"},{"nativeSrc":"18284:26:41","nodeType":"YulVariableDeclaration","src":"18284:26:41","value":{"arguments":[{"name":"pos","nativeSrc":"18298:3:41","nodeType":"YulIdentifier","src":"18298:3:41"},{"name":"value1","nativeSrc":"18303:6:41","nodeType":"YulIdentifier","src":"18303:6:41"}],"functionName":{"name":"add","nativeSrc":"18294:3:41","nodeType":"YulIdentifier","src":"18294:3:41"},"nativeSrc":"18294:16:41","nodeType":"YulFunctionCall","src":"18294:16:41"},"variables":[{"name":"_1","nativeSrc":"18288:2:41","nodeType":"YulTypedName","src":"18288:2:41","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"18326:2:41","nodeType":"YulIdentifier","src":"18326:2:41"},{"kind":"number","nativeSrc":"18330:1:41","nodeType":"YulLiteral","src":"18330:1:41","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"18319:6:41","nodeType":"YulIdentifier","src":"18319:6:41"},"nativeSrc":"18319:13:41","nodeType":"YulFunctionCall","src":"18319:13:41"},"nativeSrc":"18319:13:41","nodeType":"YulExpressionStatement","src":"18319:13:41"},{"nativeSrc":"18341:35:41","nodeType":"YulAssignment","src":"18341:35:41","value":{"arguments":[{"name":"value2","nativeSrc":"18365:6:41","nodeType":"YulIdentifier","src":"18365:6:41"},{"name":"_1","nativeSrc":"18373:2:41","nodeType":"YulIdentifier","src":"18373:2:41"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"18348:16:41","nodeType":"YulIdentifier","src":"18348:16:41"},"nativeSrc":"18348:28:41","nodeType":"YulFunctionCall","src":"18348:28:41"},"variableNames":[{"name":"end","nativeSrc":"18341:3:41","nodeType":"YulIdentifier","src":"18341:3:41"}]}]},"name":"abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"18039:343:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"18192:3:41","nodeType":"YulTypedName","src":"18192:3:41","type":""},{"name":"value2","nativeSrc":"18197:6:41","nodeType":"YulTypedName","src":"18197:6:41","type":""},{"name":"value1","nativeSrc":"18205:6:41","nodeType":"YulTypedName","src":"18205:6:41","type":""},{"name":"value0","nativeSrc":"18213:6:41","nodeType":"YulTypedName","src":"18213:6:41","type":""}],"returnVariables":[{"name":"end","nativeSrc":"18224:3:41","nodeType":"YulTypedName","src":"18224:3:41","type":""}],"src":"18039:343:41"},{"body":{"nativeSrc":"18468:103:41","nodeType":"YulBlock","src":"18468:103:41","statements":[{"body":{"nativeSrc":"18514:16:41","nodeType":"YulBlock","src":"18514:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18523:1:41","nodeType":"YulLiteral","src":"18523:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"18526:1:41","nodeType":"YulLiteral","src":"18526:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18516:6:41","nodeType":"YulIdentifier","src":"18516:6:41"},"nativeSrc":"18516:12:41","nodeType":"YulFunctionCall","src":"18516:12:41"},"nativeSrc":"18516:12:41","nodeType":"YulExpressionStatement","src":"18516:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18489:7:41","nodeType":"YulIdentifier","src":"18489:7:41"},{"name":"headStart","nativeSrc":"18498:9:41","nodeType":"YulIdentifier","src":"18498:9:41"}],"functionName":{"name":"sub","nativeSrc":"18485:3:41","nodeType":"YulIdentifier","src":"18485:3:41"},"nativeSrc":"18485:23:41","nodeType":"YulFunctionCall","src":"18485:23:41"},{"kind":"number","nativeSrc":"18510:2:41","nodeType":"YulLiteral","src":"18510:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"18481:3:41","nodeType":"YulIdentifier","src":"18481:3:41"},"nativeSrc":"18481:32:41","nodeType":"YulFunctionCall","src":"18481:32:41"},"nativeSrc":"18478:52:41","nodeType":"YulIf","src":"18478:52:41"},{"nativeSrc":"18539:26:41","nodeType":"YulAssignment","src":"18539:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"18555:9:41","nodeType":"YulIdentifier","src":"18555:9:41"}],"functionName":{"name":"mload","nativeSrc":"18549:5:41","nodeType":"YulIdentifier","src":"18549:5:41"},"nativeSrc":"18549:16:41","nodeType":"YulFunctionCall","src":"18549:16:41"},"variableNames":[{"name":"value0","nativeSrc":"18539:6:41","nodeType":"YulIdentifier","src":"18539:6:41"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"18387:184:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18434:9:41","nodeType":"YulTypedName","src":"18434:9:41","type":""},{"name":"dataEnd","nativeSrc":"18445:7:41","nodeType":"YulTypedName","src":"18445:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18457:6:41","nodeType":"YulTypedName","src":"18457:6:41","type":""}],"src":"18387:184:41"},{"body":{"nativeSrc":"18713:171:41","nodeType":"YulBlock","src":"18713:171:41","statements":[{"nativeSrc":"18723:26:41","nodeType":"YulAssignment","src":"18723:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"18735:9:41","nodeType":"YulIdentifier","src":"18735:9:41"},{"kind":"number","nativeSrc":"18746:2:41","nodeType":"YulLiteral","src":"18746:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18731:3:41","nodeType":"YulIdentifier","src":"18731:3:41"},"nativeSrc":"18731:18:41","nodeType":"YulFunctionCall","src":"18731:18:41"},"variableNames":[{"name":"tail","nativeSrc":"18723:4:41","nodeType":"YulIdentifier","src":"18723:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18765:9:41","nodeType":"YulIdentifier","src":"18765:9:41"},{"arguments":[{"name":"value0","nativeSrc":"18780:6:41","nodeType":"YulIdentifier","src":"18780:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18796:3:41","nodeType":"YulLiteral","src":"18796:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"18801:1:41","nodeType":"YulLiteral","src":"18801:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18792:3:41","nodeType":"YulIdentifier","src":"18792:3:41"},"nativeSrc":"18792:11:41","nodeType":"YulFunctionCall","src":"18792:11:41"},{"kind":"number","nativeSrc":"18805:1:41","nodeType":"YulLiteral","src":"18805:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18788:3:41","nodeType":"YulIdentifier","src":"18788:3:41"},"nativeSrc":"18788:19:41","nodeType":"YulFunctionCall","src":"18788:19:41"}],"functionName":{"name":"and","nativeSrc":"18776:3:41","nodeType":"YulIdentifier","src":"18776:3:41"},"nativeSrc":"18776:32:41","nodeType":"YulFunctionCall","src":"18776:32:41"}],"functionName":{"name":"mstore","nativeSrc":"18758:6:41","nodeType":"YulIdentifier","src":"18758:6:41"},"nativeSrc":"18758:51:41","nodeType":"YulFunctionCall","src":"18758:51:41"},"nativeSrc":"18758:51:41","nodeType":"YulExpressionStatement","src":"18758:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18829:9:41","nodeType":"YulIdentifier","src":"18829:9:41"},{"kind":"number","nativeSrc":"18840:2:41","nodeType":"YulLiteral","src":"18840:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18825:3:41","nodeType":"YulIdentifier","src":"18825:3:41"},"nativeSrc":"18825:18:41","nodeType":"YulFunctionCall","src":"18825:18:41"},{"arguments":[{"name":"value1","nativeSrc":"18849:6:41","nodeType":"YulIdentifier","src":"18849:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18865:3:41","nodeType":"YulLiteral","src":"18865:3:41","type":"","value":"192"},{"kind":"number","nativeSrc":"18870:1:41","nodeType":"YulLiteral","src":"18870:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18861:3:41","nodeType":"YulIdentifier","src":"18861:3:41"},"nativeSrc":"18861:11:41","nodeType":"YulFunctionCall","src":"18861:11:41"},{"kind":"number","nativeSrc":"18874:1:41","nodeType":"YulLiteral","src":"18874:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18857:3:41","nodeType":"YulIdentifier","src":"18857:3:41"},"nativeSrc":"18857:19:41","nodeType":"YulFunctionCall","src":"18857:19:41"}],"functionName":{"name":"and","nativeSrc":"18845:3:41","nodeType":"YulIdentifier","src":"18845:3:41"},"nativeSrc":"18845:32:41","nodeType":"YulFunctionCall","src":"18845:32:41"}],"functionName":{"name":"mstore","nativeSrc":"18818:6:41","nodeType":"YulIdentifier","src":"18818:6:41"},"nativeSrc":"18818:60:41","nodeType":"YulFunctionCall","src":"18818:60:41"},"nativeSrc":"18818:60:41","nodeType":"YulExpressionStatement","src":"18818:60:41"}]},"name":"abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint192__fromStack_reversed","nativeSrc":"18576:308:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18674:9:41","nodeType":"YulTypedName","src":"18674:9:41","type":""},{"name":"value1","nativeSrc":"18685:6:41","nodeType":"YulTypedName","src":"18685:6:41","type":""},{"name":"value0","nativeSrc":"18693:6:41","nodeType":"YulTypedName","src":"18693:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18704:4:41","nodeType":"YulTypedName","src":"18704:4:41","type":""}],"src":"18576:308:41"},{"body":{"nativeSrc":"19072:311:41","nodeType":"YulBlock","src":"19072:311:41","statements":[{"nativeSrc":"19082:27:41","nodeType":"YulAssignment","src":"19082:27:41","value":{"arguments":[{"name":"headStart","nativeSrc":"19094:9:41","nodeType":"YulIdentifier","src":"19094:9:41"},{"kind":"number","nativeSrc":"19105:3:41","nodeType":"YulLiteral","src":"19105:3:41","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"19090:3:41","nodeType":"YulIdentifier","src":"19090:3:41"},"nativeSrc":"19090:19:41","nodeType":"YulFunctionCall","src":"19090:19:41"},"variableNames":[{"name":"tail","nativeSrc":"19082:4:41","nodeType":"YulIdentifier","src":"19082:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19125:9:41","nodeType":"YulIdentifier","src":"19125:9:41"},{"arguments":[{"name":"value0","nativeSrc":"19140:6:41","nodeType":"YulIdentifier","src":"19140:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19156:3:41","nodeType":"YulLiteral","src":"19156:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"19161:1:41","nodeType":"YulLiteral","src":"19161:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"19152:3:41","nodeType":"YulIdentifier","src":"19152:3:41"},"nativeSrc":"19152:11:41","nodeType":"YulFunctionCall","src":"19152:11:41"},{"kind":"number","nativeSrc":"19165:1:41","nodeType":"YulLiteral","src":"19165:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"19148:3:41","nodeType":"YulIdentifier","src":"19148:3:41"},"nativeSrc":"19148:19:41","nodeType":"YulFunctionCall","src":"19148:19:41"}],"functionName":{"name":"and","nativeSrc":"19136:3:41","nodeType":"YulIdentifier","src":"19136:3:41"},"nativeSrc":"19136:32:41","nodeType":"YulFunctionCall","src":"19136:32:41"}],"functionName":{"name":"mstore","nativeSrc":"19118:6:41","nodeType":"YulIdentifier","src":"19118:6:41"},"nativeSrc":"19118:51:41","nodeType":"YulFunctionCall","src":"19118:51:41"},"nativeSrc":"19118:51:41","nodeType":"YulExpressionStatement","src":"19118:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19189:9:41","nodeType":"YulIdentifier","src":"19189:9:41"},{"kind":"number","nativeSrc":"19200:2:41","nodeType":"YulLiteral","src":"19200:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19185:3:41","nodeType":"YulIdentifier","src":"19185:3:41"},"nativeSrc":"19185:18:41","nodeType":"YulFunctionCall","src":"19185:18:41"},{"arguments":[{"name":"value1","nativeSrc":"19209:6:41","nodeType":"YulIdentifier","src":"19209:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19225:3:41","nodeType":"YulLiteral","src":"19225:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"19230:1:41","nodeType":"YulLiteral","src":"19230:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"19221:3:41","nodeType":"YulIdentifier","src":"19221:3:41"},"nativeSrc":"19221:11:41","nodeType":"YulFunctionCall","src":"19221:11:41"},{"kind":"number","nativeSrc":"19234:1:41","nodeType":"YulLiteral","src":"19234:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"19217:3:41","nodeType":"YulIdentifier","src":"19217:3:41"},"nativeSrc":"19217:19:41","nodeType":"YulFunctionCall","src":"19217:19:41"}],"functionName":{"name":"and","nativeSrc":"19205:3:41","nodeType":"YulIdentifier","src":"19205:3:41"},"nativeSrc":"19205:32:41","nodeType":"YulFunctionCall","src":"19205:32:41"}],"functionName":{"name":"mstore","nativeSrc":"19178:6:41","nodeType":"YulIdentifier","src":"19178:6:41"},"nativeSrc":"19178:60:41","nodeType":"YulFunctionCall","src":"19178:60:41"},"nativeSrc":"19178:60:41","nodeType":"YulExpressionStatement","src":"19178:60:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19258:9:41","nodeType":"YulIdentifier","src":"19258:9:41"},{"kind":"number","nativeSrc":"19269:2:41","nodeType":"YulLiteral","src":"19269:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19254:3:41","nodeType":"YulIdentifier","src":"19254:3:41"},"nativeSrc":"19254:18:41","nodeType":"YulFunctionCall","src":"19254:18:41"},{"arguments":[{"name":"value2","nativeSrc":"19278:6:41","nodeType":"YulIdentifier","src":"19278:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19294:3:41","nodeType":"YulLiteral","src":"19294:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"19299:1:41","nodeType":"YulLiteral","src":"19299:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"19290:3:41","nodeType":"YulIdentifier","src":"19290:3:41"},"nativeSrc":"19290:11:41","nodeType":"YulFunctionCall","src":"19290:11:41"},{"kind":"number","nativeSrc":"19303:1:41","nodeType":"YulLiteral","src":"19303:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"19286:3:41","nodeType":"YulIdentifier","src":"19286:3:41"},"nativeSrc":"19286:19:41","nodeType":"YulFunctionCall","src":"19286:19:41"}],"functionName":{"name":"and","nativeSrc":"19274:3:41","nodeType":"YulIdentifier","src":"19274:3:41"},"nativeSrc":"19274:32:41","nodeType":"YulFunctionCall","src":"19274:32:41"}],"functionName":{"name":"mstore","nativeSrc":"19247:6:41","nodeType":"YulIdentifier","src":"19247:6:41"},"nativeSrc":"19247:60:41","nodeType":"YulFunctionCall","src":"19247:60:41"},"nativeSrc":"19247:60:41","nodeType":"YulExpressionStatement","src":"19247:60:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19327:9:41","nodeType":"YulIdentifier","src":"19327:9:41"},{"kind":"number","nativeSrc":"19338:2:41","nodeType":"YulLiteral","src":"19338:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"19323:3:41","nodeType":"YulIdentifier","src":"19323:3:41"},"nativeSrc":"19323:18:41","nodeType":"YulFunctionCall","src":"19323:18:41"},{"arguments":[{"name":"value3","nativeSrc":"19347:6:41","nodeType":"YulIdentifier","src":"19347:6:41"},{"arguments":[{"kind":"number","nativeSrc":"19359:3:41","nodeType":"YulLiteral","src":"19359:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"19364:10:41","nodeType":"YulLiteral","src":"19364:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"19355:3:41","nodeType":"YulIdentifier","src":"19355:3:41"},"nativeSrc":"19355:20:41","nodeType":"YulFunctionCall","src":"19355:20:41"}],"functionName":{"name":"and","nativeSrc":"19343:3:41","nodeType":"YulIdentifier","src":"19343:3:41"},"nativeSrc":"19343:33:41","nodeType":"YulFunctionCall","src":"19343:33:41"}],"functionName":{"name":"mstore","nativeSrc":"19316:6:41","nodeType":"YulIdentifier","src":"19316:6:41"},"nativeSrc":"19316:61:41","nodeType":"YulFunctionCall","src":"19316:61:41"},"nativeSrc":"19316:61:41","nodeType":"YulExpressionStatement","src":"19316:61:41"}]},"name":"abi_encode_tuple_t_address_t_address_t_address_t_bytes4__to_t_address_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"18889:494:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19017:9:41","nodeType":"YulTypedName","src":"19017:9:41","type":""},{"name":"value3","nativeSrc":"19028:6:41","nodeType":"YulTypedName","src":"19028:6:41","type":""},{"name":"value2","nativeSrc":"19036:6:41","nodeType":"YulTypedName","src":"19036:6:41","type":""},{"name":"value1","nativeSrc":"19044:6:41","nodeType":"YulTypedName","src":"19044:6:41","type":""},{"name":"value0","nativeSrc":"19052:6:41","nodeType":"YulTypedName","src":"19052:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19063:4:41","nodeType":"YulTypedName","src":"19063:4:41","type":""}],"src":"18889:494:41"},{"body":{"nativeSrc":"19435:132:41","nodeType":"YulBlock","src":"19435:132:41","statements":[{"nativeSrc":"19445:58:41","nodeType":"YulAssignment","src":"19445:58:41","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"19460:1:41","nodeType":"YulIdentifier","src":"19460:1:41"},{"kind":"number","nativeSrc":"19463:14:41","nodeType":"YulLiteral","src":"19463:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19456:3:41","nodeType":"YulIdentifier","src":"19456:3:41"},"nativeSrc":"19456:22:41","nodeType":"YulFunctionCall","src":"19456:22:41"},{"arguments":[{"name":"y","nativeSrc":"19484:1:41","nodeType":"YulIdentifier","src":"19484:1:41"},{"kind":"number","nativeSrc":"19487:14:41","nodeType":"YulLiteral","src":"19487:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19480:3:41","nodeType":"YulIdentifier","src":"19480:3:41"},"nativeSrc":"19480:22:41","nodeType":"YulFunctionCall","src":"19480:22:41"}],"functionName":{"name":"add","nativeSrc":"19452:3:41","nodeType":"YulIdentifier","src":"19452:3:41"},"nativeSrc":"19452:51:41","nodeType":"YulFunctionCall","src":"19452:51:41"},"variableNames":[{"name":"sum","nativeSrc":"19445:3:41","nodeType":"YulIdentifier","src":"19445:3:41"}]},{"body":{"nativeSrc":"19539:22:41","nodeType":"YulBlock","src":"19539:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"19541:16:41","nodeType":"YulIdentifier","src":"19541:16:41"},"nativeSrc":"19541:18:41","nodeType":"YulFunctionCall","src":"19541:18:41"},"nativeSrc":"19541:18:41","nodeType":"YulExpressionStatement","src":"19541:18:41"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"19518:3:41","nodeType":"YulIdentifier","src":"19518:3:41"},{"kind":"number","nativeSrc":"19523:14:41","nodeType":"YulLiteral","src":"19523:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"19515:2:41","nodeType":"YulIdentifier","src":"19515:2:41"},"nativeSrc":"19515:23:41","nodeType":"YulFunctionCall","src":"19515:23:41"},"nativeSrc":"19512:49:41","nodeType":"YulIf","src":"19512:49:41"}]},"name":"checked_add_t_uint48","nativeSrc":"19388:179:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"19418:1:41","nodeType":"YulTypedName","src":"19418:1:41","type":""},{"name":"y","nativeSrc":"19421:1:41","nodeType":"YulTypedName","src":"19421:1:41","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"19427:3:41","nodeType":"YulTypedName","src":"19427:3:41","type":""}],"src":"19388:179:41"},{"body":{"nativeSrc":"19783:320:41","nodeType":"YulBlock","src":"19783:320:41","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19800:9:41","nodeType":"YulIdentifier","src":"19800:9:41"},{"arguments":[{"name":"value0","nativeSrc":"19815:6:41","nodeType":"YulIdentifier","src":"19815:6:41"},{"kind":"number","nativeSrc":"19823:14:41","nodeType":"YulLiteral","src":"19823:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19811:3:41","nodeType":"YulIdentifier","src":"19811:3:41"},"nativeSrc":"19811:27:41","nodeType":"YulFunctionCall","src":"19811:27:41"}],"functionName":{"name":"mstore","nativeSrc":"19793:6:41","nodeType":"YulIdentifier","src":"19793:6:41"},"nativeSrc":"19793:46:41","nodeType":"YulFunctionCall","src":"19793:46:41"},"nativeSrc":"19793:46:41","nodeType":"YulExpressionStatement","src":"19793:46:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19859:9:41","nodeType":"YulIdentifier","src":"19859:9:41"},{"kind":"number","nativeSrc":"19870:2:41","nodeType":"YulLiteral","src":"19870:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19855:3:41","nodeType":"YulIdentifier","src":"19855:3:41"},"nativeSrc":"19855:18:41","nodeType":"YulFunctionCall","src":"19855:18:41"},{"arguments":[{"name":"value1","nativeSrc":"19879:6:41","nodeType":"YulIdentifier","src":"19879:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19895:3:41","nodeType":"YulLiteral","src":"19895:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"19900:1:41","nodeType":"YulLiteral","src":"19900:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"19891:3:41","nodeType":"YulIdentifier","src":"19891:3:41"},"nativeSrc":"19891:11:41","nodeType":"YulFunctionCall","src":"19891:11:41"},{"kind":"number","nativeSrc":"19904:1:41","nodeType":"YulLiteral","src":"19904:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"19887:3:41","nodeType":"YulIdentifier","src":"19887:3:41"},"nativeSrc":"19887:19:41","nodeType":"YulFunctionCall","src":"19887:19:41"}],"functionName":{"name":"and","nativeSrc":"19875:3:41","nodeType":"YulIdentifier","src":"19875:3:41"},"nativeSrc":"19875:32:41","nodeType":"YulFunctionCall","src":"19875:32:41"}],"functionName":{"name":"mstore","nativeSrc":"19848:6:41","nodeType":"YulIdentifier","src":"19848:6:41"},"nativeSrc":"19848:60:41","nodeType":"YulFunctionCall","src":"19848:60:41"},"nativeSrc":"19848:60:41","nodeType":"YulExpressionStatement","src":"19848:60:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19928:9:41","nodeType":"YulIdentifier","src":"19928:9:41"},{"kind":"number","nativeSrc":"19939:2:41","nodeType":"YulLiteral","src":"19939:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19924:3:41","nodeType":"YulIdentifier","src":"19924:3:41"},"nativeSrc":"19924:18:41","nodeType":"YulFunctionCall","src":"19924:18:41"},{"arguments":[{"name":"value2","nativeSrc":"19948:6:41","nodeType":"YulIdentifier","src":"19948:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19964:3:41","nodeType":"YulLiteral","src":"19964:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"19969:1:41","nodeType":"YulLiteral","src":"19969:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"19960:3:41","nodeType":"YulIdentifier","src":"19960:3:41"},"nativeSrc":"19960:11:41","nodeType":"YulFunctionCall","src":"19960:11:41"},{"kind":"number","nativeSrc":"19973:1:41","nodeType":"YulLiteral","src":"19973:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"19956:3:41","nodeType":"YulIdentifier","src":"19956:3:41"},"nativeSrc":"19956:19:41","nodeType":"YulFunctionCall","src":"19956:19:41"}],"functionName":{"name":"and","nativeSrc":"19944:3:41","nodeType":"YulIdentifier","src":"19944:3:41"},"nativeSrc":"19944:32:41","nodeType":"YulFunctionCall","src":"19944:32:41"}],"functionName":{"name":"mstore","nativeSrc":"19917:6:41","nodeType":"YulIdentifier","src":"19917:6:41"},"nativeSrc":"19917:60:41","nodeType":"YulFunctionCall","src":"19917:60:41"},"nativeSrc":"19917:60:41","nodeType":"YulExpressionStatement","src":"19917:60:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19997:9:41","nodeType":"YulIdentifier","src":"19997:9:41"},{"kind":"number","nativeSrc":"20008:2:41","nodeType":"YulLiteral","src":"20008:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"19993:3:41","nodeType":"YulIdentifier","src":"19993:3:41"},"nativeSrc":"19993:18:41","nodeType":"YulFunctionCall","src":"19993:18:41"},{"kind":"number","nativeSrc":"20013:3:41","nodeType":"YulLiteral","src":"20013:3:41","type":"","value":"128"}],"functionName":{"name":"mstore","nativeSrc":"19986:6:41","nodeType":"YulIdentifier","src":"19986:6:41"},"nativeSrc":"19986:31:41","nodeType":"YulFunctionCall","src":"19986:31:41"},"nativeSrc":"19986:31:41","nodeType":"YulExpressionStatement","src":"19986:31:41"},{"nativeSrc":"20026:71:41","nodeType":"YulAssignment","src":"20026:71:41","value":{"arguments":[{"name":"value3","nativeSrc":"20061:6:41","nodeType":"YulIdentifier","src":"20061:6:41"},{"name":"value4","nativeSrc":"20069:6:41","nodeType":"YulIdentifier","src":"20069:6:41"},{"arguments":[{"name":"headStart","nativeSrc":"20081:9:41","nodeType":"YulIdentifier","src":"20081:9:41"},{"kind":"number","nativeSrc":"20092:3:41","nodeType":"YulLiteral","src":"20092:3:41","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"20077:3:41","nodeType":"YulIdentifier","src":"20077:3:41"},"nativeSrc":"20077:19:41","nodeType":"YulFunctionCall","src":"20077:19:41"}],"functionName":{"name":"abi_encode_string_calldata","nativeSrc":"20034:26:41","nodeType":"YulIdentifier","src":"20034:26:41"},"nativeSrc":"20034:63:41","nodeType":"YulFunctionCall","src":"20034:63:41"},"variableNames":[{"name":"tail","nativeSrc":"20026:4:41","nodeType":"YulIdentifier","src":"20026:4:41"}]}]},"name":"abi_encode_tuple_t_uint48_t_address_t_address_t_bytes_calldata_ptr__to_t_uint48_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"19572:531:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19720:9:41","nodeType":"YulTypedName","src":"19720:9:41","type":""},{"name":"value4","nativeSrc":"19731:6:41","nodeType":"YulTypedName","src":"19731:6:41","type":""},{"name":"value3","nativeSrc":"19739:6:41","nodeType":"YulTypedName","src":"19739:6:41","type":""},{"name":"value2","nativeSrc":"19747:6:41","nodeType":"YulTypedName","src":"19747:6:41","type":""},{"name":"value1","nativeSrc":"19755:6:41","nodeType":"YulTypedName","src":"19755:6:41","type":""},{"name":"value0","nativeSrc":"19763:6:41","nodeType":"YulTypedName","src":"19763:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19774:4:41","nodeType":"YulTypedName","src":"19774:4:41","type":""}],"src":"19572:531:41"},{"body":{"nativeSrc":"20235:170:41","nodeType":"YulBlock","src":"20235:170:41","statements":[{"nativeSrc":"20245:26:41","nodeType":"YulAssignment","src":"20245:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"20257:9:41","nodeType":"YulIdentifier","src":"20257:9:41"},{"kind":"number","nativeSrc":"20268:2:41","nodeType":"YulLiteral","src":"20268:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20253:3:41","nodeType":"YulIdentifier","src":"20253:3:41"},"nativeSrc":"20253:18:41","nodeType":"YulFunctionCall","src":"20253:18:41"},"variableNames":[{"name":"tail","nativeSrc":"20245:4:41","nodeType":"YulIdentifier","src":"20245:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20287:9:41","nodeType":"YulIdentifier","src":"20287:9:41"},{"arguments":[{"name":"value0","nativeSrc":"20302:6:41","nodeType":"YulIdentifier","src":"20302:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20318:3:41","nodeType":"YulLiteral","src":"20318:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"20323:1:41","nodeType":"YulLiteral","src":"20323:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"20314:3:41","nodeType":"YulIdentifier","src":"20314:3:41"},"nativeSrc":"20314:11:41","nodeType":"YulFunctionCall","src":"20314:11:41"},{"kind":"number","nativeSrc":"20327:1:41","nodeType":"YulLiteral","src":"20327:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"20310:3:41","nodeType":"YulIdentifier","src":"20310:3:41"},"nativeSrc":"20310:19:41","nodeType":"YulFunctionCall","src":"20310:19:41"}],"functionName":{"name":"and","nativeSrc":"20298:3:41","nodeType":"YulIdentifier","src":"20298:3:41"},"nativeSrc":"20298:32:41","nodeType":"YulFunctionCall","src":"20298:32:41"}],"functionName":{"name":"mstore","nativeSrc":"20280:6:41","nodeType":"YulIdentifier","src":"20280:6:41"},"nativeSrc":"20280:51:41","nodeType":"YulFunctionCall","src":"20280:51:41"},"nativeSrc":"20280:51:41","nodeType":"YulExpressionStatement","src":"20280:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20351:9:41","nodeType":"YulIdentifier","src":"20351:9:41"},{"kind":"number","nativeSrc":"20362:2:41","nodeType":"YulLiteral","src":"20362:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20347:3:41","nodeType":"YulIdentifier","src":"20347:3:41"},"nativeSrc":"20347:18:41","nodeType":"YulFunctionCall","src":"20347:18:41"},{"arguments":[{"name":"value1","nativeSrc":"20371:6:41","nodeType":"YulIdentifier","src":"20371:6:41"},{"kind":"number","nativeSrc":"20379:18:41","nodeType":"YulLiteral","src":"20379:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"20367:3:41","nodeType":"YulIdentifier","src":"20367:3:41"},"nativeSrc":"20367:31:41","nodeType":"YulFunctionCall","src":"20367:31:41"}],"functionName":{"name":"mstore","nativeSrc":"20340:6:41","nodeType":"YulIdentifier","src":"20340:6:41"},"nativeSrc":"20340:59:41","nodeType":"YulFunctionCall","src":"20340:59:41"},"nativeSrc":"20340:59:41","nodeType":"YulExpressionStatement","src":"20340:59:41"}]},"name":"abi_encode_tuple_t_address_t_uint64__to_t_address_t_uint64__fromStack_reversed","nativeSrc":"20108:297:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20196:9:41","nodeType":"YulTypedName","src":"20196:9:41","type":""},{"name":"value1","nativeSrc":"20207:6:41","nodeType":"YulTypedName","src":"20207:6:41","type":""},{"name":"value0","nativeSrc":"20215:6:41","nodeType":"YulTypedName","src":"20215:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20226:4:41","nodeType":"YulTypedName","src":"20226:4:41","type":""}],"src":"20108:297:41"},{"body":{"nativeSrc":"20509:103:41","nodeType":"YulBlock","src":"20509:103:41","statements":[{"nativeSrc":"20519:26:41","nodeType":"YulAssignment","src":"20519:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"20531:9:41","nodeType":"YulIdentifier","src":"20531:9:41"},{"kind":"number","nativeSrc":"20542:2:41","nodeType":"YulLiteral","src":"20542:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20527:3:41","nodeType":"YulIdentifier","src":"20527:3:41"},"nativeSrc":"20527:18:41","nodeType":"YulFunctionCall","src":"20527:18:41"},"variableNames":[{"name":"tail","nativeSrc":"20519:4:41","nodeType":"YulIdentifier","src":"20519:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20561:9:41","nodeType":"YulIdentifier","src":"20561:9:41"},{"arguments":[{"name":"value0","nativeSrc":"20576:6:41","nodeType":"YulIdentifier","src":"20576:6:41"},{"arguments":[{"kind":"number","nativeSrc":"20588:3:41","nodeType":"YulLiteral","src":"20588:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"20593:10:41","nodeType":"YulLiteral","src":"20593:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"20584:3:41","nodeType":"YulIdentifier","src":"20584:3:41"},"nativeSrc":"20584:20:41","nodeType":"YulFunctionCall","src":"20584:20:41"}],"functionName":{"name":"and","nativeSrc":"20572:3:41","nodeType":"YulIdentifier","src":"20572:3:41"},"nativeSrc":"20572:33:41","nodeType":"YulFunctionCall","src":"20572:33:41"}],"functionName":{"name":"mstore","nativeSrc":"20554:6:41","nodeType":"YulIdentifier","src":"20554:6:41"},"nativeSrc":"20554:52:41","nodeType":"YulFunctionCall","src":"20554:52:41"},"nativeSrc":"20554:52:41","nodeType":"YulExpressionStatement","src":"20554:52:41"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nativeSrc":"20410:202:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20478:9:41","nodeType":"YulTypedName","src":"20478:9:41","type":""},{"name":"value0","nativeSrc":"20489:6:41","nodeType":"YulTypedName","src":"20489:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20500:4:41","nodeType":"YulTypedName","src":"20500:4:41","type":""}],"src":"20410:202:41"},{"body":{"nativeSrc":"20791:178:41","nodeType":"YulBlock","src":"20791:178:41","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20808:9:41","nodeType":"YulIdentifier","src":"20808:9:41"},{"kind":"number","nativeSrc":"20819:2:41","nodeType":"YulLiteral","src":"20819:2:41","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"20801:6:41","nodeType":"YulIdentifier","src":"20801:6:41"},"nativeSrc":"20801:21:41","nodeType":"YulFunctionCall","src":"20801:21:41"},"nativeSrc":"20801:21:41","nodeType":"YulExpressionStatement","src":"20801:21:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20842:9:41","nodeType":"YulIdentifier","src":"20842:9:41"},{"kind":"number","nativeSrc":"20853:2:41","nodeType":"YulLiteral","src":"20853:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20838:3:41","nodeType":"YulIdentifier","src":"20838:3:41"},"nativeSrc":"20838:18:41","nodeType":"YulFunctionCall","src":"20838:18:41"},{"kind":"number","nativeSrc":"20858:2:41","nodeType":"YulLiteral","src":"20858:2:41","type":"","value":"28"}],"functionName":{"name":"mstore","nativeSrc":"20831:6:41","nodeType":"YulIdentifier","src":"20831:6:41"},"nativeSrc":"20831:30:41","nodeType":"YulFunctionCall","src":"20831:30:41"},"nativeSrc":"20831:30:41","nodeType":"YulExpressionStatement","src":"20831:30:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20881:9:41","nodeType":"YulIdentifier","src":"20881:9:41"},{"kind":"number","nativeSrc":"20892:2:41","nodeType":"YulLiteral","src":"20892:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20877:3:41","nodeType":"YulIdentifier","src":"20877:3:41"},"nativeSrc":"20877:18:41","nodeType":"YulFunctionCall","src":"20877:18:41"},{"hexValue":"6163636f756e743a206e6f742066726f6d20456e747279506f696e74","kind":"string","nativeSrc":"20897:30:41","nodeType":"YulLiteral","src":"20897:30:41","type":"","value":"account: not from EntryPoint"}],"functionName":{"name":"mstore","nativeSrc":"20870:6:41","nodeType":"YulIdentifier","src":"20870:6:41"},"nativeSrc":"20870:58:41","nodeType":"YulFunctionCall","src":"20870:58:41"},"nativeSrc":"20870:58:41","nodeType":"YulExpressionStatement","src":"20870:58:41"},{"nativeSrc":"20937:26:41","nodeType":"YulAssignment","src":"20937:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"20949:9:41","nodeType":"YulIdentifier","src":"20949:9:41"},{"kind":"number","nativeSrc":"20960:2:41","nodeType":"YulLiteral","src":"20960:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"20945:3:41","nodeType":"YulIdentifier","src":"20945:3:41"},"nativeSrc":"20945:18:41","nodeType":"YulFunctionCall","src":"20945:18:41"},"variableNames":[{"name":"tail","nativeSrc":"20937:4:41","nodeType":"YulIdentifier","src":"20937:4:41"}]}]},"name":"abi_encode_tuple_t_stringliteral_f684c2c0c9ec797849b62669189fe025e9077c00ba7812987ce38c0071ad7a50__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"20617:352:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20768:9:41","nodeType":"YulTypedName","src":"20768:9:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20782:4:41","nodeType":"YulTypedName","src":"20782:4:41","type":""}],"src":"20617:352:41"},{"body":{"nativeSrc":"21074:238:41","nodeType":"YulBlock","src":"21074:238:41","statements":[{"nativeSrc":"21084:29:41","nodeType":"YulVariableDeclaration","src":"21084:29:41","value":{"arguments":[{"name":"array","nativeSrc":"21107:5:41","nodeType":"YulIdentifier","src":"21107:5:41"}],"functionName":{"name":"calldataload","nativeSrc":"21094:12:41","nodeType":"YulIdentifier","src":"21094:12:41"},"nativeSrc":"21094:19:41","nodeType":"YulFunctionCall","src":"21094:19:41"},"variables":[{"name":"_1","nativeSrc":"21088:2:41","nodeType":"YulTypedName","src":"21088:2:41","type":""}]},{"nativeSrc":"21122:38:41","nodeType":"YulAssignment","src":"21122:38:41","value":{"arguments":[{"name":"_1","nativeSrc":"21135:2:41","nodeType":"YulIdentifier","src":"21135:2:41"},{"arguments":[{"kind":"number","nativeSrc":"21143:3:41","nodeType":"YulLiteral","src":"21143:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"21148:10:41","nodeType":"YulLiteral","src":"21148:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"21139:3:41","nodeType":"YulIdentifier","src":"21139:3:41"},"nativeSrc":"21139:20:41","nodeType":"YulFunctionCall","src":"21139:20:41"}],"functionName":{"name":"and","nativeSrc":"21131:3:41","nodeType":"YulIdentifier","src":"21131:3:41"},"nativeSrc":"21131:29:41","nodeType":"YulFunctionCall","src":"21131:29:41"},"variableNames":[{"name":"value","nativeSrc":"21122:5:41","nodeType":"YulIdentifier","src":"21122:5:41"}]},{"body":{"nativeSrc":"21191:115:41","nodeType":"YulBlock","src":"21191:115:41","statements":[{"nativeSrc":"21205:91:41","nodeType":"YulAssignment","src":"21205:91:41","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"21222:2:41","nodeType":"YulIdentifier","src":"21222:2:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"21234:1:41","nodeType":"YulLiteral","src":"21234:1:41","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"21241:1:41","nodeType":"YulLiteral","src":"21241:1:41","type":"","value":"4"},{"name":"len","nativeSrc":"21244:3:41","nodeType":"YulIdentifier","src":"21244:3:41"}],"functionName":{"name":"sub","nativeSrc":"21237:3:41","nodeType":"YulIdentifier","src":"21237:3:41"},"nativeSrc":"21237:11:41","nodeType":"YulFunctionCall","src":"21237:11:41"}],"functionName":{"name":"shl","nativeSrc":"21230:3:41","nodeType":"YulIdentifier","src":"21230:3:41"},"nativeSrc":"21230:19:41","nodeType":"YulFunctionCall","src":"21230:19:41"},{"arguments":[{"kind":"number","nativeSrc":"21255:3:41","nodeType":"YulLiteral","src":"21255:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"21260:10:41","nodeType":"YulLiteral","src":"21260:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"21251:3:41","nodeType":"YulIdentifier","src":"21251:3:41"},"nativeSrc":"21251:20:41","nodeType":"YulFunctionCall","src":"21251:20:41"}],"functionName":{"name":"shl","nativeSrc":"21226:3:41","nodeType":"YulIdentifier","src":"21226:3:41"},"nativeSrc":"21226:46:41","nodeType":"YulFunctionCall","src":"21226:46:41"}],"functionName":{"name":"and","nativeSrc":"21218:3:41","nodeType":"YulIdentifier","src":"21218:3:41"},"nativeSrc":"21218:55:41","nodeType":"YulFunctionCall","src":"21218:55:41"},{"arguments":[{"kind":"number","nativeSrc":"21279:3:41","nodeType":"YulLiteral","src":"21279:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"21284:10:41","nodeType":"YulLiteral","src":"21284:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"21275:3:41","nodeType":"YulIdentifier","src":"21275:3:41"},"nativeSrc":"21275:20:41","nodeType":"YulFunctionCall","src":"21275:20:41"}],"functionName":{"name":"and","nativeSrc":"21214:3:41","nodeType":"YulIdentifier","src":"21214:3:41"},"nativeSrc":"21214:82:41","nodeType":"YulFunctionCall","src":"21214:82:41"},"variableNames":[{"name":"value","nativeSrc":"21205:5:41","nodeType":"YulIdentifier","src":"21205:5:41"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"21175:3:41","nodeType":"YulIdentifier","src":"21175:3:41"},{"kind":"number","nativeSrc":"21180:1:41","nodeType":"YulLiteral","src":"21180:1:41","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"21172:2:41","nodeType":"YulIdentifier","src":"21172:2:41"},"nativeSrc":"21172:10:41","nodeType":"YulFunctionCall","src":"21172:10:41"},"nativeSrc":"21169:137:41","nodeType":"YulIf","src":"21169:137:41"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4","nativeSrc":"20974:338:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"21049:5:41","nodeType":"YulTypedName","src":"21049:5:41","type":""},{"name":"len","nativeSrc":"21056:3:41","nodeType":"YulTypedName","src":"21056:3:41","type":""}],"returnVariables":[{"name":"value","nativeSrc":"21064:5:41","nodeType":"YulTypedName","src":"21064:5:41","type":""}],"src":"20974:338:41"},{"body":{"nativeSrc":"21395:177:41","nodeType":"YulBlock","src":"21395:177:41","statements":[{"body":{"nativeSrc":"21441:16:41","nodeType":"YulBlock","src":"21441:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21450:1:41","nodeType":"YulLiteral","src":"21450:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"21453:1:41","nodeType":"YulLiteral","src":"21453:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21443:6:41","nodeType":"YulIdentifier","src":"21443:6:41"},"nativeSrc":"21443:12:41","nodeType":"YulFunctionCall","src":"21443:12:41"},"nativeSrc":"21443:12:41","nodeType":"YulExpressionStatement","src":"21443:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"21416:7:41","nodeType":"YulIdentifier","src":"21416:7:41"},{"name":"headStart","nativeSrc":"21425:9:41","nodeType":"YulIdentifier","src":"21425:9:41"}],"functionName":{"name":"sub","nativeSrc":"21412:3:41","nodeType":"YulIdentifier","src":"21412:3:41"},"nativeSrc":"21412:23:41","nodeType":"YulFunctionCall","src":"21412:23:41"},{"kind":"number","nativeSrc":"21437:2:41","nodeType":"YulLiteral","src":"21437:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"21408:3:41","nodeType":"YulIdentifier","src":"21408:3:41"},"nativeSrc":"21408:32:41","nodeType":"YulFunctionCall","src":"21408:32:41"},"nativeSrc":"21405:52:41","nodeType":"YulIf","src":"21405:52:41"},{"nativeSrc":"21466:36:41","nodeType":"YulVariableDeclaration","src":"21466:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"21492:9:41","nodeType":"YulIdentifier","src":"21492:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"21479:12:41","nodeType":"YulIdentifier","src":"21479:12:41"},"nativeSrc":"21479:23:41","nodeType":"YulFunctionCall","src":"21479:23:41"},"variables":[{"name":"value","nativeSrc":"21470:5:41","nodeType":"YulTypedName","src":"21470:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"21536:5:41","nodeType":"YulIdentifier","src":"21536:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"21511:24:41","nodeType":"YulIdentifier","src":"21511:24:41"},"nativeSrc":"21511:31:41","nodeType":"YulFunctionCall","src":"21511:31:41"},"nativeSrc":"21511:31:41","nodeType":"YulExpressionStatement","src":"21511:31:41"},{"nativeSrc":"21551:15:41","nodeType":"YulAssignment","src":"21551:15:41","value":{"name":"value","nativeSrc":"21561:5:41","nodeType":"YulIdentifier","src":"21561:5:41"},"variableNames":[{"name":"value0","nativeSrc":"21551:6:41","nodeType":"YulIdentifier","src":"21551:6:41"}]}]},"name":"abi_decode_tuple_t_address_payable","nativeSrc":"21317:255:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21361:9:41","nodeType":"YulTypedName","src":"21361:9:41","type":""},{"name":"dataEnd","nativeSrc":"21372:7:41","nodeType":"YulTypedName","src":"21372:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"21384:6:41","nodeType":"YulTypedName","src":"21384:6:41","type":""}],"src":"21317:255:41"},{"body":{"nativeSrc":"21768:14:41","nodeType":"YulBlock","src":"21768:14:41","statements":[{"nativeSrc":"21770:10:41","nodeType":"YulAssignment","src":"21770:10:41","value":{"name":"pos","nativeSrc":"21777:3:41","nodeType":"YulIdentifier","src":"21777:3:41"},"variableNames":[{"name":"end","nativeSrc":"21770:3:41","nodeType":"YulIdentifier","src":"21770:3:41"}]}]},"name":"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"21577:205:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"21752:3:41","nodeType":"YulTypedName","src":"21752:3:41","type":""}],"returnVariables":[{"name":"end","nativeSrc":"21760:3:41","nodeType":"YulTypedName","src":"21760:3:41","type":""}],"src":"21577:205:41"},{"body":{"nativeSrc":"21914:172:41","nodeType":"YulBlock","src":"21914:172:41","statements":[{"nativeSrc":"21924:26:41","nodeType":"YulAssignment","src":"21924:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"21936:9:41","nodeType":"YulIdentifier","src":"21936:9:41"},{"kind":"number","nativeSrc":"21947:2:41","nodeType":"YulLiteral","src":"21947:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21932:3:41","nodeType":"YulIdentifier","src":"21932:3:41"},"nativeSrc":"21932:18:41","nodeType":"YulFunctionCall","src":"21932:18:41"},"variableNames":[{"name":"tail","nativeSrc":"21924:4:41","nodeType":"YulIdentifier","src":"21924:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"21966:9:41","nodeType":"YulIdentifier","src":"21966:9:41"},{"arguments":[{"name":"value0","nativeSrc":"21981:6:41","nodeType":"YulIdentifier","src":"21981:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"21997:3:41","nodeType":"YulLiteral","src":"21997:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"22002:1:41","nodeType":"YulLiteral","src":"22002:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"21993:3:41","nodeType":"YulIdentifier","src":"21993:3:41"},"nativeSrc":"21993:11:41","nodeType":"YulFunctionCall","src":"21993:11:41"},{"kind":"number","nativeSrc":"22006:1:41","nodeType":"YulLiteral","src":"22006:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"21989:3:41","nodeType":"YulIdentifier","src":"21989:3:41"},"nativeSrc":"21989:19:41","nodeType":"YulFunctionCall","src":"21989:19:41"}],"functionName":{"name":"and","nativeSrc":"21977:3:41","nodeType":"YulIdentifier","src":"21977:3:41"},"nativeSrc":"21977:32:41","nodeType":"YulFunctionCall","src":"21977:32:41"}],"functionName":{"name":"mstore","nativeSrc":"21959:6:41","nodeType":"YulIdentifier","src":"21959:6:41"},"nativeSrc":"21959:51:41","nodeType":"YulFunctionCall","src":"21959:51:41"},"nativeSrc":"21959:51:41","nodeType":"YulExpressionStatement","src":"21959:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22030:9:41","nodeType":"YulIdentifier","src":"22030:9:41"},{"kind":"number","nativeSrc":"22041:2:41","nodeType":"YulLiteral","src":"22041:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22026:3:41","nodeType":"YulIdentifier","src":"22026:3:41"},"nativeSrc":"22026:18:41","nodeType":"YulFunctionCall","src":"22026:18:41"},{"arguments":[{"name":"value1","nativeSrc":"22050:6:41","nodeType":"YulIdentifier","src":"22050:6:41"},{"arguments":[{"kind":"number","nativeSrc":"22062:3:41","nodeType":"YulLiteral","src":"22062:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"22067:10:41","nodeType":"YulLiteral","src":"22067:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"22058:3:41","nodeType":"YulIdentifier","src":"22058:3:41"},"nativeSrc":"22058:20:41","nodeType":"YulFunctionCall","src":"22058:20:41"}],"functionName":{"name":"and","nativeSrc":"22046:3:41","nodeType":"YulIdentifier","src":"22046:3:41"},"nativeSrc":"22046:33:41","nodeType":"YulFunctionCall","src":"22046:33:41"}],"functionName":{"name":"mstore","nativeSrc":"22019:6:41","nodeType":"YulIdentifier","src":"22019:6:41"},"nativeSrc":"22019:61:41","nodeType":"YulFunctionCall","src":"22019:61:41"},"nativeSrc":"22019:61:41","nodeType":"YulExpressionStatement","src":"22019:61:41"}]},"name":"abi_encode_tuple_t_address_t_bytes4__to_t_address_t_bytes4__fromStack_reversed","nativeSrc":"21787:299:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21875:9:41","nodeType":"YulTypedName","src":"21875:9:41","type":""},{"name":"value1","nativeSrc":"21886:6:41","nodeType":"YulTypedName","src":"21886:6:41","type":""},{"name":"value0","nativeSrc":"21894:6:41","nodeType":"YulTypedName","src":"21894:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"21905:4:41","nodeType":"YulTypedName","src":"21905:4:41","type":""}],"src":"21787:299:41"},{"body":{"nativeSrc":"22220:119:41","nodeType":"YulBlock","src":"22220:119:41","statements":[{"nativeSrc":"22230:26:41","nodeType":"YulAssignment","src":"22230:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"22242:9:41","nodeType":"YulIdentifier","src":"22242:9:41"},{"kind":"number","nativeSrc":"22253:2:41","nodeType":"YulLiteral","src":"22253:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22238:3:41","nodeType":"YulIdentifier","src":"22238:3:41"},"nativeSrc":"22238:18:41","nodeType":"YulFunctionCall","src":"22238:18:41"},"variableNames":[{"name":"tail","nativeSrc":"22230:4:41","nodeType":"YulIdentifier","src":"22230:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22272:9:41","nodeType":"YulIdentifier","src":"22272:9:41"},{"name":"value0","nativeSrc":"22283:6:41","nodeType":"YulIdentifier","src":"22283:6:41"}],"functionName":{"name":"mstore","nativeSrc":"22265:6:41","nodeType":"YulIdentifier","src":"22265:6:41"},"nativeSrc":"22265:25:41","nodeType":"YulFunctionCall","src":"22265:25:41"},"nativeSrc":"22265:25:41","nodeType":"YulExpressionStatement","src":"22265:25:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22310:9:41","nodeType":"YulIdentifier","src":"22310:9:41"},{"kind":"number","nativeSrc":"22321:2:41","nodeType":"YulLiteral","src":"22321:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22306:3:41","nodeType":"YulIdentifier","src":"22306:3:41"},"nativeSrc":"22306:18:41","nodeType":"YulFunctionCall","src":"22306:18:41"},{"name":"value1","nativeSrc":"22326:6:41","nodeType":"YulIdentifier","src":"22326:6:41"}],"functionName":{"name":"mstore","nativeSrc":"22299:6:41","nodeType":"YulIdentifier","src":"22299:6:41"},"nativeSrc":"22299:34:41","nodeType":"YulFunctionCall","src":"22299:34:41"},"nativeSrc":"22299:34:41","nodeType":"YulExpressionStatement","src":"22299:34:41"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"22091:248:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22181:9:41","nodeType":"YulTypedName","src":"22181:9:41","type":""},{"name":"value1","nativeSrc":"22192:6:41","nodeType":"YulTypedName","src":"22192:6:41","type":""},{"name":"value0","nativeSrc":"22200:6:41","nodeType":"YulTypedName","src":"22200:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22211:4:41","nodeType":"YulTypedName","src":"22211:4:41","type":""}],"src":"22091:248:41"},{"body":{"nativeSrc":"22481:52:41","nodeType":"YulBlock","src":"22481:52:41","statements":[{"nativeSrc":"22491:36:41","nodeType":"YulAssignment","src":"22491:36:41","value":{"arguments":[{"name":"value0","nativeSrc":"22515:6:41","nodeType":"YulIdentifier","src":"22515:6:41"},{"name":"pos","nativeSrc":"22523:3:41","nodeType":"YulIdentifier","src":"22523:3:41"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"22498:16:41","nodeType":"YulIdentifier","src":"22498:16:41"},"nativeSrc":"22498:29:41","nodeType":"YulFunctionCall","src":"22498:29:41"},"variableNames":[{"name":"end","nativeSrc":"22491:3:41","nodeType":"YulIdentifier","src":"22491:3:41"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"22344:189:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"22457:3:41","nodeType":"YulTypedName","src":"22457:3:41","type":""},{"name":"value0","nativeSrc":"22462:6:41","nodeType":"YulTypedName","src":"22462:6:41","type":""}],"returnVariables":[{"name":"end","nativeSrc":"22473:3:41","nodeType":"YulTypedName","src":"22473:3:41","type":""}],"src":"22344:189:41"},{"body":{"nativeSrc":"22685:216:41","nodeType":"YulBlock","src":"22685:216:41","statements":[{"nativeSrc":"22695:26:41","nodeType":"YulAssignment","src":"22695:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"22707:9:41","nodeType":"YulIdentifier","src":"22707:9:41"},{"kind":"number","nativeSrc":"22718:2:41","nodeType":"YulLiteral","src":"22718:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"22703:3:41","nodeType":"YulIdentifier","src":"22703:3:41"},"nativeSrc":"22703:18:41","nodeType":"YulFunctionCall","src":"22703:18:41"},"variableNames":[{"name":"tail","nativeSrc":"22695:4:41","nodeType":"YulIdentifier","src":"22695:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22737:9:41","nodeType":"YulIdentifier","src":"22737:9:41"},{"arguments":[{"name":"value0","nativeSrc":"22752:6:41","nodeType":"YulIdentifier","src":"22752:6:41"},{"kind":"number","nativeSrc":"22760:10:41","nodeType":"YulLiteral","src":"22760:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"22748:3:41","nodeType":"YulIdentifier","src":"22748:3:41"},"nativeSrc":"22748:23:41","nodeType":"YulFunctionCall","src":"22748:23:41"}],"functionName":{"name":"mstore","nativeSrc":"22730:6:41","nodeType":"YulIdentifier","src":"22730:6:41"},"nativeSrc":"22730:42:41","nodeType":"YulFunctionCall","src":"22730:42:41"},"nativeSrc":"22730:42:41","nodeType":"YulExpressionStatement","src":"22730:42:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22792:9:41","nodeType":"YulIdentifier","src":"22792:9:41"},{"kind":"number","nativeSrc":"22803:2:41","nodeType":"YulLiteral","src":"22803:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22788:3:41","nodeType":"YulIdentifier","src":"22788:3:41"},"nativeSrc":"22788:18:41","nodeType":"YulFunctionCall","src":"22788:18:41"},{"arguments":[{"name":"value1","nativeSrc":"22812:6:41","nodeType":"YulIdentifier","src":"22812:6:41"},{"kind":"number","nativeSrc":"22820:14:41","nodeType":"YulLiteral","src":"22820:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"22808:3:41","nodeType":"YulIdentifier","src":"22808:3:41"},"nativeSrc":"22808:27:41","nodeType":"YulFunctionCall","src":"22808:27:41"}],"functionName":{"name":"mstore","nativeSrc":"22781:6:41","nodeType":"YulIdentifier","src":"22781:6:41"},"nativeSrc":"22781:55:41","nodeType":"YulFunctionCall","src":"22781:55:41"},"nativeSrc":"22781:55:41","nodeType":"YulExpressionStatement","src":"22781:55:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22856:9:41","nodeType":"YulIdentifier","src":"22856:9:41"},{"kind":"number","nativeSrc":"22867:2:41","nodeType":"YulLiteral","src":"22867:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22852:3:41","nodeType":"YulIdentifier","src":"22852:3:41"},"nativeSrc":"22852:18:41","nodeType":"YulFunctionCall","src":"22852:18:41"},{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"22886:6:41","nodeType":"YulIdentifier","src":"22886:6:41"}],"functionName":{"name":"iszero","nativeSrc":"22879:6:41","nodeType":"YulIdentifier","src":"22879:6:41"},"nativeSrc":"22879:14:41","nodeType":"YulFunctionCall","src":"22879:14:41"}],"functionName":{"name":"iszero","nativeSrc":"22872:6:41","nodeType":"YulIdentifier","src":"22872:6:41"},"nativeSrc":"22872:22:41","nodeType":"YulFunctionCall","src":"22872:22:41"}],"functionName":{"name":"mstore","nativeSrc":"22845:6:41","nodeType":"YulIdentifier","src":"22845:6:41"},"nativeSrc":"22845:50:41","nodeType":"YulFunctionCall","src":"22845:50:41"},"nativeSrc":"22845:50:41","nodeType":"YulExpressionStatement","src":"22845:50:41"}]},"name":"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed","nativeSrc":"22538:363:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22638:9:41","nodeType":"YulTypedName","src":"22638:9:41","type":""},{"name":"value2","nativeSrc":"22649:6:41","nodeType":"YulTypedName","src":"22649:6:41","type":""},{"name":"value1","nativeSrc":"22657:6:41","nodeType":"YulTypedName","src":"22657:6:41","type":""},{"name":"value0","nativeSrc":"22665:6:41","nodeType":"YulTypedName","src":"22665:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22676:4:41","nodeType":"YulTypedName","src":"22676:4:41","type":""}],"src":"22538:363:41"},{"body":{"nativeSrc":"23031:157:41","nodeType":"YulBlock","src":"23031:157:41","statements":[{"nativeSrc":"23041:26:41","nodeType":"YulAssignment","src":"23041:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"23053:9:41","nodeType":"YulIdentifier","src":"23053:9:41"},{"kind":"number","nativeSrc":"23064:2:41","nodeType":"YulLiteral","src":"23064:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"23049:3:41","nodeType":"YulIdentifier","src":"23049:3:41"},"nativeSrc":"23049:18:41","nodeType":"YulFunctionCall","src":"23049:18:41"},"variableNames":[{"name":"tail","nativeSrc":"23041:4:41","nodeType":"YulIdentifier","src":"23041:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"23083:9:41","nodeType":"YulIdentifier","src":"23083:9:41"},{"arguments":[{"name":"value0","nativeSrc":"23098:6:41","nodeType":"YulIdentifier","src":"23098:6:41"},{"kind":"number","nativeSrc":"23106:10:41","nodeType":"YulLiteral","src":"23106:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"23094:3:41","nodeType":"YulIdentifier","src":"23094:3:41"},"nativeSrc":"23094:23:41","nodeType":"YulFunctionCall","src":"23094:23:41"}],"functionName":{"name":"mstore","nativeSrc":"23076:6:41","nodeType":"YulIdentifier","src":"23076:6:41"},"nativeSrc":"23076:42:41","nodeType":"YulFunctionCall","src":"23076:42:41"},"nativeSrc":"23076:42:41","nodeType":"YulExpressionStatement","src":"23076:42:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23138:9:41","nodeType":"YulIdentifier","src":"23138:9:41"},{"kind":"number","nativeSrc":"23149:2:41","nodeType":"YulLiteral","src":"23149:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23134:3:41","nodeType":"YulIdentifier","src":"23134:3:41"},"nativeSrc":"23134:18:41","nodeType":"YulFunctionCall","src":"23134:18:41"},{"arguments":[{"name":"value1","nativeSrc":"23158:6:41","nodeType":"YulIdentifier","src":"23158:6:41"},{"kind":"number","nativeSrc":"23166:14:41","nodeType":"YulLiteral","src":"23166:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"23154:3:41","nodeType":"YulIdentifier","src":"23154:3:41"},"nativeSrc":"23154:27:41","nodeType":"YulFunctionCall","src":"23154:27:41"}],"functionName":{"name":"mstore","nativeSrc":"23127:6:41","nodeType":"YulIdentifier","src":"23127:6:41"},"nativeSrc":"23127:55:41","nodeType":"YulFunctionCall","src":"23127:55:41"},"nativeSrc":"23127:55:41","nodeType":"YulExpressionStatement","src":"23127:55:41"}]},"name":"abi_encode_tuple_t_uint32_t_uint48__to_t_uint32_t_uint48__fromStack_reversed","nativeSrc":"22906:282:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22992:9:41","nodeType":"YulTypedName","src":"22992:9:41","type":""},{"name":"value1","nativeSrc":"23003:6:41","nodeType":"YulTypedName","src":"23003:6:41","type":""},{"name":"value0","nativeSrc":"23011:6:41","nodeType":"YulTypedName","src":"23011:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"23022:4:41","nodeType":"YulTypedName","src":"23022:4:41","type":""}],"src":"22906:282:41"},{"body":{"nativeSrc":"23314:1086:41","nodeType":"YulBlock","src":"23314:1086:41","statements":[{"body":{"nativeSrc":"23360:16:41","nodeType":"YulBlock","src":"23360:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23369:1:41","nodeType":"YulLiteral","src":"23369:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"23372:1:41","nodeType":"YulLiteral","src":"23372:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23362:6:41","nodeType":"YulIdentifier","src":"23362:6:41"},"nativeSrc":"23362:12:41","nodeType":"YulFunctionCall","src":"23362:12:41"},"nativeSrc":"23362:12:41","nodeType":"YulExpressionStatement","src":"23362:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"23335:7:41","nodeType":"YulIdentifier","src":"23335:7:41"},{"name":"headStart","nativeSrc":"23344:9:41","nodeType":"YulIdentifier","src":"23344:9:41"}],"functionName":{"name":"sub","nativeSrc":"23331:3:41","nodeType":"YulIdentifier","src":"23331:3:41"},"nativeSrc":"23331:23:41","nodeType":"YulFunctionCall","src":"23331:23:41"},{"kind":"number","nativeSrc":"23356:2:41","nodeType":"YulLiteral","src":"23356:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"23327:3:41","nodeType":"YulIdentifier","src":"23327:3:41"},"nativeSrc":"23327:32:41","nodeType":"YulFunctionCall","src":"23327:32:41"},"nativeSrc":"23324:52:41","nodeType":"YulIf","src":"23324:52:41"},{"nativeSrc":"23385:36:41","nodeType":"YulVariableDeclaration","src":"23385:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"23411:9:41","nodeType":"YulIdentifier","src":"23411:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"23398:12:41","nodeType":"YulIdentifier","src":"23398:12:41"},"nativeSrc":"23398:23:41","nodeType":"YulFunctionCall","src":"23398:23:41"},"variables":[{"name":"value","nativeSrc":"23389:5:41","nodeType":"YulTypedName","src":"23389:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"23455:5:41","nodeType":"YulIdentifier","src":"23455:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"23430:24:41","nodeType":"YulIdentifier","src":"23430:24:41"},"nativeSrc":"23430:31:41","nodeType":"YulFunctionCall","src":"23430:31:41"},"nativeSrc":"23430:31:41","nodeType":"YulExpressionStatement","src":"23430:31:41"},{"nativeSrc":"23470:15:41","nodeType":"YulAssignment","src":"23470:15:41","value":{"name":"value","nativeSrc":"23480:5:41","nodeType":"YulIdentifier","src":"23480:5:41"},"variableNames":[{"name":"value0","nativeSrc":"23470:6:41","nodeType":"YulIdentifier","src":"23470:6:41"}]},{"nativeSrc":"23494:16:41","nodeType":"YulVariableDeclaration","src":"23494:16:41","value":{"kind":"number","nativeSrc":"23509:1:41","nodeType":"YulLiteral","src":"23509:1:41","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"23498:7:41","nodeType":"YulTypedName","src":"23498:7:41","type":""}]},{"nativeSrc":"23519:43:41","nodeType":"YulAssignment","src":"23519:43:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23547:9:41","nodeType":"YulIdentifier","src":"23547:9:41"},{"kind":"number","nativeSrc":"23558:2:41","nodeType":"YulLiteral","src":"23558:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23543:3:41","nodeType":"YulIdentifier","src":"23543:3:41"},"nativeSrc":"23543:18:41","nodeType":"YulFunctionCall","src":"23543:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"23530:12:41","nodeType":"YulIdentifier","src":"23530:12:41"},"nativeSrc":"23530:32:41","nodeType":"YulFunctionCall","src":"23530:32:41"},"variableNames":[{"name":"value_1","nativeSrc":"23519:7:41","nodeType":"YulIdentifier","src":"23519:7:41"}]},{"nativeSrc":"23571:17:41","nodeType":"YulAssignment","src":"23571:17:41","value":{"name":"value_1","nativeSrc":"23581:7:41","nodeType":"YulIdentifier","src":"23581:7:41"},"variableNames":[{"name":"value1","nativeSrc":"23571:6:41","nodeType":"YulIdentifier","src":"23571:6:41"}]},{"nativeSrc":"23597:46:41","nodeType":"YulVariableDeclaration","src":"23597:46:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23628:9:41","nodeType":"YulIdentifier","src":"23628:9:41"},{"kind":"number","nativeSrc":"23639:2:41","nodeType":"YulLiteral","src":"23639:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"23624:3:41","nodeType":"YulIdentifier","src":"23624:3:41"},"nativeSrc":"23624:18:41","nodeType":"YulFunctionCall","src":"23624:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"23611:12:41","nodeType":"YulIdentifier","src":"23611:12:41"},"nativeSrc":"23611:32:41","nodeType":"YulFunctionCall","src":"23611:32:41"},"variables":[{"name":"offset","nativeSrc":"23601:6:41","nodeType":"YulTypedName","src":"23601:6:41","type":""}]},{"body":{"nativeSrc":"23686:16:41","nodeType":"YulBlock","src":"23686:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23695:1:41","nodeType":"YulLiteral","src":"23695:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"23698:1:41","nodeType":"YulLiteral","src":"23698:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23688:6:41","nodeType":"YulIdentifier","src":"23688:6:41"},"nativeSrc":"23688:12:41","nodeType":"YulFunctionCall","src":"23688:12:41"},"nativeSrc":"23688:12:41","nodeType":"YulExpressionStatement","src":"23688:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"23658:6:41","nodeType":"YulIdentifier","src":"23658:6:41"},{"kind":"number","nativeSrc":"23666:18:41","nodeType":"YulLiteral","src":"23666:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"23655:2:41","nodeType":"YulIdentifier","src":"23655:2:41"},"nativeSrc":"23655:30:41","nodeType":"YulFunctionCall","src":"23655:30:41"},"nativeSrc":"23652:50:41","nodeType":"YulIf","src":"23652:50:41"},{"nativeSrc":"23711:32:41","nodeType":"YulVariableDeclaration","src":"23711:32:41","value":{"arguments":[{"name":"headStart","nativeSrc":"23725:9:41","nodeType":"YulIdentifier","src":"23725:9:41"},{"name":"offset","nativeSrc":"23736:6:41","nodeType":"YulIdentifier","src":"23736:6:41"}],"functionName":{"name":"add","nativeSrc":"23721:3:41","nodeType":"YulIdentifier","src":"23721:3:41"},"nativeSrc":"23721:22:41","nodeType":"YulFunctionCall","src":"23721:22:41"},"variables":[{"name":"_1","nativeSrc":"23715:2:41","nodeType":"YulTypedName","src":"23715:2:41","type":""}]},{"body":{"nativeSrc":"23791:16:41","nodeType":"YulBlock","src":"23791:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23800:1:41","nodeType":"YulLiteral","src":"23800:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"23803:1:41","nodeType":"YulLiteral","src":"23803:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23793:6:41","nodeType":"YulIdentifier","src":"23793:6:41"},"nativeSrc":"23793:12:41","nodeType":"YulFunctionCall","src":"23793:12:41"},"nativeSrc":"23793:12:41","nodeType":"YulExpressionStatement","src":"23793:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"23770:2:41","nodeType":"YulIdentifier","src":"23770:2:41"},{"kind":"number","nativeSrc":"23774:4:41","nodeType":"YulLiteral","src":"23774:4:41","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"23766:3:41","nodeType":"YulIdentifier","src":"23766:3:41"},"nativeSrc":"23766:13:41","nodeType":"YulFunctionCall","src":"23766:13:41"},{"name":"dataEnd","nativeSrc":"23781:7:41","nodeType":"YulIdentifier","src":"23781:7:41"}],"functionName":{"name":"slt","nativeSrc":"23762:3:41","nodeType":"YulIdentifier","src":"23762:3:41"},"nativeSrc":"23762:27:41","nodeType":"YulFunctionCall","src":"23762:27:41"}],"functionName":{"name":"iszero","nativeSrc":"23755:6:41","nodeType":"YulIdentifier","src":"23755:6:41"},"nativeSrc":"23755:35:41","nodeType":"YulFunctionCall","src":"23755:35:41"},"nativeSrc":"23752:55:41","nodeType":"YulIf","src":"23752:55:41"},{"nativeSrc":"23816:30:41","nodeType":"YulVariableDeclaration","src":"23816:30:41","value":{"arguments":[{"name":"_1","nativeSrc":"23843:2:41","nodeType":"YulIdentifier","src":"23843:2:41"}],"functionName":{"name":"calldataload","nativeSrc":"23830:12:41","nodeType":"YulIdentifier","src":"23830:12:41"},"nativeSrc":"23830:16:41","nodeType":"YulFunctionCall","src":"23830:16:41"},"variables":[{"name":"length","nativeSrc":"23820:6:41","nodeType":"YulTypedName","src":"23820:6:41","type":""}]},{"body":{"nativeSrc":"23889:22:41","nodeType":"YulBlock","src":"23889:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"23891:16:41","nodeType":"YulIdentifier","src":"23891:16:41"},"nativeSrc":"23891:18:41","nodeType":"YulFunctionCall","src":"23891:18:41"},"nativeSrc":"23891:18:41","nodeType":"YulExpressionStatement","src":"23891:18:41"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"23861:6:41","nodeType":"YulIdentifier","src":"23861:6:41"},{"kind":"number","nativeSrc":"23869:18:41","nodeType":"YulLiteral","src":"23869:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"23858:2:41","nodeType":"YulIdentifier","src":"23858:2:41"},"nativeSrc":"23858:30:41","nodeType":"YulFunctionCall","src":"23858:30:41"},"nativeSrc":"23855:56:41","nodeType":"YulIf","src":"23855:56:41"},{"nativeSrc":"23920:23:41","nodeType":"YulVariableDeclaration","src":"23920:23:41","value":{"arguments":[{"kind":"number","nativeSrc":"23940:2:41","nodeType":"YulLiteral","src":"23940:2:41","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"23934:5:41","nodeType":"YulIdentifier","src":"23934:5:41"},"nativeSrc":"23934:9:41","nodeType":"YulFunctionCall","src":"23934:9:41"},"variables":[{"name":"memPtr","nativeSrc":"23924:6:41","nodeType":"YulTypedName","src":"23924:6:41","type":""}]},{"nativeSrc":"23952:85:41","nodeType":"YulVariableDeclaration","src":"23952:85:41","value":{"arguments":[{"name":"memPtr","nativeSrc":"23974:6:41","nodeType":"YulIdentifier","src":"23974:6:41"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"23998:6:41","nodeType":"YulIdentifier","src":"23998:6:41"},{"kind":"number","nativeSrc":"24006:4:41","nodeType":"YulLiteral","src":"24006:4:41","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"23994:3:41","nodeType":"YulIdentifier","src":"23994:3:41"},"nativeSrc":"23994:17:41","nodeType":"YulFunctionCall","src":"23994:17:41"},{"arguments":[{"kind":"number","nativeSrc":"24017:2:41","nodeType":"YulLiteral","src":"24017:2:41","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"24013:3:41","nodeType":"YulIdentifier","src":"24013:3:41"},"nativeSrc":"24013:7:41","nodeType":"YulFunctionCall","src":"24013:7:41"}],"functionName":{"name":"and","nativeSrc":"23990:3:41","nodeType":"YulIdentifier","src":"23990:3:41"},"nativeSrc":"23990:31:41","nodeType":"YulFunctionCall","src":"23990:31:41"},{"kind":"number","nativeSrc":"24023:2:41","nodeType":"YulLiteral","src":"24023:2:41","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"23986:3:41","nodeType":"YulIdentifier","src":"23986:3:41"},"nativeSrc":"23986:40:41","nodeType":"YulFunctionCall","src":"23986:40:41"},{"arguments":[{"kind":"number","nativeSrc":"24032:2:41","nodeType":"YulLiteral","src":"24032:2:41","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"24028:3:41","nodeType":"YulIdentifier","src":"24028:3:41"},"nativeSrc":"24028:7:41","nodeType":"YulFunctionCall","src":"24028:7:41"}],"functionName":{"name":"and","nativeSrc":"23982:3:41","nodeType":"YulIdentifier","src":"23982:3:41"},"nativeSrc":"23982:54:41","nodeType":"YulFunctionCall","src":"23982:54:41"}],"functionName":{"name":"add","nativeSrc":"23970:3:41","nodeType":"YulIdentifier","src":"23970:3:41"},"nativeSrc":"23970:67:41","nodeType":"YulFunctionCall","src":"23970:67:41"},"variables":[{"name":"newFreePtr","nativeSrc":"23956:10:41","nodeType":"YulTypedName","src":"23956:10:41","type":""}]},{"body":{"nativeSrc":"24112:22:41","nodeType":"YulBlock","src":"24112:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"24114:16:41","nodeType":"YulIdentifier","src":"24114:16:41"},"nativeSrc":"24114:18:41","nodeType":"YulFunctionCall","src":"24114:18:41"},"nativeSrc":"24114:18:41","nodeType":"YulExpressionStatement","src":"24114:18:41"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"24055:10:41","nodeType":"YulIdentifier","src":"24055:10:41"},{"kind":"number","nativeSrc":"24067:18:41","nodeType":"YulLiteral","src":"24067:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"24052:2:41","nodeType":"YulIdentifier","src":"24052:2:41"},"nativeSrc":"24052:34:41","nodeType":"YulFunctionCall","src":"24052:34:41"},{"arguments":[{"name":"newFreePtr","nativeSrc":"24091:10:41","nodeType":"YulIdentifier","src":"24091:10:41"},{"name":"memPtr","nativeSrc":"24103:6:41","nodeType":"YulIdentifier","src":"24103:6:41"}],"functionName":{"name":"lt","nativeSrc":"24088:2:41","nodeType":"YulIdentifier","src":"24088:2:41"},"nativeSrc":"24088:22:41","nodeType":"YulFunctionCall","src":"24088:22:41"}],"functionName":{"name":"or","nativeSrc":"24049:2:41","nodeType":"YulIdentifier","src":"24049:2:41"},"nativeSrc":"24049:62:41","nodeType":"YulFunctionCall","src":"24049:62:41"},"nativeSrc":"24046:88:41","nodeType":"YulIf","src":"24046:88:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"24150:2:41","nodeType":"YulLiteral","src":"24150:2:41","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"24154:10:41","nodeType":"YulIdentifier","src":"24154:10:41"}],"functionName":{"name":"mstore","nativeSrc":"24143:6:41","nodeType":"YulIdentifier","src":"24143:6:41"},"nativeSrc":"24143:22:41","nodeType":"YulFunctionCall","src":"24143:22:41"},"nativeSrc":"24143:22:41","nodeType":"YulExpressionStatement","src":"24143:22:41"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"24181:6:41","nodeType":"YulIdentifier","src":"24181:6:41"},{"name":"length","nativeSrc":"24189:6:41","nodeType":"YulIdentifier","src":"24189:6:41"}],"functionName":{"name":"mstore","nativeSrc":"24174:6:41","nodeType":"YulIdentifier","src":"24174:6:41"},"nativeSrc":"24174:22:41","nodeType":"YulFunctionCall","src":"24174:22:41"},"nativeSrc":"24174:22:41","nodeType":"YulExpressionStatement","src":"24174:22:41"},{"body":{"nativeSrc":"24246:16:41","nodeType":"YulBlock","src":"24246:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24255:1:41","nodeType":"YulLiteral","src":"24255:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"24258:1:41","nodeType":"YulLiteral","src":"24258:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24248:6:41","nodeType":"YulIdentifier","src":"24248:6:41"},"nativeSrc":"24248:12:41","nodeType":"YulFunctionCall","src":"24248:12:41"},"nativeSrc":"24248:12:41","nodeType":"YulExpressionStatement","src":"24248:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"24219:2:41","nodeType":"YulIdentifier","src":"24219:2:41"},{"name":"length","nativeSrc":"24223:6:41","nodeType":"YulIdentifier","src":"24223:6:41"}],"functionName":{"name":"add","nativeSrc":"24215:3:41","nodeType":"YulIdentifier","src":"24215:3:41"},"nativeSrc":"24215:15:41","nodeType":"YulFunctionCall","src":"24215:15:41"},{"kind":"number","nativeSrc":"24232:2:41","nodeType":"YulLiteral","src":"24232:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24211:3:41","nodeType":"YulIdentifier","src":"24211:3:41"},"nativeSrc":"24211:24:41","nodeType":"YulFunctionCall","src":"24211:24:41"},{"name":"dataEnd","nativeSrc":"24237:7:41","nodeType":"YulIdentifier","src":"24237:7:41"}],"functionName":{"name":"gt","nativeSrc":"24208:2:41","nodeType":"YulIdentifier","src":"24208:2:41"},"nativeSrc":"24208:37:41","nodeType":"YulFunctionCall","src":"24208:37:41"},"nativeSrc":"24205:57:41","nodeType":"YulIf","src":"24205:57:41"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"24288:6:41","nodeType":"YulIdentifier","src":"24288:6:41"},{"kind":"number","nativeSrc":"24296:2:41","nodeType":"YulLiteral","src":"24296:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24284:3:41","nodeType":"YulIdentifier","src":"24284:3:41"},"nativeSrc":"24284:15:41","nodeType":"YulFunctionCall","src":"24284:15:41"},{"arguments":[{"name":"_1","nativeSrc":"24305:2:41","nodeType":"YulIdentifier","src":"24305:2:41"},{"kind":"number","nativeSrc":"24309:2:41","nodeType":"YulLiteral","src":"24309:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24301:3:41","nodeType":"YulIdentifier","src":"24301:3:41"},"nativeSrc":"24301:11:41","nodeType":"YulFunctionCall","src":"24301:11:41"},{"name":"length","nativeSrc":"24314:6:41","nodeType":"YulIdentifier","src":"24314:6:41"}],"functionName":{"name":"calldatacopy","nativeSrc":"24271:12:41","nodeType":"YulIdentifier","src":"24271:12:41"},"nativeSrc":"24271:50:41","nodeType":"YulFunctionCall","src":"24271:50:41"},"nativeSrc":"24271:50:41","nodeType":"YulExpressionStatement","src":"24271:50:41"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"24345:6:41","nodeType":"YulIdentifier","src":"24345:6:41"},{"name":"length","nativeSrc":"24353:6:41","nodeType":"YulIdentifier","src":"24353:6:41"}],"functionName":{"name":"add","nativeSrc":"24341:3:41","nodeType":"YulIdentifier","src":"24341:3:41"},"nativeSrc":"24341:19:41","nodeType":"YulFunctionCall","src":"24341:19:41"},{"kind":"number","nativeSrc":"24362:2:41","nodeType":"YulLiteral","src":"24362:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24337:3:41","nodeType":"YulIdentifier","src":"24337:3:41"},"nativeSrc":"24337:28:41","nodeType":"YulFunctionCall","src":"24337:28:41"},{"kind":"number","nativeSrc":"24367:1:41","nodeType":"YulLiteral","src":"24367:1:41","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"24330:6:41","nodeType":"YulIdentifier","src":"24330:6:41"},"nativeSrc":"24330:39:41","nodeType":"YulFunctionCall","src":"24330:39:41"},"nativeSrc":"24330:39:41","nodeType":"YulExpressionStatement","src":"24330:39:41"},{"nativeSrc":"24378:16:41","nodeType":"YulAssignment","src":"24378:16:41","value":{"name":"memPtr","nativeSrc":"24388:6:41","nodeType":"YulIdentifier","src":"24388:6:41"},"variableNames":[{"name":"value2","nativeSrc":"24378:6:41","nodeType":"YulIdentifier","src":"24378:6:41"}]}]},"name":"abi_decode_tuple_t_address_payablet_uint256t_bytes_memory_ptr","nativeSrc":"23193:1207:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23264:9:41","nodeType":"YulTypedName","src":"23264:9:41","type":""},{"name":"dataEnd","nativeSrc":"23275:7:41","nodeType":"YulTypedName","src":"23275:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"23287:6:41","nodeType":"YulTypedName","src":"23287:6:41","type":""},{"name":"value1","nativeSrc":"23295:6:41","nodeType":"YulTypedName","src":"23295:6:41","type":""},{"name":"value2","nativeSrc":"23303:6:41","nodeType":"YulTypedName","src":"23303:6:41","type":""}],"src":"23193:1207:41"},{"body":{"nativeSrc":"24453:122:41","nodeType":"YulBlock","src":"24453:122:41","statements":[{"nativeSrc":"24463:51:41","nodeType":"YulAssignment","src":"24463:51:41","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"24479:1:41","nodeType":"YulIdentifier","src":"24479:1:41"},{"kind":"number","nativeSrc":"24482:10:41","nodeType":"YulLiteral","src":"24482:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"24475:3:41","nodeType":"YulIdentifier","src":"24475:3:41"},"nativeSrc":"24475:18:41","nodeType":"YulFunctionCall","src":"24475:18:41"},{"arguments":[{"name":"y","nativeSrc":"24499:1:41","nodeType":"YulIdentifier","src":"24499:1:41"},{"kind":"number","nativeSrc":"24502:10:41","nodeType":"YulLiteral","src":"24502:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"24495:3:41","nodeType":"YulIdentifier","src":"24495:3:41"},"nativeSrc":"24495:18:41","nodeType":"YulFunctionCall","src":"24495:18:41"}],"functionName":{"name":"sub","nativeSrc":"24471:3:41","nodeType":"YulIdentifier","src":"24471:3:41"},"nativeSrc":"24471:43:41","nodeType":"YulFunctionCall","src":"24471:43:41"},"variableNames":[{"name":"diff","nativeSrc":"24463:4:41","nodeType":"YulIdentifier","src":"24463:4:41"}]},{"body":{"nativeSrc":"24547:22:41","nodeType":"YulBlock","src":"24547:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"24549:16:41","nodeType":"YulIdentifier","src":"24549:16:41"},"nativeSrc":"24549:18:41","nodeType":"YulFunctionCall","src":"24549:18:41"},"nativeSrc":"24549:18:41","nodeType":"YulExpressionStatement","src":"24549:18:41"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"24529:4:41","nodeType":"YulIdentifier","src":"24529:4:41"},{"kind":"number","nativeSrc":"24535:10:41","nodeType":"YulLiteral","src":"24535:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"gt","nativeSrc":"24526:2:41","nodeType":"YulIdentifier","src":"24526:2:41"},"nativeSrc":"24526:20:41","nodeType":"YulFunctionCall","src":"24526:20:41"},"nativeSrc":"24523:46:41","nodeType":"YulIf","src":"24523:46:41"}]},"name":"checked_sub_t_uint32","nativeSrc":"24405:170:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"24435:1:41","nodeType":"YulTypedName","src":"24435:1:41","type":""},{"name":"y","nativeSrc":"24438:1:41","nodeType":"YulTypedName","src":"24438:1:41","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"24444:4:41","nodeType":"YulTypedName","src":"24444:4:41","type":""}],"src":"24405:170:41"},{"body":{"nativeSrc":"24716:130:41","nodeType":"YulBlock","src":"24716:130:41","statements":[{"nativeSrc":"24726:26:41","nodeType":"YulAssignment","src":"24726:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"24738:9:41","nodeType":"YulIdentifier","src":"24738:9:41"},{"kind":"number","nativeSrc":"24749:2:41","nodeType":"YulLiteral","src":"24749:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"24734:3:41","nodeType":"YulIdentifier","src":"24734:3:41"},"nativeSrc":"24734:18:41","nodeType":"YulFunctionCall","src":"24734:18:41"},"variableNames":[{"name":"tail","nativeSrc":"24726:4:41","nodeType":"YulIdentifier","src":"24726:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"24768:9:41","nodeType":"YulIdentifier","src":"24768:9:41"},{"arguments":[{"name":"value0","nativeSrc":"24783:6:41","nodeType":"YulIdentifier","src":"24783:6:41"},{"kind":"number","nativeSrc":"24791:4:41","nodeType":"YulLiteral","src":"24791:4:41","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"24779:3:41","nodeType":"YulIdentifier","src":"24779:3:41"},"nativeSrc":"24779:17:41","nodeType":"YulFunctionCall","src":"24779:17:41"}],"functionName":{"name":"mstore","nativeSrc":"24761:6:41","nodeType":"YulIdentifier","src":"24761:6:41"},"nativeSrc":"24761:36:41","nodeType":"YulFunctionCall","src":"24761:36:41"},"nativeSrc":"24761:36:41","nodeType":"YulExpressionStatement","src":"24761:36:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24817:9:41","nodeType":"YulIdentifier","src":"24817:9:41"},{"kind":"number","nativeSrc":"24828:2:41","nodeType":"YulLiteral","src":"24828:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24813:3:41","nodeType":"YulIdentifier","src":"24813:3:41"},"nativeSrc":"24813:18:41","nodeType":"YulFunctionCall","src":"24813:18:41"},{"name":"value1","nativeSrc":"24833:6:41","nodeType":"YulIdentifier","src":"24833:6:41"}],"functionName":{"name":"mstore","nativeSrc":"24806:6:41","nodeType":"YulIdentifier","src":"24806:6:41"},"nativeSrc":"24806:34:41","nodeType":"YulFunctionCall","src":"24806:34:41"},"nativeSrc":"24806:34:41","nodeType":"YulExpressionStatement","src":"24806:34:41"}]},"name":"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"24580:266:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24677:9:41","nodeType":"YulTypedName","src":"24677:9:41","type":""},{"name":"value1","nativeSrc":"24688:6:41","nodeType":"YulTypedName","src":"24688:6:41","type":""},{"name":"value0","nativeSrc":"24696:6:41","nodeType":"YulTypedName","src":"24696:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"24707:4:41","nodeType":"YulTypedName","src":"24707:4:41","type":""}],"src":"24580:266:41"},{"body":{"nativeSrc":"24883:95:41","nodeType":"YulBlock","src":"24883:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24900:1:41","nodeType":"YulLiteral","src":"24900:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"24907:3:41","nodeType":"YulLiteral","src":"24907:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"24912:10:41","nodeType":"YulLiteral","src":"24912:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"24903:3:41","nodeType":"YulIdentifier","src":"24903:3:41"},"nativeSrc":"24903:20:41","nodeType":"YulFunctionCall","src":"24903:20:41"}],"functionName":{"name":"mstore","nativeSrc":"24893:6:41","nodeType":"YulIdentifier","src":"24893:6:41"},"nativeSrc":"24893:31:41","nodeType":"YulFunctionCall","src":"24893:31:41"},"nativeSrc":"24893:31:41","nodeType":"YulExpressionStatement","src":"24893:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"24940:1:41","nodeType":"YulLiteral","src":"24940:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"24943:4:41","nodeType":"YulLiteral","src":"24943:4:41","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"24933:6:41","nodeType":"YulIdentifier","src":"24933:6:41"},"nativeSrc":"24933:15:41","nodeType":"YulFunctionCall","src":"24933:15:41"},"nativeSrc":"24933:15:41","nodeType":"YulExpressionStatement","src":"24933:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"24964:1:41","nodeType":"YulLiteral","src":"24964:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"24967:4:41","nodeType":"YulLiteral","src":"24967:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"24957:6:41","nodeType":"YulIdentifier","src":"24957:6:41"},"nativeSrc":"24957:15:41","nodeType":"YulFunctionCall","src":"24957:15:41"},"nativeSrc":"24957:15:41","nodeType":"YulExpressionStatement","src":"24957:15:41"}]},"name":"panic_error_0x21","nativeSrc":"24851:127:41","nodeType":"YulFunctionDefinition","src":"24851:127:41"},{"body":{"nativeSrc":"25031:77:41","nodeType":"YulBlock","src":"25031:77:41","statements":[{"nativeSrc":"25041:16:41","nodeType":"YulAssignment","src":"25041:16:41","value":{"arguments":[{"name":"x","nativeSrc":"25052:1:41","nodeType":"YulIdentifier","src":"25052:1:41"},{"name":"y","nativeSrc":"25055:1:41","nodeType":"YulIdentifier","src":"25055:1:41"}],"functionName":{"name":"add","nativeSrc":"25048:3:41","nodeType":"YulIdentifier","src":"25048:3:41"},"nativeSrc":"25048:9:41","nodeType":"YulFunctionCall","src":"25048:9:41"},"variableNames":[{"name":"sum","nativeSrc":"25041:3:41","nodeType":"YulIdentifier","src":"25041:3:41"}]},{"body":{"nativeSrc":"25080:22:41","nodeType":"YulBlock","src":"25080:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"25082:16:41","nodeType":"YulIdentifier","src":"25082:16:41"},"nativeSrc":"25082:18:41","nodeType":"YulFunctionCall","src":"25082:18:41"},"nativeSrc":"25082:18:41","nodeType":"YulExpressionStatement","src":"25082:18:41"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"25072:1:41","nodeType":"YulIdentifier","src":"25072:1:41"},{"name":"sum","nativeSrc":"25075:3:41","nodeType":"YulIdentifier","src":"25075:3:41"}],"functionName":{"name":"gt","nativeSrc":"25069:2:41","nodeType":"YulIdentifier","src":"25069:2:41"},"nativeSrc":"25069:10:41","nodeType":"YulFunctionCall","src":"25069:10:41"},"nativeSrc":"25066:36:41","nodeType":"YulIf","src":"25066:36:41"}]},"name":"checked_add_t_uint256","nativeSrc":"24983:125:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"25014:1:41","nodeType":"YulTypedName","src":"25014:1:41","type":""},{"name":"y","nativeSrc":"25017:1:41","nodeType":"YulTypedName","src":"25017:1:41","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"25023:3:41","nodeType":"YulTypedName","src":"25023:3:41","type":""}],"src":"24983:125:41"},{"body":{"nativeSrc":"25287:171:41","nodeType":"YulBlock","src":"25287:171:41","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25304:9:41","nodeType":"YulIdentifier","src":"25304:9:41"},{"kind":"number","nativeSrc":"25315:2:41","nodeType":"YulLiteral","src":"25315:2:41","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"25297:6:41","nodeType":"YulIdentifier","src":"25297:6:41"},"nativeSrc":"25297:21:41","nodeType":"YulFunctionCall","src":"25297:21:41"},"nativeSrc":"25297:21:41","nodeType":"YulExpressionStatement","src":"25297:21:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25338:9:41","nodeType":"YulIdentifier","src":"25338:9:41"},{"kind":"number","nativeSrc":"25349:2:41","nodeType":"YulLiteral","src":"25349:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25334:3:41","nodeType":"YulIdentifier","src":"25334:3:41"},"nativeSrc":"25334:18:41","nodeType":"YulFunctionCall","src":"25334:18:41"},{"kind":"number","nativeSrc":"25354:2:41","nodeType":"YulLiteral","src":"25354:2:41","type":"","value":"21"}],"functionName":{"name":"mstore","nativeSrc":"25327:6:41","nodeType":"YulIdentifier","src":"25327:6:41"},"nativeSrc":"25327:30:41","nodeType":"YulFunctionCall","src":"25327:30:41"},"nativeSrc":"25327:30:41","nodeType":"YulExpressionStatement","src":"25327:30:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25377:9:41","nodeType":"YulIdentifier","src":"25377:9:41"},{"kind":"number","nativeSrc":"25388:2:41","nodeType":"YulLiteral","src":"25388:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25373:3:41","nodeType":"YulIdentifier","src":"25373:3:41"},"nativeSrc":"25373:18:41","nodeType":"YulFunctionCall","src":"25373:18:41"},{"hexValue":"746f427974657333325f6f75744f66426f756e6473","kind":"string","nativeSrc":"25393:23:41","nodeType":"YulLiteral","src":"25393:23:41","type":"","value":"toBytes32_outOfBounds"}],"functionName":{"name":"mstore","nativeSrc":"25366:6:41","nodeType":"YulIdentifier","src":"25366:6:41"},"nativeSrc":"25366:51:41","nodeType":"YulFunctionCall","src":"25366:51:41"},"nativeSrc":"25366:51:41","nodeType":"YulExpressionStatement","src":"25366:51:41"},{"nativeSrc":"25426:26:41","nodeType":"YulAssignment","src":"25426:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"25438:9:41","nodeType":"YulIdentifier","src":"25438:9:41"},{"kind":"number","nativeSrc":"25449:2:41","nodeType":"YulLiteral","src":"25449:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25434:3:41","nodeType":"YulIdentifier","src":"25434:3:41"},"nativeSrc":"25434:18:41","nodeType":"YulFunctionCall","src":"25434:18:41"},"variableNames":[{"name":"tail","nativeSrc":"25426:4:41","nodeType":"YulIdentifier","src":"25426:4:41"}]}]},"name":"abi_encode_tuple_t_stringliteral_95abc635681816f3b423f999d8035c1cc722b70e3d801f56cd1748a4f5810fa2__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"25113:345:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25264:9:41","nodeType":"YulTypedName","src":"25264:9:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25278:4:41","nodeType":"YulTypedName","src":"25278:4:41","type":""}],"src":"25113:345:41"},{"body":{"nativeSrc":"25638:245:41","nodeType":"YulBlock","src":"25638:245:41","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25655:9:41","nodeType":"YulIdentifier","src":"25655:9:41"},{"arguments":[{"name":"value0","nativeSrc":"25670:6:41","nodeType":"YulIdentifier","src":"25670:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25686:3:41","nodeType":"YulLiteral","src":"25686:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"25691:1:41","nodeType":"YulLiteral","src":"25691:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"25682:3:41","nodeType":"YulIdentifier","src":"25682:3:41"},"nativeSrc":"25682:11:41","nodeType":"YulFunctionCall","src":"25682:11:41"},{"kind":"number","nativeSrc":"25695:1:41","nodeType":"YulLiteral","src":"25695:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"25678:3:41","nodeType":"YulIdentifier","src":"25678:3:41"},"nativeSrc":"25678:19:41","nodeType":"YulFunctionCall","src":"25678:19:41"}],"functionName":{"name":"and","nativeSrc":"25666:3:41","nodeType":"YulIdentifier","src":"25666:3:41"},"nativeSrc":"25666:32:41","nodeType":"YulFunctionCall","src":"25666:32:41"}],"functionName":{"name":"mstore","nativeSrc":"25648:6:41","nodeType":"YulIdentifier","src":"25648:6:41"},"nativeSrc":"25648:51:41","nodeType":"YulFunctionCall","src":"25648:51:41"},"nativeSrc":"25648:51:41","nodeType":"YulExpressionStatement","src":"25648:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25719:9:41","nodeType":"YulIdentifier","src":"25719:9:41"},{"kind":"number","nativeSrc":"25730:2:41","nodeType":"YulLiteral","src":"25730:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25715:3:41","nodeType":"YulIdentifier","src":"25715:3:41"},"nativeSrc":"25715:18:41","nodeType":"YulFunctionCall","src":"25715:18:41"},{"arguments":[{"name":"value1","nativeSrc":"25739:6:41","nodeType":"YulIdentifier","src":"25739:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25755:3:41","nodeType":"YulLiteral","src":"25755:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"25760:1:41","nodeType":"YulLiteral","src":"25760:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"25751:3:41","nodeType":"YulIdentifier","src":"25751:3:41"},"nativeSrc":"25751:11:41","nodeType":"YulFunctionCall","src":"25751:11:41"},{"kind":"number","nativeSrc":"25764:1:41","nodeType":"YulLiteral","src":"25764:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"25747:3:41","nodeType":"YulIdentifier","src":"25747:3:41"},"nativeSrc":"25747:19:41","nodeType":"YulFunctionCall","src":"25747:19:41"}],"functionName":{"name":"and","nativeSrc":"25735:3:41","nodeType":"YulIdentifier","src":"25735:3:41"},"nativeSrc":"25735:32:41","nodeType":"YulFunctionCall","src":"25735:32:41"}],"functionName":{"name":"mstore","nativeSrc":"25708:6:41","nodeType":"YulIdentifier","src":"25708:6:41"},"nativeSrc":"25708:60:41","nodeType":"YulFunctionCall","src":"25708:60:41"},"nativeSrc":"25708:60:41","nodeType":"YulExpressionStatement","src":"25708:60:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25788:9:41","nodeType":"YulIdentifier","src":"25788:9:41"},{"kind":"number","nativeSrc":"25799:2:41","nodeType":"YulLiteral","src":"25799:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25784:3:41","nodeType":"YulIdentifier","src":"25784:3:41"},"nativeSrc":"25784:18:41","nodeType":"YulFunctionCall","src":"25784:18:41"},{"kind":"number","nativeSrc":"25804:2:41","nodeType":"YulLiteral","src":"25804:2:41","type":"","value":"96"}],"functionName":{"name":"mstore","nativeSrc":"25777:6:41","nodeType":"YulIdentifier","src":"25777:6:41"},"nativeSrc":"25777:30:41","nodeType":"YulFunctionCall","src":"25777:30:41"},"nativeSrc":"25777:30:41","nodeType":"YulExpressionStatement","src":"25777:30:41"},{"nativeSrc":"25816:61:41","nodeType":"YulAssignment","src":"25816:61:41","value":{"arguments":[{"name":"value2","nativeSrc":"25850:6:41","nodeType":"YulIdentifier","src":"25850:6:41"},{"arguments":[{"name":"headStart","nativeSrc":"25862:9:41","nodeType":"YulIdentifier","src":"25862:9:41"},{"kind":"number","nativeSrc":"25873:2:41","nodeType":"YulLiteral","src":"25873:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25858:3:41","nodeType":"YulIdentifier","src":"25858:3:41"},"nativeSrc":"25858:18:41","nodeType":"YulFunctionCall","src":"25858:18:41"}],"functionName":{"name":"abi_encode_bytes_to_bytes","nativeSrc":"25824:25:41","nodeType":"YulIdentifier","src":"25824:25:41"},"nativeSrc":"25824:53:41","nodeType":"YulFunctionCall","src":"25824:53:41"},"variableNames":[{"name":"tail","nativeSrc":"25816:4:41","nodeType":"YulIdentifier","src":"25816:4:41"}]}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes_memory_ptr__to_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"25463:420:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25591:9:41","nodeType":"YulTypedName","src":"25591:9:41","type":""},{"name":"value2","nativeSrc":"25602:6:41","nodeType":"YulTypedName","src":"25602:6:41","type":""},{"name":"value1","nativeSrc":"25610:6:41","nodeType":"YulTypedName","src":"25610:6:41","type":""},{"name":"value0","nativeSrc":"25618:6:41","nodeType":"YulTypedName","src":"25618:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25629:4:41","nodeType":"YulTypedName","src":"25629:4:41","type":""}],"src":"25463:420:41"},{"body":{"nativeSrc":"26069:217:41","nodeType":"YulBlock","src":"26069:217:41","statements":[{"nativeSrc":"26079:27:41","nodeType":"YulAssignment","src":"26079:27:41","value":{"arguments":[{"name":"headStart","nativeSrc":"26091:9:41","nodeType":"YulIdentifier","src":"26091:9:41"},{"kind":"number","nativeSrc":"26102:3:41","nodeType":"YulLiteral","src":"26102:3:41","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"26087:3:41","nodeType":"YulIdentifier","src":"26087:3:41"},"nativeSrc":"26087:19:41","nodeType":"YulFunctionCall","src":"26087:19:41"},"variableNames":[{"name":"tail","nativeSrc":"26079:4:41","nodeType":"YulIdentifier","src":"26079:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"26122:9:41","nodeType":"YulIdentifier","src":"26122:9:41"},{"name":"value0","nativeSrc":"26133:6:41","nodeType":"YulIdentifier","src":"26133:6:41"}],"functionName":{"name":"mstore","nativeSrc":"26115:6:41","nodeType":"YulIdentifier","src":"26115:6:41"},"nativeSrc":"26115:25:41","nodeType":"YulFunctionCall","src":"26115:25:41"},"nativeSrc":"26115:25:41","nodeType":"YulExpressionStatement","src":"26115:25:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26160:9:41","nodeType":"YulIdentifier","src":"26160:9:41"},{"kind":"number","nativeSrc":"26171:2:41","nodeType":"YulLiteral","src":"26171:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"26156:3:41","nodeType":"YulIdentifier","src":"26156:3:41"},"nativeSrc":"26156:18:41","nodeType":"YulFunctionCall","src":"26156:18:41"},{"arguments":[{"name":"value1","nativeSrc":"26180:6:41","nodeType":"YulIdentifier","src":"26180:6:41"},{"kind":"number","nativeSrc":"26188:4:41","nodeType":"YulLiteral","src":"26188:4:41","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"26176:3:41","nodeType":"YulIdentifier","src":"26176:3:41"},"nativeSrc":"26176:17:41","nodeType":"YulFunctionCall","src":"26176:17:41"}],"functionName":{"name":"mstore","nativeSrc":"26149:6:41","nodeType":"YulIdentifier","src":"26149:6:41"},"nativeSrc":"26149:45:41","nodeType":"YulFunctionCall","src":"26149:45:41"},"nativeSrc":"26149:45:41","nodeType":"YulExpressionStatement","src":"26149:45:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26214:9:41","nodeType":"YulIdentifier","src":"26214:9:41"},{"kind":"number","nativeSrc":"26225:2:41","nodeType":"YulLiteral","src":"26225:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"26210:3:41","nodeType":"YulIdentifier","src":"26210:3:41"},"nativeSrc":"26210:18:41","nodeType":"YulFunctionCall","src":"26210:18:41"},{"name":"value2","nativeSrc":"26230:6:41","nodeType":"YulIdentifier","src":"26230:6:41"}],"functionName":{"name":"mstore","nativeSrc":"26203:6:41","nodeType":"YulIdentifier","src":"26203:6:41"},"nativeSrc":"26203:34:41","nodeType":"YulFunctionCall","src":"26203:34:41"},"nativeSrc":"26203:34:41","nodeType":"YulExpressionStatement","src":"26203:34:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26257:9:41","nodeType":"YulIdentifier","src":"26257:9:41"},{"kind":"number","nativeSrc":"26268:2:41","nodeType":"YulLiteral","src":"26268:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"26253:3:41","nodeType":"YulIdentifier","src":"26253:3:41"},"nativeSrc":"26253:18:41","nodeType":"YulFunctionCall","src":"26253:18:41"},{"name":"value3","nativeSrc":"26273:6:41","nodeType":"YulIdentifier","src":"26273:6:41"}],"functionName":{"name":"mstore","nativeSrc":"26246:6:41","nodeType":"YulIdentifier","src":"26246:6:41"},"nativeSrc":"26246:34:41","nodeType":"YulFunctionCall","src":"26246:34:41"},"nativeSrc":"26246:34:41","nodeType":"YulExpressionStatement","src":"26246:34:41"}]},"name":"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"25888:398:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"26014:9:41","nodeType":"YulTypedName","src":"26014:9:41","type":""},{"name":"value3","nativeSrc":"26025:6:41","nodeType":"YulTypedName","src":"26025:6:41","type":""},{"name":"value2","nativeSrc":"26033:6:41","nodeType":"YulTypedName","src":"26033:6:41","type":""},{"name":"value1","nativeSrc":"26041:6:41","nodeType":"YulTypedName","src":"26041:6:41","type":""},{"name":"value0","nativeSrc":"26049:6:41","nodeType":"YulTypedName","src":"26049:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"26060:4:41","nodeType":"YulTypedName","src":"26060:4:41","type":""}],"src":"25888:398:41"}]},"contents":"{\n    { }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_array_bytes4_dyn_calldata(offset, end) -> arrayPos, length\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        length := calldataload(offset)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        arrayPos := add(offset, 0x20)\n        if gt(add(add(offset, shl(5, length)), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_uint64(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_array$_t_bytes4_$dyn_calldata_ptrt_uint64(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_bytes4_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        value3 := abi_decode_uint64(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_uint64(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        if iszero(eq(value_1, iszero(iszero(value_1)))) { revert(0, 0) }\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_struct$_PackedUserOperation_$1054_calldata_ptrt_bytes32t_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if slt(sub(dataEnd, _1), 288) { revert(0, 0) }\n        value0 := _1\n        let value := 0\n        value := calldataload(add(headStart, 32))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 64))\n        value2 := value_1\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_bytes_calldata(offset, end) -> arrayPos, length\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        length := calldataload(offset)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        arrayPos := add(offset, 0x20)\n        if gt(add(add(offset, length), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_uint64t_addresst_uint32(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        let value := calldataload(add(headStart, 32))\n        validator_revert_address(value)\n        value1 := value\n        value2 := abi_decode_uint32(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_uint64t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        let value := calldataload(add(headStart, 32))\n        validator_revert_address(value)\n        value1 := value\n    }\n    function abi_encode_tuple_t_uint48_t_uint32_t_uint32_t_uint48__to_t_uint48_t_uint32_t_uint32_t_uint48__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(value0, 0xffffffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n        mstore(add(headStart, 64), and(value2, 0xffffffff))\n        mstore(add(headStart, 96), and(value3, 0xffffffffffff))\n    }\n    function abi_decode_tuple_t_uint64t_uint64(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        value1 := abi_decode_uint64(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bytes32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n    }\n    function abi_encode_tuple_t_uint48__to_t_uint48__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffff))\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_address_payablet_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function validator_revert_bytes4(value)\n    {\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_bytes4(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_bytes4(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_uint64t_string_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_decode_tuple_t_uint64t_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        value1 := abi_decode_uint32(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let offset := calldataload(add(headStart, 64))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value2_1, value3_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_array_bytes4_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n    }\n    function abi_encode_bytes_to_bytes(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        mcopy(add(pos, 0x20), add(value, 0x20), length)\n        mstore(add(add(pos, length), 0x20), 0)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let tail_1 := add(headStart, 32)\n        mstore(headStart, 32)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let tail_2 := add(add(headStart, shl(5, length)), 64)\n        let srcPtr := add(value0, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, headStart), not(63)))\n            tail_2 := abi_encode_bytes_to_bytes(mload(srcPtr), tail_2)\n            srcPtr := add(srcPtr, 32)\n            pos := add(pos, 32)\n        }\n        tail := tail_2\n    }\n    function abi_encode_tuple_t_contract$_IEntryPoint_$909__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let offset := calldataload(add(headStart, 64))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value2_1, value3_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\n    }\n    function abi_decode_tuple_t_addresst_addresst_bytes4(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_bytes4(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_bool_t_uint32__to_t_bool_t_uint32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, iszero(iszero(value0)))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n    }\n    function abi_decode_tuple_t_addresst_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := abi_decode_uint32(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_bytes_calldata_ptrt_uint48(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        let value_1 := calldataload(add(headStart, 64))\n        if iszero(eq(value_1, and(value_1, 0xffffffffffff))) { revert(0, 0) }\n        value3 := value_1\n    }\n    function abi_encode_tuple_t_bytes32_t_uint32__to_t_bytes32_t_uint32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_bytes4(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, shl(224, 0xffffffff)))\n    }\n    function abi_encode_tuple_t_address_payable_t_uint256__to_t_address_payable_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_string_calldata(start, length, pos) -> end\n    {\n        mstore(pos, length)\n        calldatacopy(add(pos, 0x20), start, length)\n        mstore(add(add(pos, length), 0x20), 0)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_string_calldata_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string_calldata(value0, value1, add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bytes4(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_address_t_bytes_calldata_ptr__to_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), 96)\n        tail := abi_encode_string_calldata(value2, value3, add(headStart, 96))\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n    {\n        if gt(startIndex, endIndex) { revert(0, 0) }\n        if gt(endIndex, length) { revert(0, 0) }\n        offsetOut := add(offset, startIndex)\n        lengthOut := sub(endIndex, startIndex)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function access_calldata_tail_t_bytes_calldata_ptr(base_ref, ptr_to_tail) -> addr, length\n    {\n        let rel_offset_of_tail := calldataload(ptr_to_tail)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(30)))) { revert(0, 0) }\n        let addr_1 := add(base_ref, rel_offset_of_tail)\n        length := calldataload(addr_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        addr := add(addr_1, 0x20)\n        if sgt(addr, sub(calldatasize(), length)) { revert(0, 0) }\n    }\n    function abi_encode_bytes(value, pos) -> end\n    {\n        let length := mload(value)\n        mcopy(pos, add(value, 0x20), length)\n        let _1 := add(pos, length)\n        mstore(_1, 0)\n        end := _1\n    }\n    function abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value2, value1, value0) -> end\n    {\n        calldatacopy(pos, value0, value1)\n        let _1 := add(pos, value1)\n        mstore(_1, 0)\n        end := abi_encode_bytes(value2, _1)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint192__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(192, 1), 1)))\n    }\n    function abi_encode_tuple_t_address_t_address_t_address_t_bytes4__to_t_address_t_address_t_address_t_bytes4__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 96), and(value3, shl(224, 0xffffffff)))\n    }\n    function checked_add_t_uint48(x, y) -> sum\n    {\n        sum := add(and(x, 0xffffffffffff), and(y, 0xffffffffffff))\n        if gt(sum, 0xffffffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_uint48_t_address_t_address_t_bytes_calldata_ptr__to_t_uint48_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, 0xffffffffffff))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 96), 128)\n        tail := abi_encode_string_calldata(value3, value4, add(headStart, 128))\n    }\n    function abi_encode_tuple_t_address_t_uint64__to_t_address_t_uint64__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, shl(224, 0xffffffff)))\n    }\n    function abi_encode_tuple_t_stringliteral_f684c2c0c9ec797849b62669189fe025e9077c00ba7812987ce38c0071ad7a50__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"account: not from EntryPoint\")\n        tail := add(headStart, 96)\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, shl(224, 0xffffffff))\n        if lt(len, 4)\n        {\n            value := and(and(_1, shl(shl(3, sub(4, len)), shl(224, 0xffffffff))), shl(224, 0xffffffff))\n        }\n    }\n    function abi_decode_tuple_t_address_payable(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos) -> end\n    { end := pos }\n    function abi_encode_tuple_t_address_t_bytes4__to_t_address_t_bytes4__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, shl(224, 0xffffffff)))\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        end := abi_encode_bytes(value0, pos)\n    }\n    function abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffff))\n        mstore(add(headStart, 64), iszero(iszero(value2)))\n    }\n    function abi_encode_tuple_t_uint32_t_uint48__to_t_uint32_t_uint48__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffff))\n    }\n    function abi_decode_tuple_t_address_payablet_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let offset := calldataload(add(headStart, 64))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(length, 0x1f), not(31)), 63), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, length)\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        calldatacopy(add(memPtr, 32), add(_1, 32), length)\n        mstore(add(add(memPtr, length), 32), 0)\n        value2 := memPtr\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffff), and(y, 0xffffffff))\n        if gt(diff, 0xffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), value1)\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_stringliteral_95abc635681816f3b423f999d8035c1cc722b70e3d801f56cd1748a4f5810fa2__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 21)\n        mstore(add(headStart, 64), \"toBytes32_outOfBounds\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_address_t_address_t_bytes_memory_ptr__to_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), 96)\n        tail := abi_encode_bytes_to_bytes(value2, add(headStart, 96))\n    }\n    function abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n}","id":41,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"9070":[{"length":32,"start":1630},{"length":32,"start":2887},{"length":32,"start":3099},{"length":32,"start":4142},{"length":32,"start":4291},{"length":32,"start":5591}]},"linkReferences":{},"object":"60806040526004361061022b575f3560e01c80636d5115bd11610129578063b7009613116100a8578063d1f856ee1161006d578063d1f856ee1461073e578063d22b59891461075d578063d6bb62c61461077c578063f801a6981461079b578063fe0776f5146107d4575f5ffd5b8063b7009613146106a7578063b7d2b162146106e2578063c399ec8814610701578063cc1b6c8114610715578063d087d2881461072a575f5ffd5b8063a64d95ce116100ee578063a64d95ce146105db578063abd9bd2a146105fa578063ac9650d814610619578063b0d691fe14610645578063b61d27f614610688575f5ffd5b80636d5115bd1461053c57806375b238fc1461055b578063853551b81461056e57806394c7d7ee1461058d578063a166aa89146105ac575f5ffd5b806330cae187116101b55780634a58db191161017a5780634a58db191461049c5780634c1da1e2146104a45780634d44560d146104c357806352962952146104e2578063530dd45614610501575f5ffd5b806330cae187146103e05780633adc277a146103ff5780633ca7c02a146104355780634136a33c1461044f5780634665096d14610487575f5ffd5b806318ff183c116101fb57806318ff183c1461030957806319822f7c146103285780631cff79cd1461035557806325c471a0146103685780633078f11414610387575f5ffd5b806308d6122d146102365780630b0a93ba1461025757806312be8727146102b6578063167bd395146102ea575f5ffd5b3661023257005b5f5ffd5b348015610241575f5ffd5b50610255610250366004612afa565b6107f3565b005b348015610262575f5ffd5b50610299610271366004612b5c565b6001600160401b039081165f9081526001602081905260409091200154600160401b90041690565b6040516001600160401b0390911681526020015b60405180910390f35b3480156102c1575f5ffd5b506102d56102d0366004612b5c565b610845565b60405163ffffffff90911681526020016102ad565b3480156102f5575f5ffd5b50610255610304366004612b75565b61087f565b348015610314575f5ffd5b50610255610323366004612bb0565b610895565b348015610333575f5ffd5b50610347610342366004612bdc565b6108f8565b6040519081526020016102ad565b6102d5610363366004612c67565b61091d565b348015610373575f5ffd5b50610255610382366004612cca565b610a47565b348015610392575f5ffd5b506103a66103a1366004612d0c565b610a69565b6040516102ad949392919065ffffffffffff948516815263ffffffff93841660208201529190921660408201529116606082015260800190565b3480156103eb575f5ffd5b506102556103fa366004612d26565b610b02565b34801561040a575f5ffd5b5061041e610419366004612d57565b610b14565b60405165ffffffffffff90911681526020016102ad565b348015610440575f5ffd5b506102996001600160401b0381565b34801561045a575f5ffd5b506102d5610469366004612d57565b5f90815260026020526040902054600160301b900463ffffffff1690565b348015610492575f5ffd5b5062093a806102d5565b610255610b45565b3480156104af575f5ffd5b506102d56104be366004612d6e565b610bba565b3480156104ce575f5ffd5b506102556104dd366004612d89565b610be7565b3480156104ed575f5ffd5b506102556104fc366004612d26565b610c4a565b34801561050c575f5ffd5b5061029961051b366004612b5c565b6001600160401b039081165f90815260016020819052604090912001541690565b348015610547575f5ffd5b50610299610556366004612dc8565b610c5c565b348015610566575f5ffd5b506102995f81565b348015610579575f5ffd5b50610255610588366004612df4565b610c96565b348015610598575f5ffd5b506102556105a7366004612c67565b610d2d565b3480156105b7575f5ffd5b506105cb6105c6366004612d6e565b610dd7565b60405190151581526020016102ad565b3480156105e6575f5ffd5b506102556105f5366004612e0f565b610dfe565b348015610605575f5ffd5b50610347610614366004612e37565b610e10565b348015610624575f5ffd5b50610638610633366004612e97565b610e49565b6040516102ad9190612f03565b348015610650575f5ffd5b506040516001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681526020016102ad565b348015610693575f5ffd5b506102556106a2366004612f66565b610f2e565b3480156106b2575f5ffd5b506106c66106c1366004612fa5565b610f77565b60408051921515835263ffffffff9091166020830152016102ad565b3480156106ed575f5ffd5b506102556106fc366004612d0c565b610ff8565b34801561070c575f5ffd5b5061034761100f565b348015610720575f5ffd5b50620697806102d5565b348015610735575f5ffd5b5061034761109d565b348015610749575f5ffd5b506106c6610758366004612d0c565b6110f2565b348015610768575f5ffd5b50610255610777366004612fed565b611176565b348015610787575f5ffd5b506102d5610796366004612e37565b611188565b3480156107a6575f5ffd5b506107ba6107b5366004613009565b6112db565b6040805192835263ffffffff9091166020830152016102ad565b3480156107df575f5ffd5b506102556107ee366004612d0c565b61141c565b6107fb611445565b5f5b8281101561083e576108368585858481811061081b5761081b613076565b9050602002016020810190610830919061308a565b846114bc565b6001016107fd565b5050505050565b6001600160401b0381165f9081526001602081905260408220015461087990600160801b90046001600160701b031661153d565b92915050565b610887611445565b610891828261155b565b5050565b61089d611445565b604051637a9e5e4b60e01b81526001600160a01b038281166004830152831690637a9e5e4b906024015b5f604051808303815f87803b1580156108de575f5ffd5b505af11580156108f0573d5f5f3e3d5ffd5b505050505050565b5f6109016115cc565b61090b8484611646565b9050610916826117e1565b9392505050565b5f33818061092d8388888861182a565b9150915081158015610943575063ffffffff8116155b15610996578287610954888861187b565b6040516381c6f24b60e01b81526001600160a01b0393841660048201529290911660248301526001600160e01b03191660448201526064015b60405180910390fd5b5f6109a384898989610e10565b90505f63ffffffff83161515806109c957506109be82610b14565b65ffffffffffff1615155b156109da576109d782611892565b90505b6003546109f08a6109eb8b8b61187b565b611990565b600381905550610a378a8a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152503492506119d2915050565b5060035598975050505050505050565b610a4f611445565b610a638383610a5d86610845565b84611a72565b50505050565b6001600160401b0382165f9081526001602090815260408083206001600160a01b03851684529091528120805465ffffffffffff1691908190819060ff825c1615610ad5578054610ac990600160301b90046001600160701b0316611cb8565b91955093509150610af8565b8054610af090600160301b90046001600160701b0316611cd9565b919550935091505b5092959194509250565b610b0a611445565b6108918282611ced565b5f8181526002602052604081205465ffffffffffff16610b3381611d90565b610b3d5780610916565b5f9392505050565b7f000000000000000000000000000000000000000000000000000000000000000060405163b760faf960e01b81523060048201526001600160a01b03919091169063b760faf99034906024015f604051808303818588803b158015610ba8575f5ffd5b505af115801561083e573d5f5f3e3d5ffd5b6001600160a01b0381165f90815260208190526040812060010154610879906001600160701b031661153d565b610bf4335f366001611dbe565b5060405163040b850f60e31b81526001600160a01b038381166004830152602482018390527f0000000000000000000000000000000000000000000000000000000000000000169063205c2878906044016108c7565b610c52611445565b6108918282611e75565b6001600160a01b0382165f908152602081815260408083206001600160e01b0319851684529091529020546001600160401b031692915050565b610c9e611445565b6001600160401b0383161580610cbc57506001600160401b03838116145b15610ce55760405163061c6a4360e21b81526001600160401b038416600482015260240161098d565b826001600160401b03167f1256f5b5ecb89caec12db449738f2fbcd1ba5806cf38f35413f4e5c15bf6a4508383604051610d209291906130cd565b60405180910390a2505050565b60408051638fb3603760e01b80825291513392918391638fb36037916004808201926020929091908290030181865afa158015610d6c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d9091906130e0565b6001600160e01b03191614610dc357604051630641fee960e31b81526001600160a01b038216600482015260240161098d565b61083e610dd285838686610e10565b611892565b6001600160a01b03165f90815260208190526040902060010154600160701b900460ff1690565b610e06611445565b6108918282611f26565b5f84848484604051602001610e2894939291906130fb565b6040516020818303038152906040528051906020012090505b949350505050565b604080515f815260208101909152606090826001600160401b03811115610e7257610e72613175565b604051908082528060200260200182016040528015610ea557816020015b6060815260200190600190039081610e905790505b5091505f5b83811015610f2657610f0130868684818110610ec857610ec8613076565b9050602002810190610eda9190613189565b85604051602001610eed939291906131e2565b604051602081830303815290604052612035565b838281518110610f1357610f13613076565b6020908102919091010152600101610eaa565b505092915050565b610f366115cc565b61083e8483838080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152508892506119d2915050565b5f5f610f8284610dd7565b15610f9157505f905080610ff0565b306001600160a01b03861603610fb557610fab84846120a7565b5f91509150610ff0565b5f610fc08585610c5c565b90505f5f610fce83896110f2565b9150915081610fde575f5f610fe8565b63ffffffff811615815b945094505050505b935093915050565b611000611445565b61100a82826120bd565b505050565b6040516370a0823160e01b81523060048201525f906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a08231906024015b602060405180830381865afa158015611074573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061109891906131f7565b905090565b604051631aab3f0d60e11b81523060048201525f60248201819052906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906335567e1a90604401611059565b5f8067fffffffffffffffe196001600160401b038516016111185750600190505f61116f565b5f5f6111248686610a69565b5050915091508165ffffffffffff165f14158015611164575060ff5f5c168061116457506111506121a6565b65ffffffffffff168265ffffffffffff1611155b9350915061116f9050565b9250929050565b61117e611445565b61089182826121b0565b5f3381611195858561187b565b90505f6111a488888888610e10565b5f8181526002602052604081205491925065ffffffffffff90911690036111e15760405163060a299b60e41b81526004810182905260240161098d565b826001600160a01b0316886001600160a01b03161461127a575f6112055f856110f2565b5090505f61121f6112196102718b87610c5c565b866110f2565b5090508115801561122e575080155b1561127757604051630ff89d4760e21b81526001600160a01b038087166004830152808c1660248301528a1660448201526001600160e01b03198516606482015260840161098d565b50505b5f81815260026020526040808220805465ffffffffffff1916908190559051600160301b90910463ffffffff1691829184917fbd9ac67a6e2f6463b80927326310338bcbb4bdb7936ce1365ea3e01067e7b9f791a398975050505050505050565b5f8033816112eb8289898961182a565b9150505f8163ffffffff166112fe6121a6565b611308919061320e565b905063ffffffff8216158061133e57505f8665ffffffffffff1611801561133e57508065ffffffffffff168665ffffffffffff16105b1561134f5782896109548a8a61187b565b6113698665ffffffffffff168265ffffffffffff1661226b565b9550611377838a8a8a610e10565b94506113828561227a565b5f8581526002602052604090819020805465ffffffffffff891669ffffffffffffffffffff19821617600160301b9182900463ffffffff90811660010190811692830291909117909255915190955086907f82a2da5dee54ea8021c6545b4444620291e07ee83be6dd57edb175062715f3b490611408908a9088908f908f908f9061322c565b60405180910390a350505094509492505050565b6001600160a01b038116331461100057604051635f159e6360e01b815260040160405180910390fd5b335f806114538382366122c6565b915091508161100a578063ffffffff165f036114ad575f6114748136612389565b5060405163f07e038f60e01b81526001600160a01b03871660048201526001600160401b0382166024820152909250604401905061098d565b610a63610dd284305f36610e10565b6001600160a01b0383165f818152602081815260408083206001600160e01b0319871680855290835292819020805467ffffffffffffffff19166001600160401b038716908117909155905192835292917f9ea6790c7dadfd01c9f8b9762b3682607af2c7e79e05a9f9fdf5580dde949151910160405180910390a3505050565b5f5f611551836001600160701b0316611cd9565b5090949350505050565b6001600160a01b0382165f81815260208190526040908190206001018054841515600160701b0260ff60701b19909116179055517f90d4e7bb7e5d933792b3562e1741306f8be94837e1348dacef9b6f1df56eb138906115c090841515815260200190565b60405180910390a25050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146116445760405162461bcd60e51b815260206004820152601c60248201527f6163636f756e743a206e6f742066726f6d20456e747279506f696e7400000000604482015260640161098d565b565b5f600160ff19825c168117825d505f6116626060850185613189565b611670916004915f9161314e565b61167991613271565b90506001600160e01b03198116635b0e93fb60e11b146116b85760405163d4d202fb60e01b81526001600160e01b03198216600482015260240161098d565b5f6116c66060860186613189565b6116d59160249160049161314e565b8101906116e29190612d6e565b9050306001600160a01b0382160361170d57604051637e6c446560e11b815260040160405180910390fd5b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c859052603c8120906117878261174e6101008a018a613189565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061256f92505050565b90506117a08161179a60608a018a613189565b5f611dbe565b6117b15760019450505050506117ce565b6117c7816117c260608a018a613189565b61258d565b9450505050505b5f60ff19815c16815d5092915050565b50565b80156117de576040515f9033905f1990849084818181858888f193505050503d805f811461083e576040519150601f19603f3d011682016040523d82523d5f602084013e61083e565b5f80306001600160a01b03861603611850576118478685856122c6565b91509150611872565b6004831061186c5761186786866106c1878761187b565b611847565b505f9050805b94509492505050565b5f611889600482848661314e565b61091691613271565b5f8181526002602052604081205465ffffffffffff811690600160301b900463ffffffff168183036118da5760405163060a299b60e41b81526004810185905260240161098d565b6118e26121a6565b65ffffffffffff168265ffffffffffff16111561191557604051630c65b5bd60e11b81526004810185905260240161098d565b61191e82611d90565b1561193f57604051631e2975b960e21b81526004810185905260240161098d565b5f84815260026020526040808220805465ffffffffffff191690555163ffffffff83169186917f76a2a46953689d4861a5d3f6ed883ad7e6af674a21f8e162707159fc9dde614d9190a39392505050565b604080516001600160a01b03939093166020808501919091526001600160e01b0319929092168382015280518084038201815260609093019052815191012090565b6060814710156119fe5760405163cf47918160e01b81524760048201526024810183905260440161098d565b5f5f856001600160a01b03168486604051611a1991906132a9565b5f6040518083038185875af1925050503d805f8114611a53576040519150601f19603f3d011682016040523d82523d5f602084013e611a58565b606091505b5091509150611a68868383612625565b9695505050505050565b5f67fffffffffffffffe196001600160401b03861601611ab05760405163061c6a4360e21b81526001600160401b038616600482015260240161098d565b6001600160401b0385165f9081526001602090815260408083206001600160a01b038816845290915281205465ffffffffffff1615908115611ba0578463ffffffff16611afb6121a6565b611b05919061320e565b905060405180604001604052808265ffffffffffff168152602001611b338663ffffffff1663ffffffff1690565b6001600160701b039081169091526001600160401b0389165f9081526001602090815260408083206001600160a01b038c1684528252909120835181549490920151909216600160301b026001600160a01b031990931665ffffffffffff90911617919091179055611c4a565b6001600160401b0387165f9081526001602090815260408083206001600160a01b038a168452909152812054611be991600160301b9091046001600160701b0316908690612681565b6001600160401b0389165f9081526001602090815260408083206001600160a01b038c168452909152902080546001600160701b03909316600160301b0273ffffffffffffffffffffffffffff000000000000199093169290921790915590505b6040805163ffffffff8616815265ffffffffffff831660208201528315158183015290516001600160a01b038816916001600160401b038a16917ff98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf9181900360600190a35095945050505050565b5f5f5f611ccc84611cc7612727565b612736565b9250925092509193909250565b5f5f5f611ccc84611ce86121a6565b612788565b6001600160401b0382161580611d0b57506001600160401b03828116145b15611d345760405163061c6a4360e21b81526001600160401b038316600482015260240161098d565b6001600160401b038281165f818152600160208190526040808320909101805467ffffffffffffffff19169486169485179055517f1fd6dd7631312dfac2205b52913f99de03b4d7e381d5d27d3dbfe0713e6e63409190a35050565b5f611d996121a6565b65ffffffffffff16611dae62093a808461320e565b65ffffffffffff16111592915050565b5f8080611ddc8730611dd36004858a8c61314e565b6106c191613271565b9150915081611e685763ffffffff811615611e0a576040516399ec076b60e01b815260040160405180910390fd5b8315611e5e5786611e2b30611e2260045f8a8c61314e565b61055691613271565b60405163f07e038f60e01b81526001600160a01b0390921660048301526001600160401b0316602482015260440161098d565b5f92505050610e41565b5060019695505050505050565b6001600160401b0382161580611e9357506001600160401b03828116145b15611ebc5760405163061c6a4360e21b81526001600160401b038316600482015260240161098d565b6001600160401b038281165f81815260016020819052604080832090910180546fffffffffffffffff00000000000000001916600160401b958716958602179055517f7a8059630b897b5de4c08ade69f8b90c3ead1f8596d62d10b6c4d14a0afb4ae29190a35050565b67fffffffffffffffe196001600160401b03831601611f635760405163061c6a4360e21b81526001600160401b038316600482015260240161098d565b6001600160401b0382165f90815260016020819052604082200154611f9c90600160801b90046001600160701b03168362069780612681565b6001600160401b0385165f818152600160208190526040918290200180546001600160701b03909516600160801b026dffffffffffffffffffffffffffff60801b199095169490941790935591519092507ffeb69018ee8b8fd50ea86348f1267d07673379f72cffdeccec63853ee8ce8b4890610d20908590859063ffffffff92909216825265ffffffffffff16602082015260400190565b60605f5f846001600160a01b03168460405161205191906132a9565b5f60405180830381855af49150503d805f8114612089576040519150601f19603f3d011682016040523d82523d5f602084013e61208e565b606091505b509150915061209e858383612625565b95945050505050565b5f6120b28383611990565b600354149392505050565b5f67fffffffffffffffe196001600160401b038416016120fb5760405163061c6a4360e21b81526001600160401b038416600482015260240161098d565b6001600160401b0383165f9081526001602090815260408083206001600160a01b038616845290915281205465ffffffffffff16900361213c57505f610879565b6001600160401b0383165f8181526001602090815260408083206001600160a01b038716808552925280832080546001600160a01b0319169055519092917ff229baa593af28c41b1d16b748cd7688f0c83aaf92d4be41c44005defe84c16691a350600192915050565b5f611098426127d4565b6001600160a01b0382165f908152602081905260408120600101546121e2906001600160701b03168362069780612681565b6001600160a01b0385165f818152602081815260409182902060010180546dffffffffffffffffffffffffffff19166001600160701b039690961695909517909455805163ffffffff8716815265ffffffffffff841694810194909452919350917fa56b76017453f399ec2327ba00375dbfb1fd070ff854341ad6191e6a2e2de19c9101610d20565b5f828218828411028218610916565b5f8181526002602052604090205465ffffffffffff1680158015906122a557506122a381611d90565b155b156108915760405163813e945960e01b81526004810183905260240161098d565b5f8060048310156122db57505f905080610ff0565b306001600160a01b038616036122fe57610fab306122f9868661187b565b6120a7565b5f5f5f61230b8787612389565b92509250925082158015612323575061232330610dd7565b15612336575f5f94509450505050610ff0565b5f5f612342848b6110f2565b915091508161235b575f5f965096505050505050610ff0565b6123718363ffffffff168263ffffffff1661226b565b63ffffffff8116159b909a5098505050505050505050565b5f808060048410156123a257505f915081905080612568565b5f6123ad868661187b565b90506001600160e01b031981166310a6aa3760e31b14806123de57506001600160e01b031981166330cae18760e01b145b806123f957506001600160e01b0319811663294b14a960e11b145b8061241457506001600160e01b03198116635326cae760e11b145b8061242f57506001600160e01b0319811663d22b598960e01b145b156124445760015f5f93509350935050612568565b6001600160e01b0319811663063fc60f60e21b148061247357506001600160e01b0319811663167bd39560e01b145b8061248e57506001600160e01b031981166308d6122d60e01b145b156124cd575f6124a260246004888a61314e565b8101906124af9190612d6e565b90505f6124bb82610bba565b600196505f9550935061256892505050565b6001600160e01b0319811663012e238d60e51b14806124fc57506001600160e01b03198116635be958b160e11b145b15612554575f61251060246004888a61314e565b81019061251d9190612b5c565b90506001612546826001600160401b039081165f90815260016020819052604090912001541690565b5f9450945094505050612568565b5f61255f3083610c5c565b5f935093509350505b9250925092565b5f5f5f5f61257d868661280a565b9250925092506115518282612850565b5f80808460048561259e828261313b565b926125ab9392919061314e565b8101906125b891906132b4565b92505091505f5f6125d788856106c15f8761290890919063ffffffff16565b9150915081806125eb575063ffffffff8116155b1561260957816125fc5760016125fe565b5f5b945050505050610916565b612617610dd2898686612965565b505f98975050505050505050565b60608261263a576126358261299a565b610916565b815115801561265157506001600160a01b0384163b155b1561267a57604051639996b31560e01b81526001600160a01b038516600482015260240161098d565b5080610916565b5f5f5f612696866001600160701b031661153d565b90505f6126d18563ffffffff168763ffffffff168463ffffffff16116126bc575f6126c6565b6126c6888561337f565b63ffffffff1661226b565b90508063ffffffff166126e26121a6565b6126ec919061320e565b925063ffffffff8616602083901b67ffffffff0000000016604085901b6dffffffffffff000000000000000016171793505050935093915050565b5f6110986407915ecc006127d4565b5f808069ffffffffffffffffffff602086901c166001600160701b03861665ffffffffffff604088901c811690871681111561277457828282612778565b815f5f5b9550955095505050509250925092565b69ffffffffffffffffffff602083901c166001600160701b03831665ffffffffffff604085901c81169084168111156127c3578282826127c7565b815f5f5b9250925092509250925092565b5f65ffffffffffff821115612806576040516306dfcc6560e41b8152603060048201526024810183905260440161098d565b5090565b5f5f5f8351604103612841576020840151604085015160608601515f1a612833888285856129c3565b955095509550505050612568565b505081515f9150600290612568565b5f8260038111156128635761286361339b565b0361286c575050565b60018260038111156128805761288061339b565b0361289e5760405163f645eedf60e01b815260040160405180910390fd5b60028260038111156128b2576128b261339b565b036128d35760405163fce698f760e01b81526004810182905260240161098d565b60038260038111156128e7576128e761339b565b03610891576040516335e2f38360e21b81526004810182905260240161098d565b5f6129148260206133af565b8351101561295c5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161098d565b50016020015190565b5f83838360405160200161297b939291906133c2565b6040516020818303038152906040528051906020012090509392505050565b8051156129aa5780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411156129fc57505f91506003905082612a81565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015612a4d573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b038116612a7857505f925060019150829050612a81565b92505f91508190505b9450945094915050565b6001600160a01b03811681146117de575f5ffd5b5f5f83601f840112612aaf575f5ffd5b5081356001600160401b03811115612ac5575f5ffd5b6020830191508360208260051b850101111561116f575f5ffd5b80356001600160401b0381168114612af5575f5ffd5b919050565b5f5f5f5f60608587031215612b0d575f5ffd5b8435612b1881612a8b565b935060208501356001600160401b03811115612b32575f5ffd5b612b3e87828801612a9f565b9094509250612b51905060408601612adf565b905092959194509250565b5f60208284031215612b6c575f5ffd5b61091682612adf565b5f5f60408385031215612b86575f5ffd5b8235612b9181612a8b565b915060208301358015158114612ba5575f5ffd5b809150509250929050565b5f5f60408385031215612bc1575f5ffd5b8235612bcc81612a8b565b91506020830135612ba581612a8b565b5f5f5f60608486031215612bee575f5ffd5b83356001600160401b03811115612c03575f5ffd5b84016101208187031215612c15575f5ffd5b95602085013595506040909401359392505050565b5f5f83601f840112612c3a575f5ffd5b5081356001600160401b03811115612c50575f5ffd5b60208301915083602082850101111561116f575f5ffd5b5f5f5f60408486031215612c79575f5ffd5b8335612c8481612a8b565b925060208401356001600160401b03811115612c9e575f5ffd5b612caa86828701612c2a565b9497909650939450505050565b803563ffffffff81168114612af5575f5ffd5b5f5f5f60608486031215612cdc575f5ffd5b612ce584612adf565b92506020840135612cf581612a8b565b9150612d0360408501612cb7565b90509250925092565b5f5f60408385031215612d1d575f5ffd5b612bcc83612adf565b5f5f60408385031215612d37575f5ffd5b612d4083612adf565b9150612d4e60208401612adf565b90509250929050565b5f60208284031215612d67575f5ffd5b5035919050565b5f60208284031215612d7e575f5ffd5b813561091681612a8b565b5f5f60408385031215612d9a575f5ffd5b8235612da581612a8b565b946020939093013593505050565b6001600160e01b0319811681146117de575f5ffd5b5f5f60408385031215612dd9575f5ffd5b8235612de481612a8b565b91506020830135612ba581612db3565b5f5f5f60408486031215612e06575f5ffd5b612c8484612adf565b5f5f60408385031215612e20575f5ffd5b612e2983612adf565b9150612d4e60208401612cb7565b5f5f5f5f60608587031215612e4a575f5ffd5b8435612e5581612a8b565b93506020850135612e6581612a8b565b925060408501356001600160401b03811115612e7f575f5ffd5b612e8b87828801612c2a565b95989497509550505050565b5f5f60208385031215612ea8575f5ffd5b82356001600160401b03811115612ebd575f5ffd5b612ec985828601612a9f565b90969095509350505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b82811015612f5a57603f19878603018452612f45858351612ed5565b94506020938401939190910190600101612f29565b50929695505050505050565b5f5f5f5f60608587031215612f79575f5ffd5b8435612f8481612a8b565b93506020850135925060408501356001600160401b03811115612e7f575f5ffd5b5f5f5f60608486031215612fb7575f5ffd5b8335612fc281612a8b565b92506020840135612fd281612a8b565b91506040840135612fe281612db3565b809150509250925092565b5f5f60408385031215612ffe575f5ffd5b8235612e2981612a8b565b5f5f5f5f6060858703121561301c575f5ffd5b843561302781612a8b565b935060208501356001600160401b03811115613041575f5ffd5b61304d87828801612c2a565b909450925050604085013565ffffffffffff8116811461306b575f5ffd5b939692955090935050565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561309a575f5ffd5b813561091681612db3565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b602081525f610e416020830184866130a5565b5f602082840312156130f0575f5ffd5b815161091681612db3565b6001600160a01b038581168252841660208201526060604082018190525f90611a6890830184866130a5565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561087957610879613127565b5f5f8585111561315c575f5ffd5b83861115613168575f5ffd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f5f8335601e1984360301811261319e575f5ffd5b8301803591506001600160401b038211156131b7575f5ffd5b60200191503681900382131561116f575f5ffd5b5f81518060208401855e5f93019283525090919050565b828482375f8382015f8152611a6881856131cb565b5f60208284031215613207575f5ffd5b5051919050565b65ffffffffffff818116838216019081111561087957610879613127565b65ffffffffffff861681526001600160a01b038581166020830152841660408201526080606082018190525f9061326690830184866130a5565b979650505050505050565b80356001600160e01b031981169060048410156132a2576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f61091682846131cb565b5f5f5f606084860312156132c6575f5ffd5b83356132d181612a8b565b92506020840135915060408401356001600160401b038111156132f2575f5ffd5b8401601f81018613613302575f5ffd5b80356001600160401b0381111561331b5761331b613175565b604051601f8201601f19908116603f011681016001600160401b038111828210171561334957613349613175565b604052818152828201602001881015613360575f5ffd5b816020840160208301375f602083830101528093505050509250925092565b63ffffffff828116828216039081111561087957610879613127565b634e487b7160e01b5f52602160045260245ffd5b8082018082111561087957610879613127565b6001600160a01b038481168252831660208201526060604082018190525f9061209e90830184612ed556fea26469706673582212204e46117ea74d6d931977b673cd42be94114ea41528e2312d13dc2fa8bdd094be64736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x22B JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6D5115BD GT PUSH2 0x129 JUMPI DUP1 PUSH4 0xB7009613 GT PUSH2 0xA8 JUMPI DUP1 PUSH4 0xD1F856EE GT PUSH2 0x6D JUMPI DUP1 PUSH4 0xD1F856EE EQ PUSH2 0x73E JUMPI DUP1 PUSH4 0xD22B5989 EQ PUSH2 0x75D JUMPI DUP1 PUSH4 0xD6BB62C6 EQ PUSH2 0x77C JUMPI DUP1 PUSH4 0xF801A698 EQ PUSH2 0x79B JUMPI DUP1 PUSH4 0xFE0776F5 EQ PUSH2 0x7D4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB7009613 EQ PUSH2 0x6A7 JUMPI DUP1 PUSH4 0xB7D2B162 EQ PUSH2 0x6E2 JUMPI DUP1 PUSH4 0xC399EC88 EQ PUSH2 0x701 JUMPI DUP1 PUSH4 0xCC1B6C81 EQ PUSH2 0x715 JUMPI DUP1 PUSH4 0xD087D288 EQ PUSH2 0x72A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA64D95CE GT PUSH2 0xEE JUMPI DUP1 PUSH4 0xA64D95CE EQ PUSH2 0x5DB JUMPI DUP1 PUSH4 0xABD9BD2A EQ PUSH2 0x5FA JUMPI DUP1 PUSH4 0xAC9650D8 EQ PUSH2 0x619 JUMPI DUP1 PUSH4 0xB0D691FE EQ PUSH2 0x645 JUMPI DUP1 PUSH4 0xB61D27F6 EQ PUSH2 0x688 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6D5115BD EQ PUSH2 0x53C JUMPI DUP1 PUSH4 0x75B238FC EQ PUSH2 0x55B JUMPI DUP1 PUSH4 0x853551B8 EQ PUSH2 0x56E JUMPI DUP1 PUSH4 0x94C7D7EE EQ PUSH2 0x58D JUMPI DUP1 PUSH4 0xA166AA89 EQ PUSH2 0x5AC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x30CAE187 GT PUSH2 0x1B5 JUMPI DUP1 PUSH4 0x4A58DB19 GT PUSH2 0x17A JUMPI DUP1 PUSH4 0x4A58DB19 EQ PUSH2 0x49C JUMPI DUP1 PUSH4 0x4C1DA1E2 EQ PUSH2 0x4A4 JUMPI DUP1 PUSH4 0x4D44560D EQ PUSH2 0x4C3 JUMPI DUP1 PUSH4 0x52962952 EQ PUSH2 0x4E2 JUMPI DUP1 PUSH4 0x530DD456 EQ PUSH2 0x501 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x30CAE187 EQ PUSH2 0x3E0 JUMPI DUP1 PUSH4 0x3ADC277A EQ PUSH2 0x3FF JUMPI DUP1 PUSH4 0x3CA7C02A EQ PUSH2 0x435 JUMPI DUP1 PUSH4 0x4136A33C EQ PUSH2 0x44F JUMPI DUP1 PUSH4 0x4665096D EQ PUSH2 0x487 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18FF183C GT PUSH2 0x1FB JUMPI DUP1 PUSH4 0x18FF183C EQ PUSH2 0x309 JUMPI DUP1 PUSH4 0x19822F7C EQ PUSH2 0x328 JUMPI DUP1 PUSH4 0x1CFF79CD EQ PUSH2 0x355 JUMPI DUP1 PUSH4 0x25C471A0 EQ PUSH2 0x368 JUMPI DUP1 PUSH4 0x3078F114 EQ PUSH2 0x387 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8D6122D EQ PUSH2 0x236 JUMPI DUP1 PUSH4 0xB0A93BA EQ PUSH2 0x257 JUMPI DUP1 PUSH4 0x12BE8727 EQ PUSH2 0x2B6 JUMPI DUP1 PUSH4 0x167BD395 EQ PUSH2 0x2EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST CALLDATASIZE PUSH2 0x232 JUMPI STOP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x241 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x250 CALLDATASIZE PUSH1 0x4 PUSH2 0x2AFA JUMP JUMPDEST PUSH2 0x7F3 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x262 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x299 PUSH2 0x271 CALLDATASIZE PUSH1 0x4 PUSH2 0x2B5C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2D5 PUSH2 0x2D0 CALLDATASIZE PUSH1 0x4 PUSH2 0x2B5C JUMP JUMPDEST PUSH2 0x845 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2F5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x304 CALLDATASIZE PUSH1 0x4 PUSH2 0x2B75 JUMP JUMPDEST PUSH2 0x87F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x314 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x323 CALLDATASIZE PUSH1 0x4 PUSH2 0x2BB0 JUMP JUMPDEST PUSH2 0x895 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x333 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x347 PUSH2 0x342 CALLDATASIZE PUSH1 0x4 PUSH2 0x2BDC JUMP JUMPDEST PUSH2 0x8F8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AD JUMP JUMPDEST PUSH2 0x2D5 PUSH2 0x363 CALLDATASIZE PUSH1 0x4 PUSH2 0x2C67 JUMP JUMPDEST PUSH2 0x91D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x373 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x382 CALLDATASIZE PUSH1 0x4 PUSH2 0x2CCA JUMP JUMPDEST PUSH2 0xA47 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x392 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3A6 PUSH2 0x3A1 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D0C JUMP JUMPDEST PUSH2 0xA69 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2AD SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH6 0xFFFFFFFFFFFF SWAP5 DUP6 AND DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP4 DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x40 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3EB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x3FA CALLDATASIZE PUSH1 0x4 PUSH2 0x2D26 JUMP JUMPDEST PUSH2 0xB02 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x40A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x41E PUSH2 0x419 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D57 JUMP JUMPDEST PUSH2 0xB14 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x440 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x299 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x45A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2D5 PUSH2 0x469 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D57 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x492 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x93A80 PUSH2 0x2D5 JUMP JUMPDEST PUSH2 0x255 PUSH2 0xB45 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2D5 PUSH2 0x4BE CALLDATASIZE PUSH1 0x4 PUSH2 0x2D6E JUMP JUMPDEST PUSH2 0xBBA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x4DD CALLDATASIZE PUSH1 0x4 PUSH2 0x2D89 JUMP JUMPDEST PUSH2 0xBE7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x4FC CALLDATASIZE PUSH1 0x4 PUSH2 0x2D26 JUMP JUMPDEST PUSH2 0xC4A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x299 PUSH2 0x51B CALLDATASIZE PUSH1 0x4 PUSH2 0x2B5C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x547 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x299 PUSH2 0x556 CALLDATASIZE PUSH1 0x4 PUSH2 0x2DC8 JUMP JUMPDEST PUSH2 0xC5C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x566 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x299 PUSH0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x579 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x588 CALLDATASIZE PUSH1 0x4 PUSH2 0x2DF4 JUMP JUMPDEST PUSH2 0xC96 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x598 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x5A7 CALLDATASIZE PUSH1 0x4 PUSH2 0x2C67 JUMP JUMPDEST PUSH2 0xD2D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5CB PUSH2 0x5C6 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D6E JUMP JUMPDEST PUSH2 0xDD7 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5E6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x5F5 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E0F JUMP JUMPDEST PUSH2 0xDFE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x605 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x347 PUSH2 0x614 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E37 JUMP JUMPDEST PUSH2 0xE10 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x624 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x638 PUSH2 0x633 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E97 JUMP JUMPDEST PUSH2 0xE49 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2AD SWAP2 SWAP1 PUSH2 0x2F03 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x650 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x693 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x6A2 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F66 JUMP JUMPDEST PUSH2 0xF2E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x6C6 PUSH2 0x6C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x2FA5 JUMP JUMPDEST PUSH2 0xF77 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 ISZERO ISZERO DUP4 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x2AD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x6FC CALLDATASIZE PUSH1 0x4 PUSH2 0x2D0C JUMP JUMPDEST PUSH2 0xFF8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x70C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x347 PUSH2 0x100F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x720 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x69780 PUSH2 0x2D5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x735 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x347 PUSH2 0x109D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x749 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x6C6 PUSH2 0x758 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D0C JUMP JUMPDEST PUSH2 0x10F2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x768 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x777 CALLDATASIZE PUSH1 0x4 PUSH2 0x2FED JUMP JUMPDEST PUSH2 0x1176 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x787 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2D5 PUSH2 0x796 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E37 JUMP JUMPDEST PUSH2 0x1188 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7A6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7BA PUSH2 0x7B5 CALLDATASIZE PUSH1 0x4 PUSH2 0x3009 JUMP JUMPDEST PUSH2 0x12DB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x2AD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7DF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x255 PUSH2 0x7EE CALLDATASIZE PUSH1 0x4 PUSH2 0x2D0C JUMP JUMPDEST PUSH2 0x141C JUMP JUMPDEST PUSH2 0x7FB PUSH2 0x1445 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x83E JUMPI PUSH2 0x836 DUP6 DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x81B JUMPI PUSH2 0x81B PUSH2 0x3076 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x830 SWAP2 SWAP1 PUSH2 0x308A JUMP JUMPDEST DUP5 PUSH2 0x14BC JUMP JUMPDEST PUSH1 0x1 ADD PUSH2 0x7FD JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 KECCAK256 ADD SLOAD PUSH2 0x879 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x153D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x887 PUSH2 0x1445 JUMP JUMPDEST PUSH2 0x891 DUP3 DUP3 PUSH2 0x155B JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x89D PUSH2 0x1445 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x7A9E5E4B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x7A9E5E4B SWAP1 PUSH1 0x24 ADD JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x8DE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x8F0 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x901 PUSH2 0x15CC JUMP JUMPDEST PUSH2 0x90B DUP5 DUP5 PUSH2 0x1646 JUMP JUMPDEST SWAP1 POP PUSH2 0x916 DUP3 PUSH2 0x17E1 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 CALLER DUP2 DUP1 PUSH2 0x92D DUP4 DUP9 DUP9 DUP9 PUSH2 0x182A JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x943 JUMPI POP PUSH4 0xFFFFFFFF DUP2 AND ISZERO JUMPDEST ISZERO PUSH2 0x996 JUMPI DUP3 DUP8 PUSH2 0x954 DUP9 DUP9 PUSH2 0x187B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x81C6F24B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x9A3 DUP5 DUP10 DUP10 DUP10 PUSH2 0xE10 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH4 0xFFFFFFFF DUP4 AND ISZERO ISZERO DUP1 PUSH2 0x9C9 JUMPI POP PUSH2 0x9BE DUP3 PUSH2 0xB14 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x9DA JUMPI PUSH2 0x9D7 DUP3 PUSH2 0x1892 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x9F0 DUP11 PUSH2 0x9EB DUP12 DUP12 PUSH2 0x187B JUMP JUMPDEST PUSH2 0x1990 JUMP JUMPDEST PUSH1 0x3 DUP2 SWAP1 SSTORE POP PUSH2 0xA37 DUP11 DUP11 DUP11 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP CALLVALUE SWAP3 POP PUSH2 0x19D2 SWAP2 POP POP JUMP JUMPDEST POP PUSH1 0x3 SSTORE SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0xA4F PUSH2 0x1445 JUMP JUMPDEST PUSH2 0xA63 DUP4 DUP4 PUSH2 0xA5D DUP7 PUSH2 0x845 JUMP JUMPDEST DUP5 PUSH2 0x1A72 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP2 SWAP1 DUP2 SWAP1 DUP2 SWAP1 PUSH1 0xFF DUP3 TLOAD AND ISZERO PUSH2 0xAD5 JUMPI DUP1 SLOAD PUSH2 0xAC9 SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x1CB8 JUMP JUMPDEST SWAP2 SWAP6 POP SWAP4 POP SWAP2 POP PUSH2 0xAF8 JUMP JUMPDEST DUP1 SLOAD PUSH2 0xAF0 SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x1CD9 JUMP JUMPDEST SWAP2 SWAP6 POP SWAP4 POP SWAP2 POP JUMPDEST POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH2 0xB0A PUSH2 0x1445 JUMP JUMPDEST PUSH2 0x891 DUP3 DUP3 PUSH2 0x1CED JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH2 0xB33 DUP2 PUSH2 0x1D90 JUMP JUMPDEST PUSH2 0xB3D JUMPI DUP1 PUSH2 0x916 JUMP JUMPDEST PUSH0 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0xB760FAF9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xB760FAF9 SWAP1 CALLVALUE SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBA8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x83E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x879 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x153D JUMP JUMPDEST PUSH2 0xBF4 CALLER PUSH0 CALLDATASIZE PUSH1 0x1 PUSH2 0x1DBE JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x40B850F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP4 SWAP1 MSTORE PUSH32 0x0 AND SWAP1 PUSH4 0x205C2878 SWAP1 PUSH1 0x44 ADD PUSH2 0x8C7 JUMP JUMPDEST PUSH2 0xC52 PUSH2 0x1445 JUMP JUMPDEST PUSH2 0x891 DUP3 DUP3 PUSH2 0x1E75 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC9E PUSH2 0x1445 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ISZERO DUP1 PUSH2 0xCBC JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0xCE5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH32 0x1256F5B5ECB89CAEC12DB449738F2FBCD1BA5806CF38F35413F4E5C15BF6A450 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0xD20 SWAP3 SWAP2 SWAP1 PUSH2 0x30CD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0x8FB36037 PUSH1 0xE0 SHL DUP1 DUP3 MSTORE SWAP2 MLOAD CALLER SWAP3 SWAP2 DUP4 SWAP2 PUSH4 0x8FB36037 SWAP2 PUSH1 0x4 DUP1 DUP3 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP1 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD6C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD90 SWAP2 SWAP1 PUSH2 0x30E0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND EQ PUSH2 0xDC3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x641FEE9 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH2 0x83E PUSH2 0xDD2 DUP6 DUP4 DUP7 DUP7 PUSH2 0xE10 JUMP JUMPDEST PUSH2 0x1892 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x70 SHL SWAP1 DIV PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0xE06 PUSH2 0x1445 JUMP JUMPDEST PUSH2 0x891 DUP3 DUP3 PUSH2 0x1F26 JUMP JUMPDEST PUSH0 DUP5 DUP5 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xE28 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x30FB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 SWAP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xE72 JUMPI PUSH2 0xE72 PUSH2 0x3175 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xEA5 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xE90 JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xF26 JUMPI PUSH2 0xF01 ADDRESS DUP7 DUP7 DUP5 DUP2 DUP2 LT PUSH2 0xEC8 JUMPI PUSH2 0xEC8 PUSH2 0x3076 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xEDA SWAP2 SWAP1 PUSH2 0x3189 JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xEED SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x31E2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x2035 JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xF13 JUMPI PUSH2 0xF13 PUSH2 0x3076 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0xEAA JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xF36 PUSH2 0x15CC JUMP JUMPDEST PUSH2 0x83E DUP5 DUP4 DUP4 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP DUP9 SWAP3 POP PUSH2 0x19D2 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xF82 DUP5 PUSH2 0xDD7 JUMP JUMPDEST ISZERO PUSH2 0xF91 JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xFF0 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0xFB5 JUMPI PUSH2 0xFAB DUP5 DUP5 PUSH2 0x20A7 JUMP JUMPDEST PUSH0 SWAP2 POP SWAP2 POP PUSH2 0xFF0 JUMP JUMPDEST PUSH0 PUSH2 0xFC0 DUP6 DUP6 PUSH2 0xC5C JUMP JUMPDEST SWAP1 POP PUSH0 PUSH0 PUSH2 0xFCE DUP4 DUP10 PUSH2 0x10F2 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xFDE JUMPI PUSH0 PUSH0 PUSH2 0xFE8 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO DUP2 JUMPDEST SWAP5 POP SWAP5 POP POP POP POP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1000 PUSH2 0x1445 JUMP JUMPDEST PUSH2 0x100A DUP3 DUP3 PUSH2 0x20BD JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1074 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1098 SWAP2 SWAP1 PUSH2 0x31F7 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1AAB3F0D PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x35567E1A SWAP1 PUSH1 0x44 ADD PUSH2 0x1059 JUMP JUMPDEST PUSH0 DUP1 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND ADD PUSH2 0x1118 JUMPI POP PUSH1 0x1 SWAP1 POP PUSH0 PUSH2 0x116F JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1124 DUP7 DUP7 PUSH2 0xA69 JUMP JUMPDEST POP POP SWAP2 POP SWAP2 POP DUP2 PUSH6 0xFFFFFFFFFFFF AND PUSH0 EQ ISZERO DUP1 ISZERO PUSH2 0x1164 JUMPI POP PUSH1 0xFF PUSH0 TLOAD AND DUP1 PUSH2 0x1164 JUMPI POP PUSH2 0x1150 PUSH2 0x21A6 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO JUMPDEST SWAP4 POP SWAP2 POP PUSH2 0x116F SWAP1 POP JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x117E PUSH2 0x1445 JUMP JUMPDEST PUSH2 0x891 DUP3 DUP3 PUSH2 0x21B0 JUMP JUMPDEST PUSH0 CALLER DUP2 PUSH2 0x1195 DUP6 DUP6 PUSH2 0x187B JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x11A4 DUP9 DUP9 DUP9 DUP9 PUSH2 0xE10 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP2 SWAP3 POP PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 SUB PUSH2 0x11E1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x60A299B PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x127A JUMPI PUSH0 PUSH2 0x1205 PUSH0 DUP6 PUSH2 0x10F2 JUMP JUMPDEST POP SWAP1 POP PUSH0 PUSH2 0x121F PUSH2 0x1219 PUSH2 0x271 DUP12 DUP8 PUSH2 0xC5C JUMP JUMPDEST DUP7 PUSH2 0x10F2 JUMP JUMPDEST POP SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x122E JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x1277 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFF89D47 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND PUSH1 0x4 DUP4 ADD MSTORE DUP1 DUP13 AND PUSH1 0x24 DUP4 ADD MSTORE DUP11 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP6 AND PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x98D JUMP JUMPDEST POP POP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND SWAP1 DUP2 SWAP1 SSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP2 DUP3 SWAP2 DUP5 SWAP2 PUSH32 0xBD9AC67A6E2F6463B80927326310338BCBB4BDB7936CE1365EA3E01067E7B9F7 SWAP2 LOG3 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 CALLER DUP2 PUSH2 0x12EB DUP3 DUP10 DUP10 DUP10 PUSH2 0x182A JUMP JUMPDEST SWAP2 POP POP PUSH0 DUP2 PUSH4 0xFFFFFFFF AND PUSH2 0x12FE PUSH2 0x21A6 JUMP JUMPDEST PUSH2 0x1308 SWAP2 SWAP1 PUSH2 0x320E JUMP JUMPDEST SWAP1 POP PUSH4 0xFFFFFFFF DUP3 AND ISZERO DUP1 PUSH2 0x133E JUMPI POP PUSH0 DUP7 PUSH6 0xFFFFFFFFFFFF AND GT DUP1 ISZERO PUSH2 0x133E JUMPI POP DUP1 PUSH6 0xFFFFFFFFFFFF AND DUP7 PUSH6 0xFFFFFFFFFFFF AND LT JUMPDEST ISZERO PUSH2 0x134F JUMPI DUP3 DUP10 PUSH2 0x954 DUP11 DUP11 PUSH2 0x187B JUMP JUMPDEST PUSH2 0x1369 DUP7 PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x226B JUMP JUMPDEST SWAP6 POP PUSH2 0x1377 DUP4 DUP11 DUP11 DUP11 PUSH2 0xE10 JUMP JUMPDEST SWAP5 POP PUSH2 0x1382 DUP6 PUSH2 0x227A JUMP JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF DUP10 AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF NOT DUP3 AND OR PUSH1 0x1 PUSH1 0x30 SHL SWAP2 DUP3 SWAP1 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH1 0x1 ADD SWAP1 DUP2 AND SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD SWAP1 SWAP6 POP DUP7 SWAP1 PUSH32 0x82A2DA5DEE54EA8021C6545B4444620291E07EE83BE6DD57EDB175062715F3B4 SWAP1 PUSH2 0x1408 SWAP1 DUP11 SWAP1 DUP9 SWAP1 DUP16 SWAP1 DUP16 SWAP1 DUP16 SWAP1 PUSH2 0x322C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ PUSH2 0x1000 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5F159E63 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH0 DUP1 PUSH2 0x1453 DUP4 DUP3 CALLDATASIZE PUSH2 0x22C6 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x100A JUMPI DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x14AD JUMPI PUSH0 PUSH2 0x1474 DUP2 CALLDATASIZE PUSH2 0x2389 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0xF07E038F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE SWAP1 SWAP3 POP PUSH1 0x44 ADD SWAP1 POP PUSH2 0x98D JUMP JUMPDEST PUSH2 0xA63 PUSH2 0xDD2 DUP5 ADDRESS PUSH0 CALLDATASIZE PUSH2 0xE10 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP3 DUP4 MSTORE SWAP3 SWAP2 PUSH32 0x9EA6790C7DADFD01C9F8B9762B3682607AF2C7E79E05A9F9FDF5580DDE949151 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1551 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x1CD9 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x1 ADD DUP1 SLOAD DUP5 ISZERO ISZERO PUSH1 0x1 PUSH1 0x70 SHL MUL PUSH1 0xFF PUSH1 0x70 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE MLOAD PUSH32 0x90D4E7BB7E5D933792B3562E1741306F8BE94837E1348DACEF9B6F1DF56EB138 SWAP1 PUSH2 0x15C0 SWAP1 DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x1644 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6163636F756E743A206E6F742066726F6D20456E747279506F696E7400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x98D JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF NOT DUP3 TLOAD AND DUP2 OR DUP3 TSTORE POP PUSH0 PUSH2 0x1662 PUSH1 0x60 DUP6 ADD DUP6 PUSH2 0x3189 JUMP JUMPDEST PUSH2 0x1670 SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x314E JUMP JUMPDEST PUSH2 0x1679 SWAP2 PUSH2 0x3271 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5B0E93FB PUSH1 0xE1 SHL EQ PUSH2 0x16B8 JUMPI PUSH1 0x40 MLOAD PUSH4 0xD4D202FB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH0 PUSH2 0x16C6 PUSH1 0x60 DUP7 ADD DUP7 PUSH2 0x3189 JUMP JUMPDEST PUSH2 0x16D5 SWAP2 PUSH1 0x24 SWAP2 PUSH1 0x4 SWAP2 PUSH2 0x314E JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x16E2 SWAP2 SWAP1 PUSH2 0x2D6E JUMP JUMPDEST SWAP1 POP ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SUB PUSH2 0x170D JUMPI PUSH1 0x40 MLOAD PUSH4 0x7E6C4465 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x19457468657265756D205369676E6564204D6573736167653A0A333200000000 PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1C DUP6 SWAP1 MSTORE PUSH1 0x3C DUP2 KECCAK256 SWAP1 PUSH2 0x1787 DUP3 PUSH2 0x174E PUSH2 0x100 DUP11 ADD DUP11 PUSH2 0x3189 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x256F SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH2 0x17A0 DUP2 PUSH2 0x179A PUSH1 0x60 DUP11 ADD DUP11 PUSH2 0x3189 JUMP JUMPDEST PUSH0 PUSH2 0x1DBE JUMP JUMPDEST PUSH2 0x17B1 JUMPI PUSH1 0x1 SWAP5 POP POP POP POP POP PUSH2 0x17CE JUMP JUMPDEST PUSH2 0x17C7 DUP2 PUSH2 0x17C2 PUSH1 0x60 DUP11 ADD DUP11 PUSH2 0x3189 JUMP JUMPDEST PUSH2 0x258D JUMP JUMPDEST SWAP5 POP POP POP POP POP JUMPDEST PUSH0 PUSH1 0xFF NOT DUP2 TLOAD AND DUP2 TSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST POP JUMP JUMPDEST DUP1 ISZERO PUSH2 0x17DE JUMPI PUSH1 0x40 MLOAD PUSH0 SWAP1 CALLER SWAP1 PUSH0 NOT SWAP1 DUP5 SWAP1 DUP5 DUP2 DUP2 DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x83E JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x83E JUMP JUMPDEST PUSH0 DUP1 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x1850 JUMPI PUSH2 0x1847 DUP7 DUP6 DUP6 PUSH2 0x22C6 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x4 DUP4 LT PUSH2 0x186C JUMPI PUSH2 0x1867 DUP7 DUP7 PUSH2 0x6C1 DUP8 DUP8 PUSH2 0x187B JUMP JUMPDEST PUSH2 0x1847 JUMP JUMPDEST POP PUSH0 SWAP1 POP DUP1 JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1889 PUSH1 0x4 DUP3 DUP5 DUP7 PUSH2 0x314E JUMP JUMPDEST PUSH2 0x916 SWAP2 PUSH2 0x3271 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP2 DUP4 SUB PUSH2 0x18DA JUMPI PUSH1 0x40 MLOAD PUSH4 0x60A299B PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH2 0x18E2 PUSH2 0x21A6 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO PUSH2 0x1915 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC65B5BD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH2 0x191E DUP3 PUSH2 0x1D90 JUMP JUMPDEST ISZERO PUSH2 0x193F JUMPI PUSH1 0x40 MLOAD PUSH4 0x1E2975B9 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND SWAP1 SSTORE MLOAD PUSH4 0xFFFFFFFF DUP4 AND SWAP2 DUP7 SWAP2 PUSH32 0x76A2A46953689D4861A5D3F6ED883AD7E6AF674A21F8E162707159FC9DDE614D SWAP2 SWAP1 LOG3 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP3 SWAP1 SWAP3 AND DUP4 DUP3 ADD MSTORE DUP1 MLOAD DUP1 DUP5 SUB DUP3 ADD DUP2 MSTORE PUSH1 0x60 SWAP1 SWAP4 ADD SWAP1 MSTORE DUP2 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x19FE JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x98D JUMP JUMPDEST PUSH0 PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0x1A19 SWAP2 SWAP1 PUSH2 0x32A9 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1A53 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1A58 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1A68 DUP7 DUP4 DUP4 PUSH2 0x2625 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND ADD PUSH2 0x1AB0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND ISZERO SWAP1 DUP2 ISZERO PUSH2 0x1BA0 JUMPI DUP5 PUSH4 0xFFFFFFFF AND PUSH2 0x1AFB PUSH2 0x21A6 JUMP JUMPDEST PUSH2 0x1B05 SWAP2 SWAP1 PUSH2 0x320E JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH6 0xFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1B33 DUP7 PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 DUP2 AND SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE DUP3 MSTORE SWAP1 SWAP2 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP5 SWAP1 SWAP3 ADD MLOAD SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x1C4A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH2 0x1BE9 SWAP2 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 DUP7 SWAP1 PUSH2 0x2681 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000 NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE SWAP1 POP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP7 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE DUP4 ISZERO ISZERO DUP2 DUP4 ADD MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP11 AND SWAP2 PUSH32 0xF98448B987F1428E0E230E1F3C6E2CE15B5693EAF31827FBD0B1EC4B424AE7CF SWAP2 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG3 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1CCC DUP5 PUSH2 0x1CC7 PUSH2 0x2727 JUMP JUMPDEST PUSH2 0x2736 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1CCC DUP5 PUSH2 0x1CE8 PUSH2 0x21A6 JUMP JUMPDEST PUSH2 0x2788 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x1D0B JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1D34 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND SWAP5 DUP7 AND SWAP5 DUP6 OR SWAP1 SSTORE MLOAD PUSH32 0x1FD6DD7631312DFAC2205B52913F99DE03B4D7E381D5D27D3DBFE0713E6E6340 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1D99 PUSH2 0x21A6 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x1DAE PUSH3 0x93A80 DUP5 PUSH2 0x320E JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND GT ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0x1DDC DUP8 ADDRESS PUSH2 0x1DD3 PUSH1 0x4 DUP6 DUP11 DUP13 PUSH2 0x314E JUMP JUMPDEST PUSH2 0x6C1 SWAP2 PUSH2 0x3271 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x1E68 JUMPI PUSH4 0xFFFFFFFF DUP2 AND ISZERO PUSH2 0x1E0A JUMPI PUSH1 0x40 MLOAD PUSH4 0x99EC076B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP4 ISZERO PUSH2 0x1E5E JUMPI DUP7 PUSH2 0x1E2B ADDRESS PUSH2 0x1E22 PUSH1 0x4 PUSH0 DUP11 DUP13 PUSH2 0x314E JUMP JUMPDEST PUSH2 0x556 SWAP2 PUSH2 0x3271 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xF07E038F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x98D JUMP JUMPDEST PUSH0 SWAP3 POP POP POP PUSH2 0xE41 JUMP JUMPDEST POP PUSH1 0x1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x1E93 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1EBC JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH16 0xFFFFFFFFFFFFFFFF0000000000000000 NOT AND PUSH1 0x1 PUSH1 0x40 SHL SWAP6 DUP8 AND SWAP6 DUP7 MUL OR SWAP1 SSTORE MLOAD PUSH32 0x7A8059630B897B5DE4C08ADE69F8B90C3EAD1F8596D62D10B6C4D14A0AFB4AE2 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ADD PUSH2 0x1F63 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 KECCAK256 ADD SLOAD PUSH2 0x1F9C SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x2681 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x80 SHL NOT SWAP1 SWAP6 AND SWAP5 SWAP1 SWAP5 OR SWAP1 SWAP4 SSTORE SWAP2 MLOAD SWAP1 SWAP3 POP PUSH32 0xFEB69018EE8B8FD50EA86348F1267D07673379F72CFFDECCEC63853EE8CE8B48 SWAP1 PUSH2 0xD20 SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x2051 SWAP2 SWAP1 PUSH2 0x32A9 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x2089 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x208E JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x209E DUP6 DUP4 DUP4 PUSH2 0x2625 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x20B2 DUP4 DUP4 PUSH2 0x1990 JUMP JUMPDEST PUSH1 0x3 SLOAD EQ SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND ADD PUSH2 0x20FB JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP1 SUB PUSH2 0x213C JUMPI POP PUSH0 PUSH2 0x879 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE MLOAD SWAP1 SWAP3 SWAP2 PUSH32 0xF229BAA593AF28C41B1D16B748CD7688F0C83AAF92D4BE41C44005DEFE84C166 SWAP2 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1098 TIMESTAMP PUSH2 0x27D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x21E2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x2681 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x1 ADD DUP1 SLOAD PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP7 SWAP1 SWAP7 AND SWAP6 SWAP1 SWAP6 OR SWAP1 SWAP5 SSTORE DUP1 MLOAD PUSH4 0xFFFFFFFF DUP8 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP5 AND SWAP5 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE SWAP2 SWAP4 POP SWAP2 PUSH32 0xA56B76017453F399EC2327BA00375DBFB1FD070FF854341AD6191E6A2E2DE19C SWAP2 ADD PUSH2 0xD20 JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 GT MUL DUP3 XOR PUSH2 0x916 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x22A5 JUMPI POP PUSH2 0x22A3 DUP2 PUSH2 0x1D90 JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x891 JUMPI PUSH1 0x40 MLOAD PUSH4 0x813E9459 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x4 DUP4 LT ISZERO PUSH2 0x22DB JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xFF0 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x22FE JUMPI PUSH2 0xFAB ADDRESS PUSH2 0x22F9 DUP7 DUP7 PUSH2 0x187B JUMP JUMPDEST PUSH2 0x20A7 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x230B DUP8 DUP8 PUSH2 0x2389 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP DUP3 ISZERO DUP1 ISZERO PUSH2 0x2323 JUMPI POP PUSH2 0x2323 ADDRESS PUSH2 0xDD7 JUMP JUMPDEST ISZERO PUSH2 0x2336 JUMPI PUSH0 PUSH0 SWAP5 POP SWAP5 POP POP POP POP PUSH2 0xFF0 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2342 DUP5 DUP12 PUSH2 0x10F2 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x235B JUMPI PUSH0 PUSH0 SWAP7 POP SWAP7 POP POP POP POP POP POP PUSH2 0xFF0 JUMP JUMPDEST PUSH2 0x2371 DUP4 PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x226B JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO SWAP12 SWAP1 SWAP11 POP SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x23A2 JUMPI POP PUSH0 SWAP2 POP DUP2 SWAP1 POP DUP1 PUSH2 0x2568 JUMP JUMPDEST PUSH0 PUSH2 0x23AD DUP7 DUP7 PUSH2 0x187B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x10A6AA37 PUSH1 0xE3 SHL EQ DUP1 PUSH2 0x23DE JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x30CAE187 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x23F9 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x294B14A9 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x2414 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5326CAE7 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x242F JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xD22B5989 PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x2444 JUMPI PUSH1 0x1 PUSH0 PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP PUSH2 0x2568 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x63FC60F PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x2473 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x167BD395 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x248E JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x8D6122D PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x24CD JUMPI PUSH0 PUSH2 0x24A2 PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x314E JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x24AF SWAP2 SWAP1 PUSH2 0x2D6E JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x24BB DUP3 PUSH2 0xBBA JUMP JUMPDEST PUSH1 0x1 SWAP7 POP PUSH0 SWAP6 POP SWAP4 POP PUSH2 0x2568 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x12E238D PUSH1 0xE5 SHL EQ DUP1 PUSH2 0x24FC JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5BE958B1 PUSH1 0xE1 SHL EQ JUMPDEST ISZERO PUSH2 0x2554 JUMPI PUSH0 PUSH2 0x2510 PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x314E JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x251D SWAP2 SWAP1 PUSH2 0x2B5C JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH2 0x2546 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD AND SWAP1 JUMP JUMPDEST PUSH0 SWAP5 POP SWAP5 POP SWAP5 POP POP POP PUSH2 0x2568 JUMP JUMPDEST PUSH0 PUSH2 0x255F ADDRESS DUP4 PUSH2 0xC5C JUMP JUMPDEST PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x257D DUP7 DUP7 PUSH2 0x280A JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x1551 DUP3 DUP3 PUSH2 0x2850 JUMP JUMPDEST PUSH0 DUP1 DUP1 DUP5 PUSH1 0x4 DUP6 PUSH2 0x259E DUP3 DUP3 PUSH2 0x313B JUMP JUMPDEST SWAP3 PUSH2 0x25AB SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x314E JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x25B8 SWAP2 SWAP1 PUSH2 0x32B4 JUMP JUMPDEST SWAP3 POP POP SWAP2 POP PUSH0 PUSH0 PUSH2 0x25D7 DUP9 DUP6 PUSH2 0x6C1 PUSH0 DUP8 PUSH2 0x2908 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 DUP1 PUSH2 0x25EB JUMPI POP PUSH4 0xFFFFFFFF DUP2 AND ISZERO JUMPDEST ISZERO PUSH2 0x2609 JUMPI DUP2 PUSH2 0x25FC JUMPI PUSH1 0x1 PUSH2 0x25FE JUMP JUMPDEST PUSH0 JUMPDEST SWAP5 POP POP POP POP POP PUSH2 0x916 JUMP JUMPDEST PUSH2 0x2617 PUSH2 0xDD2 DUP10 DUP7 DUP7 PUSH2 0x2965 JUMP JUMPDEST POP PUSH0 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0x263A JUMPI PUSH2 0x2635 DUP3 PUSH2 0x299A JUMP JUMPDEST PUSH2 0x916 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0x2651 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x267A JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST POP DUP1 PUSH2 0x916 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x2696 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x153D JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x26D1 DUP6 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x26BC JUMPI PUSH0 PUSH2 0x26C6 JUMP JUMPDEST PUSH2 0x26C6 DUP9 DUP6 PUSH2 0x337F JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x226B JUMP JUMPDEST SWAP1 POP DUP1 PUSH4 0xFFFFFFFF AND PUSH2 0x26E2 PUSH2 0x21A6 JUMP JUMPDEST PUSH2 0x26EC SWAP2 SWAP1 PUSH2 0x320E JUMP JUMPDEST SWAP3 POP PUSH4 0xFFFFFFFF DUP7 AND PUSH1 0x20 DUP4 SWAP1 SHL PUSH8 0xFFFFFFFF00000000 AND PUSH1 0x40 DUP6 SWAP1 SHL PUSH14 0xFFFFFFFFFFFF0000000000000000 AND OR OR SWAP4 POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1098 PUSH5 0x7915ECC00 PUSH2 0x27D4 JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH10 0xFFFFFFFFFFFFFFFFFFFF PUSH1 0x20 DUP7 SWAP1 SHR AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP7 AND PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 DUP9 SWAP1 SHR DUP2 AND SWAP1 DUP8 AND DUP2 GT ISZERO PUSH2 0x2774 JUMPI DUP3 DUP3 DUP3 PUSH2 0x2778 JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH10 0xFFFFFFFFFFFFFFFFFFFF PUSH1 0x20 DUP4 SWAP1 SHR AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP4 AND PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 DUP6 SWAP1 SHR DUP2 AND SWAP1 DUP5 AND DUP2 GT ISZERO PUSH2 0x27C3 JUMPI DUP3 DUP3 DUP3 PUSH2 0x27C7 JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH6 0xFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2806 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x30 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x98D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x41 SUB PUSH2 0x2841 JUMPI PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH0 BYTE PUSH2 0x2833 DUP9 DUP3 DUP6 DUP6 PUSH2 0x29C3 JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP PUSH2 0x2568 JUMP JUMPDEST POP POP DUP2 MLOAD PUSH0 SWAP2 POP PUSH1 0x2 SWAP1 PUSH2 0x2568 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2863 JUMPI PUSH2 0x2863 PUSH2 0x339B JUMP JUMPDEST SUB PUSH2 0x286C JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2880 JUMPI PUSH2 0x2880 PUSH2 0x339B JUMP JUMPDEST SUB PUSH2 0x289E JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x28B2 JUMPI PUSH2 0x28B2 PUSH2 0x339B JUMP JUMPDEST SUB PUSH2 0x28D3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x28E7 JUMPI PUSH2 0x28E7 PUSH2 0x339B JUMP JUMPDEST SUB PUSH2 0x891 JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x98D JUMP JUMPDEST PUSH0 PUSH2 0x2914 DUP3 PUSH1 0x20 PUSH2 0x33AF JUMP JUMPDEST DUP4 MLOAD LT ISZERO PUSH2 0x295C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x746F427974657333325F6F75744F66426F756E6473 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x98D JUMP JUMPDEST POP ADD PUSH1 0x20 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH0 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x297B SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x33C2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 MLOAD ISZERO PUSH2 0x29AA JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0x29FC JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x2A81 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2A4D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x2A78 JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x2A81 JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x17DE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2AAF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2AC5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x116F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2AF5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2B0D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2B18 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2B32 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2B3E DUP8 DUP3 DUP9 ADD PUSH2 0x2A9F JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x2B51 SWAP1 POP PUSH1 0x40 DUP7 ADD PUSH2 0x2ADF JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2B6C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x916 DUP3 PUSH2 0x2ADF JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2B86 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2B91 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x2BA5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2BC1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2BCC DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2BA5 DUP2 PUSH2 0x2A8B JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2BEE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2C03 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH2 0x120 DUP2 DUP8 SUB SLT ISZERO PUSH2 0x2C15 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2C3A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2C50 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x116F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2C79 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x2C84 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2C9E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2CAA DUP7 DUP3 DUP8 ADD PUSH2 0x2C2A JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x2AF5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2CDC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2CE5 DUP5 PUSH2 0x2ADF JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x2CF5 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP2 POP PUSH2 0x2D03 PUSH1 0x40 DUP6 ADD PUSH2 0x2CB7 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D1D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2BCC DUP4 PUSH2 0x2ADF JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D37 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2D40 DUP4 PUSH2 0x2ADF JUMP JUMPDEST SWAP2 POP PUSH2 0x2D4E PUSH1 0x20 DUP5 ADD PUSH2 0x2ADF JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D67 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D7E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x916 DUP2 PUSH2 0x2A8B JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D9A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2DA5 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x17DE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2DD9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2DE4 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2BA5 DUP2 PUSH2 0x2DB3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2E06 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2C84 DUP5 PUSH2 0x2ADF JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2E20 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2E29 DUP4 PUSH2 0x2ADF JUMP JUMPDEST SWAP2 POP PUSH2 0x2D4E PUSH1 0x20 DUP5 ADD PUSH2 0x2CB7 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2E4A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2E55 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x2E65 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2E7F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2E8B DUP8 DUP3 DUP9 ADD PUSH2 0x2C2A JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2EA8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2EBD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2EC9 DUP6 DUP3 DUP7 ADD PUSH2 0x2A9F JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP1 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP7 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD PUSH1 0x20 DUP4 MSTORE DUP1 DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP6 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP7 ADD ADD SWAP3 POP PUSH1 0x20 DUP7 ADD PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x2F5A JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x2F45 DUP6 DUP4 MLOAD PUSH2 0x2ED5 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x2F29 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2F79 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2F84 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2E7F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2FB7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x2FC2 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x2FD2 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x2FE2 DUP2 PUSH2 0x2DB3 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2FFE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2E29 DUP2 PUSH2 0x2A8B JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x301C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x3027 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3041 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x304D DUP8 DUP3 DUP9 ADD PUSH2 0x2C2A JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x306B JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x309A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x916 DUP2 PUSH2 0x2DB3 JUMP JUMPDEST DUP2 DUP4 MSTORE DUP2 DUP2 PUSH1 0x20 DUP6 ADD CALLDATACOPY POP PUSH0 DUP3 DUP3 ADD PUSH1 0x20 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND SWAP1 SWAP2 ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0xE41 PUSH1 0x20 DUP4 ADD DUP5 DUP7 PUSH2 0x30A5 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x30F0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x916 DUP2 PUSH2 0x2DB3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x1A68 SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x30A5 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x879 JUMPI PUSH2 0x879 PUSH2 0x3127 JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x315C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x3168 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x319E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x31B7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x116F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 DUP2 MLOAD DUP1 PUSH1 0x20 DUP5 ADD DUP6 MCOPY PUSH0 SWAP4 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH0 DUP4 DUP3 ADD PUSH0 DUP2 MSTORE PUSH2 0x1A68 DUP2 DUP6 PUSH2 0x31CB JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3207 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x879 JUMPI PUSH2 0x879 PUSH2 0x3127 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP7 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE DUP5 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x3266 SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x30A5 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x32A2 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x916 DUP3 DUP5 PUSH2 0x31CB JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x32C6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x32D1 DUP2 PUSH2 0x2A8B JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x32F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x3302 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x331B JUMPI PUSH2 0x331B PUSH2 0x3175 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x3349 JUMPI PUSH2 0x3349 PUSH2 0x3175 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP3 DUP3 ADD PUSH1 0x20 ADD DUP9 LT ISZERO PUSH2 0x3360 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP4 POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x879 JUMPI PUSH2 0x879 PUSH2 0x3127 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x879 JUMPI PUSH2 0x879 PUSH2 0x3127 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND DUP3 MSTORE DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x209E SWAP1 DUP4 ADD DUP5 PUSH2 0x2ED5 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4E CHAINID GT PUSH31 0xA74D6D931977B673CD42BE94114EA41528E2312D13DC2FA8BDD094BE64736F PUSH13 0x634300081C0033000000000000 ","sourceMap":"823:4673:34:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15686:291:36;;;;;;;;;;-1:-1:-1;15686:291:36;;;;;:::i;:::-;;:::i;:::-;;8873:124;;;;;;;;;;-1:-1:-1;8873:124:36;;;;;:::i;:::-;-1:-1:-1;;;;;8967:14:36;;;8942:6;8967:14;;;:6;:14;;;;;;;;:23;;-1:-1:-1;;;8967:23:36;;;;8873:124;;;;-1:-1:-1;;;;;1695:31:41;;;1677:50;;1665:2;1650:18;8873:124:36;;;;;;;;9038:134;;;;;;;;;;-1:-1:-1;9038:134:36;;;;;:::i;:::-;;:::i;:::-;;;1912:10:41;1900:23;;;1882:42;;1870:2;1855:18;9038:134:36;1738:192:41;17155:133:36;;;;;;;;;;-1:-1:-1;17155:133:36;;;;;:::i;:::-;;:::i;24322:159::-;;;;;;;;;;-1:-1:-1;24322:159:36;;;;;:::i;:::-;;:::i;1139:385:0:-;;;;;;;;;;-1:-1:-1;1139:385:0;;;;;:::i;:::-;;:::i;:::-;;;3533:25:41;;;3521:2;3506:18;1139:385:0;3387:177:41;20269:1238:36;;;;;;:::i;:::-;;:::i;10735:191::-;;;;;;;;;;-1:-1:-1;10735:191:36;;;;;:::i;:::-;;:::i;9213:591::-;;;;;;;;;;-1:-1:-1;9213:591:36;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;5611:14:41;5599:27;;;5581:46;;5675:10;5663:23;;;5658:2;5643:18;;5636:51;5723:23;;;;5718:2;5703:18;;5696:51;5783:27;;5778:2;5763:18;;5756:55;5568:3;5553:19;;5358:459;11423:126:36;;;;;;;;;;-1:-1:-1;11423:126:36;;;;;:::i;:::-;;:::i;17783:184::-;;;;;;;;;;-1:-1:-1;17783:184:36;;;;;:::i;:::-;;:::i;:::-;;;6488:14:41;6476:27;;;6458:46;;6446:2;6431:18;17783:184:36;6314:196:41;5787:53:36;;;;;;;;;;;;-1:-1:-1;;;;;5787:53:36;;18008:111;;;;;;;;;;-1:-1:-1;18008:111:36;;;;;:::i;:::-;18067:6;18092:14;;;:10;:14;;;;;:20;-1:-1:-1;;;18092:20:36;;;;;18008:111;7905:90;;;;;;;;;;-1:-1:-1;7981:7:36;7905:90;;4117:103:34;;;:::i;8534:139:36:-;;;;;;;;;;-1:-1:-1;8534:139:36;;;;;:::i;:::-;;:::i;5301:193:34:-;;;;;;;;;;-1:-1:-1;5301:193:34;;;;;:::i;:::-;;:::i;11590:138:36:-;;;;;;;;;;-1:-1:-1;11590:138:36;;;;;:::i;:::-;;:::i;8714:118::-;;;;;;;;;;-1:-1:-1;8714:118:36;;;;;:::i;:::-;-1:-1:-1;;;;;8805:14:36;;;8780:6;8805:14;;;:6;:14;;;;;;;;:20;;;;8714:118;8329:164;;;;;;;;;;-1:-1:-1;8329:164:36;;;;;:::i;:::-;;:::i;5606:52::-;;;;;;;;;;;;5642:16;5606:52;;10438:256;;;;;;;;;;-1:-1:-1;10438:256:36;;;;;:::i;:::-;;:::i;22697:376::-;;;;;;;;;;-1:-1:-1;22697:376:36;;;;;:::i;:::-;;:::i;8166:122::-;;;;;;;;;;-1:-1:-1;8166:122:36;;;;;:::i;:::-;;:::i;:::-;;;8326:14:41;;8319:22;8301:41;;8289:2;8274:18;8166:122:36;8161:187:41;11769:134:36;;;;;;;;;;-1:-1:-1;11769:134:36;;;;;:::i;:::-;;:::i;23980:181::-;;;;;;;;;;-1:-1:-1;23980:181:36;;;;;:::i;:::-;;:::i;1208:484:22:-;;;;;;;;;;-1:-1:-1;1208:484:22;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1217:102:34:-;;;;;;;;;;-1:-1:-1;1217:102:34;;-1:-1:-1;;;;;1303:11:34;11216:32:41;11198:51;;11186:2;11171:18;1217:102:34;11033:222:41;1763:165:34;;;;;;;;;;-1:-1:-1;1763:165:34;;;;;:::i;:::-;;:::i;7062:802:36:-;;;;;;;;;;-1:-1:-1;7062:802:36;;;;;:::i;:::-;;:::i;:::-;;;;12652:14:41;;12645:22;12627:41;;12716:10;12704:23;;;12699:2;12684:18;;12677:51;12600:18;7062:802:36;12461:273:41;10967:127:36;;;;;;;;;;-1:-1:-1;10967:127:36;;;;;:::i;:::-;;:::i;3935:107:34:-;;;;;;;;;;;;;:::i;8036:89:36:-;;;;;;;;;;-1:-1:-1;8112:6:36;8036:89;;771:121:0;;;;;;;;;;;;;:::i;9845:433:36:-;;;;;;;;;;-1:-1:-1;9845:433:36;;;;;:::i;:::-;;:::i;16405:147::-;;;;;;;;;;-1:-1:-1;16405:147:36;;;;;:::i;:::-;;:::i;21548:1108::-;;;;;;;;;;-1:-1:-1;21548:1108:36;;;;;:::i;:::-;;:::i;18160:1373::-;;;;;;;;;;-1:-1:-1;18160:1373:36;;;;;:::i;:::-;;:::i;:::-;;;;13960:25:41;;;14033:10;14021:23;;;14016:2;14001:18;;13994:51;13933:18;18160:1373:36;13788:263:41;11135:247:36;;;;;;;;;;-1:-1:-1;11135:247:36;;;;;:::i;:::-;;:::i;15686:291::-;6477:18;:16;:18::i;:::-;15852:9:::1;15847:124;15867:20:::0;;::::1;15847:124;;;15908:52;15931:6;15939:9;;15949:1;15939:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;15953:6;15908:22;:52::i;:::-;15889:3;;15847:124;;;;15686:291:::0;;;;:::o;9038:134::-;-1:-1:-1;;;;;9134:14:36;;9109:6;9134:14;;;:6;:14;;;;;;;:25;;:31;;-1:-1:-1;;;9134:25:36;;-1:-1:-1;;;;;9134:25:36;:29;:31::i;:::-;9127:38;9038:134;-1:-1:-1;;9038:134:36:o;17155:133::-;6477:18;:16;:18::i;:::-;17249:32:::1;17266:6;17274;17249:16;:32::i;:::-;17155:133:::0;;:::o;24322:159::-;6477:18;:16;:18::i;:::-;24425:49:::1;::::0;-1:-1:-1;;;24425:49:36;;-1:-1:-1;;;;;11216:32:41;;;24425:49:36::1;::::0;::::1;11198:51:41::0;24425:35:36;::::1;::::0;::::1;::::0;11171:18:41;;24425:49:36::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24322:159:::0;;:::o;1139:385:0:-;1314:22;1348:24;:22;:24::i;:::-;1399:38;1418:6;1426:10;1399:18;:38::i;:::-;1382:55;;1485:32;1497:19;1485:11;:32::i;:::-;1139:385;;;;;:::o;20269:1238:36:-;20355:6;735:10:20;20355:6:36;;20528:38;735:10:20;20553:6:36;20561:4;;20528:16;:38::i;:::-;20493:73;;;;20627:9;20626:10;:26;;;;-1:-1:-1;20640:12:36;;;;20626:26;20622:131;;;20705:6;20713;20721:20;20736:4;;20721:14;:20::i;:::-;20675:67;;-1:-1:-1;;;20675:67:36;;-1:-1:-1;;;;;14864:32:41;;;20675:67:36;;;14846:51:41;14933:32;;;;14913:18;;;14906:60;-1:-1:-1;;;;;;15002:33:41;14982:18;;;14975:61;14819:18;;20675:67:36;;;;;;;;20622:131;20763:19;20785:35;20799:6;20807;20815:4;;20785:13;:35::i;:::-;20763:57;-1:-1:-1;20830:12:36;21022;;;;;;:45;;;21038:24;21050:11;21038;:24::i;:::-;:29;;;;21022:45;21018:116;;;21091:32;21111:11;21091:19;:32::i;:::-;21083:40;;21018:116;21226:12;;21263:46;21280:6;21288:20;21303:4;;21288:14;:20::i;:::-;21263:16;:46::i;:::-;21248:12;:61;;;;21344:54;21374:6;21382:4;;21344:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21388:9:36;;-1:-1:-1;21344:29:36;;-1:-1:-1;;21344:54:36:i;:::-;-1:-1:-1;21445:12:36;:32;21495:5;20269:1238;-1:-1:-1;;;;;;;;20269:1238:36:o;10735:191::-;6477:18;:16;:18::i;:::-;10849:70:::1;10860:6;10868:7;10877:25;10895:6;10877:17;:25::i;:::-;10904:14;10849:10;:70::i;:::-;;10735:191:::0;;;:::o;9213:591::-;-1:-1:-1;;;;;9420:14:36;;9315:12;9420:14;;;:6;:14;;;;;;;;-1:-1:-1;;;;;9420:31:36;;;;;;;;;9470:12;;;;;9315;;;;;9496:9;;;;9492:245;;;9619:12;;9560:74;;-1:-1:-1;;;9619:12:36;;-1:-1:-1;;;;;9619:12:36;9560:18;:74::i;:::-;9521:113;;-1:-1:-1;9521:113:36;-1:-1:-1;9521:113:36;-1:-1:-1;9492:245:36;;;9704:12;;:22;;-1:-1:-1;;;9704:12:36;;-1:-1:-1;;;;;9704:12:36;:20;:22::i;:::-;9665:61;;-1:-1:-1;9665:61:36;-1:-1:-1;9665:61:36;-1:-1:-1;9492:245:36;9747:50;9213:591;;;;;;;:::o;11423:126::-;6477:18;:16;:18::i;:::-;11514:28:::1;11528:6;11536:5;11514:13;:28::i;17783:184::-:0;17845:6;17882:14;;;:10;:14;;;;;:24;;;17923:21;17882:24;17923:10;:21::i;:::-;:37;;17951:9;17923:37;;;17947:1;17916:44;17783:184;-1:-1:-1;;;17783:184:36:o;4117:103:34:-;1303:11;4160:55;;-1:-1:-1;;;4160:55:34;;4209:4;4160:55;;;11198:51:41;-1:-1:-1;;;;;4160:22:34;;;;;;;4190:9;;11171:18:41;;4160:55:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8534:139:36;-1:-1:-1;;;;;8633:16:36;;8608:6;8633:16;;;;;;;;;;:27;;;:33;;-1:-1:-1;;;;;8633:27:36;:31;:33::i;5301:193:34:-;5390:45;735:10:20;809:14;;5430:4:34;5390:13;:45::i;:::-;-1:-1:-1;5441:48:34;;-1:-1:-1;;;5441:48:34;;-1:-1:-1;;;;;15255:32:41;;;5441:48:34;;;15237:51:41;15304:18;;;15297:34;;;1303:11:34;5441:23;;;;15210:18:41;;5441:48:34;15047:290:41;11590:138:36;6477:18;:16;:18::i;:::-;11687:34:::1;11704:6;11712:8;11687:16;:34::i;8329:164::-:0;-1:-1:-1;;;;;8447:16:36;;8422:6;8447:16;;;;;;;;;;;-1:-1:-1;;;;;;8447:39:36;;;;;;;;;;-1:-1:-1;;;;;8447:39:36;8329:164;;;;:::o;10438:256::-;6477:18;:16;:18::i;:::-;-1:-1:-1;;;;;10539:20:36;::::1;::::0;;:45:::1;;-1:-1:-1::0;;;;;;10563:21:36;;::::1;;10539:45;10535:114;;;10607:31;::::0;-1:-1:-1;;;10607:31:36;;-1:-1:-1;;;;;1695:31:41;;10607::36::1;::::0;::::1;1677:50:41::0;1650:18;;10607:31:36::1;1533:200:41::0;10535:114:36::1;10673:6;-1:-1:-1::0;;;;;10663:24:36::1;;10681:5;;10663:24;;;;;;;:::i;:::-;;;;;;;;10438:256:::0;;;:::o;22697:376::-;22830:47;;;-1:-1:-1;;;22830:47:36;;;;;735:10:20;;22881:46:36;735:10:20;;22881:46:36;;22830:47;;;;;;;;;;;;;;;735:10:20;22830:47:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22830:97:36;;22826:175;;22950:40;;-1:-1:-1;;;22950:40:36;;-1:-1:-1;;;;;11216:32:41;;22950:40:36;;;11198:51:41;11171:18;;22950:40:36;11033:222:41;22826:175:36;23010:56;23030:35;23044:6;23052;23060:4;;23030:13;:35::i;:::-;23010:19;:56::i;8166:122::-;-1:-1:-1;;;;;8258:16:36;8235:4;8258:16;;;;;;;;;;:23;;;-1:-1:-1;;;8258:23:36;;;;;8166:122::o;11769:134::-;6477:18;:16;:18::i;:::-;11864:32:::1;11879:6;11887:8;11864:14;:32::i;23980:181::-:0;24085:7;24132:6;24140;24148:4;;24121:32;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24111:43;;;;;;24104:50;;23980:181;;;;;;;:::o;1208:484:22:-;1374:12;;;1310:20;1374:12;;;;;;;;1276:22;;1485:4;-1:-1:-1;;;;;1473:24:22;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1463:34:22;-1:-1:-1;1512:9:22;1507:155;1527:15;;;1507:155;;;1576:75;1613:4;1633;;1638:1;1633:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;1642;1620:30;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1576:28;:75::i;:::-;1563:7;1571:1;1563:10;;;;;;;;:::i;:::-;;;;;;;;;;:88;1544:3;;1507:155;;;;1671:14;1208:484;;;;:::o;1763:165:34:-;1845:24;:22;:24::i;:::-;1875:48;1905:4;1911;;1875:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1917:5:34;;-1:-1:-1;1875:29:34;;-1:-1:-1;;1875:48:34:i;7062:802:36:-;7187:14;7203:12;7231:22;7246:6;7231:14;:22::i;:::-;7227:631;;;-1:-1:-1;7277:5:36;;-1:-1:-1;7277:5:36;7269:17;;7227:631;7325:4;-1:-1:-1;;;;;7307:23:36;;;7303:555;;7573:30;7586:6;7594:8;7573:12;:30::i;:::-;7605:1;7565:42;;;;;;7303:555;7638:13;7654:39;7676:6;7684:8;7654:21;:39::i;:::-;7638:55;;7708:13;7723:19;7746:23;7754:6;7762;7746:7;:23::i;:::-;7707:62;;;;7790:8;:57;;7838:5;7845:1;7790:57;;;7802:17;;;;:12;7790:57;7783:64;;;;;;;7303:555;7062:802;;;;;;:::o;10967:127::-;6477:18;:16;:18::i;:::-;11059:28:::1;11071:6;11079:7;11059:11;:28::i;:::-;;10967:127:::0;;:::o;3935:107:34:-;4000:37;;-1:-1:-1;;;4000:37:34;;4031:4;4000:37;;;11198:51:41;3978:7:34;;-1:-1:-1;;;;;1303:11:34;4000:22;;;;11171:18:41;;4000:37:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3993:44;;3935:107;:::o;771:121:0:-;846:39;;-1:-1:-1;;;846:39:0;;876:4;846:39;;;18758:51:41;820:7:0;18825:18:41;;;18818:60;;;820:7:0;-1:-1:-1;;;;;1303:11:34;846:21:0;;;;18731:18:41;;846:39:0;18576:308:41;9845:433:36;9945:13;;-1:-1:-1;;;;;;;9997:21:36;;;9993:279;;-1:-1:-1;10042:4:36;;-1:-1:-1;10048:1:36;10034:16;;9993:279;10082:19;10103;10130:26;10140:6;10148:7;10130:9;:26::i;:::-;10081:75;;;;;;10178:12;:17;;10194:1;10178:17;;:68;;;;-1:-1:-1;10200:9:36;;;;;:45;;;10229:16;:14;:16::i;:::-;10213:32;;:12;:32;;;;10200:45;10170:91;-1:-1:-1;10248:12:36;-1:-1:-1;10170:91:36;;-1:-1:-1;10170:91:36;9993:279;9845:433;;;;;:::o;16405:147::-;6477:18;:16;:18::i;:::-;16507:38:::1;16528:6;16536:8;16507:20;:38::i;21548:1108::-:0;21641:6;735:10:20;21641:6:36;21719:20;21734:4;;21719:14;:20::i;:::-;21701:38;;21750:19;21772:35;21786:6;21794;21802:4;;21772:13;:35::i;:::-;21821:23;;;;:10;:23;;;;;:33;21750:57;;-1:-1:-1;21821:33:36;;;;:38;;21817:614;;21882:38;;-1:-1:-1;;;21882:38:36;;;;;3533:25:41;;;3506:18;;21882:38:36;3387:177:41;21817:614:36;21951:9;-1:-1:-1;;;;;21941:19:36;:6;-1:-1:-1;;;;;21941:19:36;;21937:494;;22110:12;22128:30;5642:16;22148:9;22128:7;:30::i;:::-;22109:49;;;22173:15;22194:76;22202:56;22218:39;22240:6;22248:8;22218:21;:39::i;22202:56::-;22260:9;22194:7;:76::i;:::-;22172:98;;;22289:7;22288:8;:23;;;;;22301:10;22300:11;22288:23;22284:137;;;22338:68;;-1:-1:-1;;;22338:68:36;;-1:-1:-1;;;;;19136:32:41;;;22338:68:36;;;19118:51:41;19205:32;;;19185:18;;;19178:60;19274:32;;19254:18;;;19247:60;-1:-1:-1;;;;;;19343:33:41;;19323:18;;;19316:61;19090:19;;22338:68:36;18889:494:41;22284:137:36;21962:469;;21937:494;22448:23;;;;:10;:23;;;;;;22441:40;;-1:-1:-1;;22441:40:36;;;;;22589:37;;-1:-1:-1;;;22545:29:36;;;;;;;;22448:23;;22589:37;;;22644:5;21548:1108;-1:-1:-1;;;;;;;;21548:1108:36:o;18160:1373::-;18282:19;;735:10:20;18282:19:36;18468:38;735:10:20;18493:6:36;18501:4;;18468:16;:38::i;:::-;18447:59;;;18517:14;18553:7;18534:26;;:16;:14;:16::i;:::-;:26;;;;:::i;:::-;18517:43;-1:-1:-1;18667:12:36;;;;;:44;;;18691:1;18684:4;:8;;;:26;;;;;18703:7;18696:14;;:4;:14;;;18684:26;18663:149;;;18764:6;18772;18780:20;18795:4;;18780:14;:20::i;18663:149::-;18884:23;18893:4;18884:23;;18899:7;18884:23;;:8;:23::i;:::-;18870:38;;19028:35;19042:6;19050;19058:4;;19028:13;:35::i;:::-;19014:49;;19074:31;19093:11;19074:18;:31::i;:::-;19227:23;;;;:10;:23;;;;;;;:29;;19280:40;;;-1:-1:-1;;19330:37:36;;;-1:-1:-1;;;19227:29:36;;;;;;;;19259:1;19227:33;19330:37;;;;;;;;;;;;;19382:66;;19227:33;;-1:-1:-1;19227:23:36;;19382:66;;;;19280:40;;19427:6;;19435;;19443:4;;;;19382:66;:::i;:::-;;;;;;;;18317:1216;;;18160:1373;;;;;;;:::o;11135:247::-;-1:-1:-1;;;;;11229:34:36;;735:10:20;11229:34:36;11225:102;;11286:30;;-1:-1:-1;;;11286:30:36;;;;;;;;;;;24835:503;735:10:20;24881:14:36;;24953:32;735:10:20;24881:14:36;809::20;24953:12:36;:32::i;:::-;24920:65;;;;25000:9;24995:337;;25029:5;:10;;25038:1;25029:10;25025:297;;25062:19;25087:33;25062:19;809:14:20;25087:21:36;:33::i;:::-;-1:-1:-1;25145:54:36;;-1:-1:-1;;;25145:54:36;;-1:-1:-1;;;;;20298:32:41;;25145:54:36;;;20280:51:41;-1:-1:-1;;;;;20367:31:41;;20347:18;;;20340:59;25059:61:36;;-1:-1:-1;20253:18:41;;;-1:-1:-1;25145:54:36;20108:297:41;25025::36;25238:69;25258:48;25272:6;25288:4;809:14:20;;23980:181:36;:::i;16136:228::-;-1:-1:-1;;;;;16243:16:36;;:8;:16;;;;;;;;;;;-1:-1:-1;;;;;;16243:39:36;;;;;;;;;;;;:48;;-1:-1:-1;;16243:48:36;-1:-1:-1;;;;;16243:48:36;;;;;;;;16306:51;;20554:52:41;;;16243:48:36;:16;16306:51;;20527:18:41;16306:51:36;;;;;;;16136:228;;;:::o;3609:130:32:-;3657:6;3676:12;3696:14;:4;-1:-1:-1;;;;;3696:12:32;;:14::i;:::-;-1:-1:-1;3675:35:32;;3609:130;-1:-1:-1;;;;3609:130:32:o;17458:164:36:-;-1:-1:-1;;;;;17540:16:36;;:8;:16;;;;;;;;;;;;:23;;:32;;;;;-1:-1:-1;;;17540:32:36;-1:-1:-1;;;;17540:32:36;;;;;;17587:28;;;;;17566:6;8326:14:41;8319:22;8301:41;;8289:2;8274:18;;8161:187;17587:28:36;;;;;;;;17458:164;;:::o;1605:183:0:-;1692:10;-1:-1:-1;;;;;1303:11:34;1692:35:0;;1671:110;;;;-1:-1:-1;;;1671:110:0;;20819:2:41;1671:110:0;;;20801:21:41;20858:2;20838:18;;;20831:30;20897;20877:18;;;20870:58;20945:18;;1671:110:0;20617:352:41;1671:110:0;1605:183::o;2762:1104:34:-;2905:22;6563:4:36;-1:-1:-1;;6551:16:36;;;;;2905:22:34;6551:16:36;-1:-1:-1;3034:15:34::1;3059;;::::0;::::1;:6:::0;:15:::1;:::i;:::-;:20;::::0;3077:1:::1;::::0;3075::::1;::::0;3059:20:::1;:::i;:::-;3052:28;::::0;::::1;:::i;:::-;3034:46:::0;-1:-1:-1;;;;;;;3090:28:34;::::1;-1:-1:-1::0;;;3090:28:34::1;3086:83;;3127:42;::::0;-1:-1:-1;;;3127:42:34;;-1:-1:-1;;;;;;20572:33:41;;3127:42:34::1;::::0;::::1;20554:52:41::0;20527:18;;3127:42:34::1;20410:202:41::0;3086:83:34::1;3175:14;3203:15;;::::0;::::1;:6:::0;:15:::1;:::i;:::-;:21;::::0;3221:2:::1;::::0;3219:1:::1;::::0;3203:21:::1;:::i;:::-;3192:44;;;;;;;:::i;:::-;3175:61:::0;-1:-1:-1;3436:4:34::1;-1:-1:-1::0;;;;;3418:23:34;::::1;::::0;3414:57:::1;;3450:21;;-1:-1:-1::0;;;3450:21:34::1;;;;;;;;;;;3414:57;1376:34:26::0;3477:12:34::1;1363:48:26::0;;;1472:4;1465:25;;;1570:4;1554:21;;;3569:37:34::1;1554:21:26::0;3589:16:34::1;;::::0;::::1;::::0;::::1;:::i;:::-;3569:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;3569:13:34::1;::::0;-1:-1:-1;;;3569:37:34:i:1;:::-;3549:57:::0;-1:-1:-1;3664:48:34::1;3549:57:::0;3689:15:::1;;::::0;::::1;:6:::0;:15:::1;:::i;:::-;3706:5;3664:13;:48::i;:::-;3659:83;;305:1:1;3714:28:34;;;;;;;;3659:83;3814:47;3834:9:::0;3845:15:::1;;::::0;::::1;:6:::0;:15:::1;:::i;:::-;3814:19;:47::i;:::-;3807:54;;;;;;6577:1:36;6600:5:::0;-1:-1:-1;;6588:17:36;;;6600:5;6588:17;;2762:1104:34;;;;:::o;3713:68:0:-;;:::o;4356:382::-;4437:24;;4433:299;;4496:126;;4478:12;;4504:10;;-1:-1:-1;;4587:17:0;4545:19;;4478:12;4496:126;4478:12;4496:126;4545:19;4504:10;4587:17;4496:126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27853:378:36;27984:14;;28046:4;-1:-1:-1;;;;;28028:23:36;;;28024:201;;28074:26;28087:6;28095:4;;28074:12;:26::i;:::-;28067:33;;;;;;28024:201;28152:1;28138:15;;:76;;28169:45;28177:6;28185;28193:20;28208:4;;28193:14;:20::i;28169:45::-;28138:76;;;-1:-1:-1;28157:5:36;;-1:-1:-1;28157:5:36;28024:201;27853:378;;;;;;;:::o;30067:116::-;30134:6;30166:9;30173:1;30134:6;30166:4;;:9;:::i;:::-;30159:17;;;:::i;23263:676::-;23339:6;23376:23;;;:10;:23;;;;;:33;;;;;-1:-1:-1;;;23434:29:36;;;;23478:14;;;23474:294;;23515:38;;-1:-1:-1;;;23515:38:36;;;;;3533:25:41;;;3506:18;;23515:38:36;3387:177:41;23474:294:36;23586:16;:14;:16::i;:::-;23574:28;;:9;:28;;;23570:198;;;23625:34;;-1:-1:-1;;;23625:34:36;;;;;3533:25:41;;;3506:18;;23625:34:36;3387:177:41;23570:198:36;23680:21;23691:9;23680:10;:21::i;:::-;23676:92;;;23724:33;;-1:-1:-1;;;23724:33:36;;;;;3533:25:41;;;3506:18;;23724:33:36;3387:177:41;23676:92:36;23785:23;;;;:10;:23;;;;;;23778:40;;-1:-1:-1;;23778:40:36;;;23872:37;;;;;23796:11;;23872:37;;23785:23;23872:37;23927:5;23263:676;-1:-1:-1;;;23263:676:36:o;30257:153::-;30374:28;;;-1:-1:-1;;;;;21977:32:41;;;;30374:28:36;;;;21959:51:41;;;;-1:-1:-1;;;;;;22046:33:41;;;;22026:18;;;22019:61;30374:28:36;;;;;;;;;21932:18:41;;;;30374:28:36;;30364:39;;;;;;30257:153::o;2975:407:19:-;3074:12;3126:5;3102:21;:29;3098:123;;;3154:56;;-1:-1:-1;;;3154:56:19;;3181:21;3154:56;;;22265:25:41;22306:18;;;22299:34;;;22238:18;;3154:56:19;22091:248:41;3098:123:19;3231:12;3245:23;3272:6;-1:-1:-1;;;;;3272:11:19;3291:5;3298:4;3272:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3230:73;;;;3320:55;3347:6;3355:7;3364:10;3320:26;:55::i;:::-;3313:62;2975:407;-1:-1:-1;;;;;;2975:407:19:o;12080:1061:36:-;12238:4;-1:-1:-1;;;;;;;12258:21:36;;;12254:90;;12302:31;;-1:-1:-1;;;12302:31:36;;-1:-1:-1;;;;;1695:31:41;;12302::36;;;1677:50:41;1650:18;;12302:31:36;1533:200:41;12254:90:36;-1:-1:-1;;;;;12371:14:36;;12354;12371;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12371:31:36;;;;;;;;;:37;;;:42;;12446:585;;;;12502:10;12483:29;;:16;:14;:16::i;:::-;:29;;;;:::i;:::-;12475:37;;12560:55;;;;;;;;12575:5;12560:55;;;;;;12589:24;:14;:22;;2589:20:32;;;2508:108;12589:24:36;-1:-1:-1;;;;;12560:55:36;;;;;;-1:-1:-1;;;;;12526:14:36;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12526:31:36;;;;;;;;;:89;;;;;;;;;;;;-1:-1:-1;;;12526:89:36;-1:-1:-1;;;;;;12526:89:36;;;;;;;;;;;;;;12446:585;;;-1:-1:-1;;;;;12907:14:36;;13005:1;12907:14;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12907:31:36;;;;;;;;;:37;:113;;-1:-1:-1;;;12907:37:36;;;-1:-1:-1;;;;;12907:37:36;;12973:14;;12907:48;:113::i;:::-;-1:-1:-1;;;;;12859:14:36;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12859:31:36;;;;;;;;;12858:162;;-1:-1:-1;;;;;12858:162:36;;;-1:-1:-1;;;12858:162:36;-1:-1:-1;;12858:162:36;;;;;;;;;;;-1:-1:-1;12446:585:36;13046:62;;;22760:10:41;22748:23;;22730:42;;22820:14;22808:27;;22803:2;22788:18;;22781:55;22879:14;;22872:22;22852:18;;;22845:50;13046:62:36;;-1:-1:-1;;;;;13046:62:36;;;-1:-1:-1;;;;;13046:62:36;;;;;;;;22718:2:41;13046:62:36;;;-1:-1:-1;13125:9:36;12080:1061;-1:-1:-1;;;;;12080:1061:36:o;3492:129:37:-;3544:6;3552;3560;3585:29;3596:4;3602:11;:9;:11::i;:::-;3585:10;:29::i;:::-;3578:36;;;;;;3492:129;;;;;:::o;3393:159:32:-;3445:18;3465:17;3484:13;3516:29;3527:4;3533:11;:9;:11::i;:::-;3516:10;:29::i;14097:285:36:-;-1:-1:-1;;;;;14180:20:36;;;;:45;;-1:-1:-1;;;;;;14204:21:36;;;;14180:45;14176:114;;;14248:31;;-1:-1:-1;;;14248:31:36;;-1:-1:-1;;;;;1695:31:41;;14248::36;;;1677:50:41;1650:18;;14248:31:36;1533:200:41;14176:114:36;-1:-1:-1;;;;;14300:14:36;;;;;;;:6;:14;;;;;;;;:20;;;:28;;-1:-1:-1;;14300:28:36;;;;;;;;;14344:31;;;14300:14;14344:31;14097:285;;:::o;29823:134::-;29883:4;29934:16;:14;:16::i;:::-;29906:44;;:24;7981:7;29906:9;:24;:::i;:::-;:44;;;;;29823:134;-1:-1:-1;;29823:134:36:o;4433:729:34:-;4527:4;;;4572:49;4580:6;4596:4;4610:9;4617:1;4527:4;4610;;:9;:::i;:::-;4603:17;;;:::i;4572:49::-;4539:82;;;;4632:9;4627:514;;4655:9;;;;4651:484;;4683:17;;-1:-1:-1;;;4683:17:34;;;;;;;;;;;4651:484;4979:4;4975:151;;;5035:6;5043:55;5073:4;5087:9;5094:1;5092;5087:4;;:9;:::i;:::-;5080:17;;;:::i;5043:55::-;5002:97;;-1:-1:-1;;;5002:97:34;;-1:-1:-1;;;;;20298:32:41;;;5002:97:34;;;20280:51:41;-1:-1:-1;;;;;20367:31:41;20347:18;;;20340:59;20253:18;;5002:97:34;20108:297:41;4975:151:34;5121:5;5114:12;;;;;;4975:151;-1:-1:-1;5153:4:34;;4433:729;-1:-1:-1;;;;;;4433:729:34:o;14701:303:36:-;-1:-1:-1;;;;;14790:20:36;;;;:45;;-1:-1:-1;;;;;;14814:21:36;;;;14790:45;14786:114;;;14858:31;;-1:-1:-1;;;14858:31:36;;-1:-1:-1;;;;;1695:31:41;;14858::36;;;1677:50:41;1650:18;;14858:31:36;1533:200:41;14786:114:36;-1:-1:-1;;;;;14910:14:36;;;;;;;:6;:14;;;;;;;;:23;;;:34;;-1:-1:-1;;14910:34:36;-1:-1:-1;;;14910:34:36;;;;;;;;;14960:37;;;14910:14;14960:37;14701:303;;:::o;15151:374::-;-1:-1:-1;;;;;;;15238:21:36;;;15234:90;;15282:31;;-1:-1:-1;;;15282:31:36;;-1:-1:-1;;;;;1695:31:41;;15282::36;;;1677:50:41;1650:18;;15282:31:36;1533:200:41;15234:90:36;-1:-1:-1;;;;;15395:14:36;;15334:13;15395:14;;;:6;:14;;;;;;;:25;;:60;;-1:-1:-1;;;15395:25:36;;-1:-1:-1;;;;;15395:25:36;15432:8;8112:6;15395:36;:60::i;:::-;-1:-1:-1;;;;;15358:14:36;;;;;;:6;:14;;;;;;;;;:25;15357:98;;-1:-1:-1;;;;;15357:98:36;;;-1:-1:-1;;;15357:98:36;-1:-1:-1;;;;15357:98:36;;;;;;;;;;15471:47;;15357:98;;-1:-1:-1;15471:47:36;;;;15501:8;;15357:98;;23106:10:41;23094:23;;;;23076:42;;23166:14;23154:27;23149:2;23134:18;;23127:55;23064:2;23049:18;;22906:282;3916:253:19;3999:12;4024;4038:23;4065:6;-1:-1:-1;;;;;4065:19:19;4085:4;4065:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4023:67;;;;4107:55;4134:6;4142:7;4151:10;4107:26;:55::i;:::-;4100:62;3916:253;-1:-1:-1;;;;;3916:253:19:o;29562:157:36:-;29639:4;29678:34;29695:6;29703:8;29678:16;:34::i;:::-;29662:12;;:50;;29562:157;-1:-1:-1;;;29562:157:36:o;13402:400::-;13481:4;-1:-1:-1;;;;;;;13501:21:36;;;13497:90;;13545:31;;-1:-1:-1;;;13545:31:36;;-1:-1:-1;;;;;1695:31:41;;13545::36;;;1677:50:41;1650:18;;13545:31:36;1533:200:41;13497:90:36;-1:-1:-1;;;;;13601:14:36;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;13601:31:36;;;;;;;;;:37;;;:42;;13597:85;;-1:-1:-1;13666:5:36;13659:12;;13597:85;-1:-1:-1;;;;;13699:14:36;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;13699:31:36;;;;;;;;;;13692:38;;-1:-1:-1;;;;;;13692:38:36;;;13746:28;13699:31;;:14;13746:28;;;-1:-1:-1;13791:4:36;13402:400;;;;:::o;750:110:32:-;794:6;819:34;837:15;819:17;:34::i;16707:287:36:-;-1:-1:-1;;;;;16860:16:36;;16797:13;16860:16;;;;;;;;;;:27;;;:62;;-1:-1:-1;;;;;16860:27:36;16899:8;8112:6;16860:38;:62::i;:::-;-1:-1:-1;;;;;16821:16:36;;:8;:16;;;;;;;;;;;;:27;;16820:102;;-1:-1:-1;;16820:102:36;-1:-1:-1;;;;;16820:102:36;;;;;;;;;;;16938:49;;23106:10:41;23094:23;;23076:42;;23166:14;23154:27;;23134:18;;;23127:55;;;;16820:102:36;;-1:-1:-1;16821:16:36;16938:49;;23049:18:41;16938:49:36;22906:282:41;3189:111:29;3247:7;3066:5;;;3281;;;3065:36;3060:42;;3273:20;2825:294;19727:272:36;19799:20;19822:23;;;:10;:23;;;;;:33;;;19869:18;;;;;:48;;;19892:25;19903:13;19892:10;:25::i;:::-;19891:26;19869:48;19865:128;;;19940:42;;-1:-1:-1;;;19940:42:36;;;;;3533:25:41;;;3506:18;;19940:42:36;3387:177:41;28335:1107:36;28416:14;;28474:1;28460:15;;28456:63;;;-1:-1:-1;28499:5:36;;-1:-1:-1;28499:5:36;28491:17;;28456:63;28551:4;-1:-1:-1;;;;;28533:23:36;;;28529:334;;28799:49;28820:4;28827:20;28842:4;;28827:14;:20::i;:::-;28799:12;:49::i;28529:334::-;28874:20;28896:13;28911:21;28936:27;28958:4;;28936:21;:27::i;:::-;28873:90;;;;;;29044:15;29043:16;:49;;;;;29063:29;29086:4;29063:14;:29::i;:::-;29039:97;;;29116:5;29123:1;29108:17;;;;;;;;;29039:97;29147:11;29160:21;29185:23;29193:6;29201;29185:7;:23::i;:::-;29146:62;;;;29223:6;29218:55;;29253:5;29260:1;29245:17;;;;;;;;;;;29218:55;29358:40;29367:14;29358:40;;29383:14;29358:40;;:8;:40::i;:::-;29417:10;;;;;;;-1:-1:-1;28335:1107:36;-1:-1:-1;;;;;;;;;28335:1107:36:o;25744:1678::-;25832:20;;;25925:1;25911:15;;25907:66;;;-1:-1:-1;25950:5:36;;-1:-1:-1;25950:5:36;;-1:-1:-1;25950:5:36;25942:20;;25907:66;25983:15;26001:20;26016:4;;26001:14;:20::i;:::-;25983:38;-1:-1:-1;;;;;;;26141:35:36;;-1:-1:-1;;;26141:35:36;;:89;;-1:-1:-1;;;;;;;26192:38:36;;-1:-1:-1;;;26192:38:36;26141:89;:146;;;-1:-1:-1;;;;;;;26246:41:36;;-1:-1:-1;;;26246:41:36;26141:146;:201;;;-1:-1:-1;;;;;;;26303:39:36;;-1:-1:-1;;;26303:39:36;26141:201;:262;;;-1:-1:-1;;;;;;;26358:45:36;;-1:-1:-1;;;26358:45:36;26141:262;26124:343;;;26436:4;5642:16;26454:1;26428:28;;;;;;;;;26124:343;-1:-1:-1;;;;;;26574:41:36;;-1:-1:-1;;;26574:41:36;;:98;;-1:-1:-1;;;;;;;26631:41:36;;-1:-1:-1;;;26631:41:36;26574:98;:161;;;-1:-1:-1;;;;;;;26688:47:36;;-1:-1:-1;;;26688:47:36;26574:161;26557:414;;;26803:14;26831:15;26841:4;26836;26831;;:15;:::i;:::-;26820:38;;;;;;;:::i;:::-;26803:55;;26872:12;26887:27;26907:6;26887:19;:27::i;:::-;26936:4;;-1:-1:-1;5642:16:36;;-1:-1:-1;26872:42:36;-1:-1:-1;26928:32:36;;-1:-1:-1;;;26928:32:36;26557:414;-1:-1:-1;;;;;;27090:35:36;;-1:-1:-1;;;27090:35:36;;:75;;-1:-1:-1;;;;;;;27129:36:36;;-1:-1:-1;;;27129:36:36;27090:75;27086:254;;;27224:13;27251:15;27261:4;27256;27251;;:15;:::i;:::-;27240:37;;;;;;;:::i;:::-;27224:53;;27299:4;27305:20;27318:6;-1:-1:-1;;;;;8805:14:36;;;8780:6;8805:14;;;:6;:14;;;;;;;;:20;;;;8714:118;27305:20;27327:1;27291:38;;;;;;;;;;27086:254;27358:5;27365:46;27395:4;27402:8;27365:21;:46::i;:::-;27413:1;27350:65;;;;;;;25744:1678;;;;;;:::o;3714:255:25:-;3792:7;3812:17;3831:18;3851:16;3871:27;3882:4;3888:9;3871:10;:27::i;:::-;3811:87;;;;;;3908:28;3920:5;3927:8;3908:11;:28::i;2158:553:34:-;2252:7;;;2329:14;2344:1;2329:14;2346:25;2344:1;2329:14;2346:25;:::i;:::-;2329:43;;;;;;;:::i;:::-;2311:100;;;;;;;:::i;:::-;2267:144;;;;;2418:14;2434:12;2450:54;2458:6;2466;2481:21;2500:1;2481:8;:18;;:21;;;;:::i;2450:54::-;2417:87;;;;2514:9;:23;;;-1:-1:-1;2527:10:34;;;;2514:23;2510:94;;;2546:9;:58;;305:1:1;2546:58:34;;;465:1:1;2546:58:34;2539:65;;;;;;;;2510:94;2610:61;2630:40;2645:6;2653;2661:8;2630:14;:40::i;2610:61::-;-1:-1:-1;465:1:1;;2158:553:34;-1:-1:-1;;;;;;;;2158:553:34:o;4437:582:19:-;4581:12;4610:7;4605:408;;4633:19;4641:10;4633:7;:19::i;:::-;4605:408;;;4857:17;;:22;:49;;;;-1:-1:-1;;;;;;4883:18:19;;;:23;4857:49;4853:119;;;4933:24;;-1:-1:-1;;;4933:24:19;;-1:-1:-1;;;;;11216:32:41;;4933:24:19;;;11198:51:41;11171:18;;4933:24:19;11033:222:41;4853:119:19;-1:-1:-1;4992:10:19;4985:17;;4033:390:32;4154:18;4174:13;4199:12;4214:10;:4;-1:-1:-1;;;;;4214:8:32;;:10::i;:::-;4199:25;;4234:14;4258:61;4267:10;4258:61;;4287:8;4279:16;;:5;:16;;;:39;;4317:1;4279:39;;;4298:16;4306:8;4298:5;:16;:::i;:::-;4258:61;;:8;:61::i;:::-;4234:86;;4353:7;4339:21;;:11;:9;:11::i;:::-;:21;;;;:::i;:::-;4330:30;-1:-1:-1;5126:19:32;;;5120:2;5096:26;;;;;5089:2;5070:21;;;;;5069:54;:76;4370:46;;;;4033:390;;;;;;:::o;816:174:37:-;860:6;939:30;957:11;939:17;:30::i;2998:276::-;3070:6;;;4833:9;4840:2;4833:9;;;;-1:-1:-1;;;;;3161:11:37;;4869:9;4876:2;4869:9;;;;;;3191:19;;;;;:76;;3235:11;3248:10;3260:6;3191:76;;;3214:10;3226:1;3229;3191:76;3184:83;;;;;;;;;2998:276;;;;;:::o;2868:307:32:-;4833:9:37;4840:2;4833:9;;;;-1:-1:-1;;;;;3062:11:32;;4869:9:37;4876:2;4869:9;;;;;;3092:19:32;;;;;:76;;3136:11;3149:10;3161:6;3092:76;;;3115:10;3127:1;3130;3092:76;3085:83;;;;;;2868:307;;;;;:::o;14296:213:30:-;14352:6;14382:16;14374:24;;14370:103;;;14421:41;;-1:-1:-1;;;14421:41:30;;14452:2;14421:41;;;24761:36:41;24813:18;;;24806:34;;;24734:18;;14421:41:30;24580:266:41;14370:103:30;-1:-1:-1;14496:5:30;14296:213::o;2129:778:25:-;2232:17;2251:16;2269:14;2299:9;:16;2319:2;2299:22;2295:606;;2604:4;2589:20;;2583:27;2653:4;2638:20;;2632:27;2710:4;2695:20;;2689:27;2337:9;2681:36;2751:25;2762:4;2681:36;2583:27;2632;2751:10;:25::i;:::-;2744:32;;;;;;;;;;;2295:606;-1:-1:-1;;2872:16:25;;2823:1;;-1:-1:-1;2827:35:25;;2807:83;;7280:532;7375:20;7366:5;:29;;;;;;;;:::i;:::-;;7362:444;;7280:532;;:::o;7362:444::-;7471:29;7462:5;:38;;;;;;;;:::i;:::-;;7458:348;;7523:23;;-1:-1:-1;;;7523:23:25;;;;;;;;;;;7458:348;7576:35;7567:5;:44;;;;;;;;:::i;:::-;;7563:243;;7634:46;;-1:-1:-1;;;7634:46:25;;;;;3533:25:41;;;3506:18;;7634:46:25;3387:177:41;7563:243:25;7710:30;7701:5;:39;;;;;;;;:::i;:::-;;7697:109;;7763:32;;-1:-1:-1;;;7763:32:25;;;;;3533:25:41;;;3506:18;;7763:32:25;3387:177:41;14814:320:40;14893:7;14937:11;:6;14946:2;14937:11;:::i;:::-;14920:6;:13;:28;;14912:62;;;;-1:-1:-1;;;14912:62:40;;25315:2:41;14912:62:40;;;25297:21:41;25354:2;25334:18;;;25327:30;-1:-1:-1;;;25373:18:41;;;25366:51;25434:18;;14912:62:40;25113:345:41;14912:62:40;-1:-1:-1;15058:30:40;15074:4;15058:30;15052:37;;14814:320::o;1986:168:34:-;2084:7;2127:6;2135;2143:4;2116:32;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2106:43;;;;;;2099:50;;1986:168;;;;;:::o;5559:487:19:-;5690:17;;:21;5686:354;;5887:10;5881:17;5943:15;5930:10;5926:2;5922:19;5915:44;5686:354;6010:19;;-1:-1:-1;;;6010:19:19;;;;;;;;;;;5203:1551:25;5329:17;;;6283:66;6270:79;;6266:164;;;-1:-1:-1;6381:1:25;;-1:-1:-1;6385:30:25;;-1:-1:-1;6417:1:25;6365:54;;6266:164;6541:24;;;6524:14;6541:24;;;;;;;;;26115:25:41;;;26188:4;26176:17;;26156:18;;;26149:45;;;;26210:18;;;26203:34;;;26253:18;;;26246:34;;;6541:24:25;;26087:19:41;;6541:24:25;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6541:24:25;;-1:-1:-1;;6541:24:25;;;-1:-1:-1;;;;;;;6579:20:25;;6575:113;;-1:-1:-1;6631:1:25;;-1:-1:-1;6635:29:25;;-1:-1:-1;6631:1:25;;-1:-1:-1;6615:62:25;;6575:113;6706:6;-1:-1:-1;6714:20:25;;-1:-1:-1;6714:20:25;;-1:-1:-1;5203:1551:25;;;;;;;;;:::o;14:131:41:-;-1:-1:-1;;;;;89:31:41;;79:42;;69:70;;135:1;132;125:12;150:366;212:8;222:6;276:3;269:4;261:6;257:17;253:27;243:55;;294:1;291;284:12;243:55;-1:-1:-1;317:20:41;;-1:-1:-1;;;;;349:30:41;;346:50;;;392:1;389;382:12;346:50;429:4;421:6;417:17;405:29;;489:3;482:4;472:6;469:1;465:14;457:6;453:27;449:38;446:47;443:67;;;506:1;503;496:12;521:171;588:20;;-1:-1:-1;;;;;637:30:41;;627:41;;617:69;;682:1;679;672:12;617:69;521:171;;;:::o;697:642::-;799:6;807;815;823;876:2;864:9;855:7;851:23;847:32;844:52;;;892:1;889;882:12;844:52;931:9;918:23;950:31;975:5;950:31;:::i;:::-;1000:5;-1:-1:-1;1056:2:41;1041:18;;1028:32;-1:-1:-1;;;;;1072:30:41;;1069:50;;;1115:1;1112;1105:12;1069:50;1154:69;1215:7;1206:6;1195:9;1191:22;1154:69;:::i;:::-;1242:8;;-1:-1:-1;1128:95:41;-1:-1:-1;1296:37:41;;-1:-1:-1;1329:2:41;1314:18;;1296:37;:::i;:::-;1286:47;;697:642;;;;;;;:::o;1344:184::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;1494:28;1512:9;1494:28;:::i;1935:416::-;2000:6;2008;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2116:9;2103:23;2135:31;2160:5;2135:31;:::i;:::-;2185:5;-1:-1:-1;2242:2:41;2227:18;;2214:32;2284:15;;2277:23;2265:36;;2255:64;;2315:1;2312;2305:12;2255:64;2338:7;2328:17;;;1935:416;;;;;:::o;2356:388::-;2424:6;2432;2485:2;2473:9;2464:7;2460:23;2456:32;2453:52;;;2501:1;2498;2491:12;2453:52;2540:9;2527:23;2559:31;2584:5;2559:31;:::i;:::-;2609:5;-1:-1:-1;2666:2:41;2651:18;;2638:32;2679:33;2638:32;2679:33;:::i;2749:633::-;2865:6;2873;2881;2934:2;2922:9;2913:7;2909:23;2905:32;2902:52;;;2950:1;2947;2940:12;2902:52;2990:9;2977:23;-1:-1:-1;;;;;3015:6:41;3012:30;3009:50;;;3055:1;3052;3045:12;3009:50;3078:22;;3134:3;3116:16;;;3112:26;3109:46;;;3151:1;3148;3141:12;3109:46;3174:2;3245;3230:18;;3217:32;;-1:-1:-1;3346:2:41;3331:18;;;3318:32;;2749:633;-1:-1:-1;;;2749:633:41:o;3569:347::-;3620:8;3630:6;3684:3;3677:4;3669:6;3665:17;3661:27;3651:55;;3702:1;3699;3692:12;3651:55;-1:-1:-1;3725:20:41;;-1:-1:-1;;;;;3757:30:41;;3754:50;;;3800:1;3797;3790:12;3754:50;3837:4;3829:6;3825:17;3813:29;;3889:3;3882:4;3873:6;3865;3861:19;3857:30;3854:39;3851:59;;;3906:1;3903;3896:12;3921:544;4000:6;4008;4016;4069:2;4057:9;4048:7;4044:23;4040:32;4037:52;;;4085:1;4082;4075:12;4037:52;4124:9;4111:23;4143:31;4168:5;4143:31;:::i;:::-;4193:5;-1:-1:-1;4249:2:41;4234:18;;4221:32;-1:-1:-1;;;;;4265:30:41;;4262:50;;;4308:1;4305;4298:12;4262:50;4347:58;4397:7;4388:6;4377:9;4373:22;4347:58;:::i;:::-;3921:544;;4424:8;;-1:-1:-1;4321:84:41;;-1:-1:-1;;;;3921:544:41:o;4470:163::-;4537:20;;4597:10;4586:22;;4576:33;;4566:61;;4623:1;4620;4613:12;4638:391;4713:6;4721;4729;4782:2;4770:9;4761:7;4757:23;4753:32;4750:52;;;4798:1;4795;4788:12;4750:52;4821:28;4839:9;4821:28;:::i;:::-;4811:38;;4899:2;4888:9;4884:18;4871:32;4912:31;4937:5;4912:31;:::i;:::-;4962:5;-1:-1:-1;4986:37:41;5019:2;5004:18;;4986:37;:::i;:::-;4976:47;;4638:391;;;;;:::o;5034:319::-;5101:6;5109;5162:2;5150:9;5141:7;5137:23;5133:32;5130:52;;;5178:1;5175;5168:12;5130:52;5201:28;5219:9;5201:28;:::i;5822:256::-;5888:6;5896;5949:2;5937:9;5928:7;5924:23;5920:32;5917:52;;;5965:1;5962;5955:12;5917:52;5988:28;6006:9;5988:28;:::i;:::-;5978:38;;6035:37;6068:2;6057:9;6053:18;6035:37;:::i;:::-;6025:47;;5822:256;;;;;:::o;6083:226::-;6142:6;6195:2;6183:9;6174:7;6170:23;6166:32;6163:52;;;6211:1;6208;6201:12;6163:52;-1:-1:-1;6256:23:41;;6083:226;-1:-1:-1;6083:226:41:o;6515:247::-;6574:6;6627:2;6615:9;6606:7;6602:23;6598:32;6595:52;;;6643:1;6640;6633:12;6595:52;6682:9;6669:23;6701:31;6726:5;6701:31;:::i;6767:375::-;6843:6;6851;6904:2;6892:9;6883:7;6879:23;6875:32;6872:52;;;6920:1;6917;6910:12;6872:52;6959:9;6946:23;6978:31;7003:5;6978:31;:::i;:::-;7028:5;7106:2;7091:18;;;;7078:32;;-1:-1:-1;;;6767:375:41:o;7147:131::-;-1:-1:-1;;;;;;7221:32:41;;7211:43;;7201:71;;7268:1;7265;7258:12;7283:386;7350:6;7358;7411:2;7399:9;7390:7;7386:23;7382:32;7379:52;;;7427:1;7424;7417:12;7379:52;7466:9;7453:23;7485:31;7510:5;7485:31;:::i;:::-;7535:5;-1:-1:-1;7592:2:41;7577:18;;7564:32;7605;7564;7605;:::i;7674:482::-;7753:6;7761;7769;7822:2;7810:9;7801:7;7797:23;7793:32;7790:52;;;7838:1;7835;7828:12;7790:52;7861:28;7879:9;7861:28;:::i;8353:256::-;8419:6;8427;8480:2;8468:9;8459:7;8455:23;8451:32;8448:52;;;8496:1;8493;8486:12;8448:52;8519:28;8537:9;8519:28;:::i;:::-;8509:38;;8566:37;8599:2;8588:9;8584:18;8566:37;:::i;8614:685::-;8702:6;8710;8718;8726;8779:2;8767:9;8758:7;8754:23;8750:32;8747:52;;;8795:1;8792;8785:12;8747:52;8834:9;8821:23;8853:31;8878:5;8853:31;:::i;:::-;8903:5;-1:-1:-1;8960:2:41;8945:18;;8932:32;8973:33;8932:32;8973:33;:::i;:::-;9025:7;-1:-1:-1;9083:2:41;9068:18;;9055:32;-1:-1:-1;;;;;9099:30:41;;9096:50;;;9142:1;9139;9132:12;9096:50;9181:58;9231:7;9222:6;9211:9;9207:22;9181:58;:::i;:::-;8614:685;;;;-1:-1:-1;9258:8:41;-1:-1:-1;;;;8614:685:41:o;9486:447::-;9583:6;9591;9644:2;9632:9;9623:7;9619:23;9615:32;9612:52;;;9660:1;9657;9650:12;9612:52;9700:9;9687:23;-1:-1:-1;;;;;9725:6:41;9722:30;9719:50;;;9765:1;9762;9755:12;9719:50;9804:69;9865:7;9856:6;9845:9;9841:22;9804:69;:::i;:::-;9892:8;;9778:95;;-1:-1:-1;9486:447:41;-1:-1:-1;;;;9486:447:41:o;9938:297::-;9988:3;10026:5;10020:12;10053:6;10048:3;10041:19;10109:6;10102:4;10095:5;10091:16;10084:4;10079:3;10075:14;10069:47;10161:1;10154:4;10145:6;10140:3;10136:16;10132:27;10125:38;10224:4;10217:2;10213:7;10208:2;10200:6;10196:15;10192:29;10187:3;10183:39;10179:50;10172:57;;;9938:297;;;;:::o;10240:788::-;10400:4;10448:2;10437:9;10433:18;10478:2;10467:9;10460:21;10501:6;10536;10530:13;10567:6;10559;10552:22;10605:2;10594:9;10590:18;10583:25;;10667:2;10657:6;10654:1;10650:14;10639:9;10635:30;10631:39;10617:53;;10705:2;10697:6;10693:15;10726:1;10736:263;10750:6;10747:1;10744:13;10736:263;;;10843:2;10839:7;10827:9;10819:6;10815:22;10811:36;10806:3;10799:49;10871:48;10912:6;10903;10897:13;10871:48;:::i;:::-;10861:58;-1:-1:-1;10954:2:41;10977:12;;;;10942:15;;;;;10772:1;10765:9;10736:263;;;-1:-1:-1;11016:6:41;;10240:788;-1:-1:-1;;;;;;10240:788:41:o;11260:664::-;11348:6;11356;11364;11372;11425:2;11413:9;11404:7;11400:23;11396:32;11393:52;;;11441:1;11438;11431:12;11393:52;11480:9;11467:23;11499:31;11524:5;11499:31;:::i;:::-;11549:5;-1:-1:-1;11627:2:41;11612:18;;11599:32;;-1:-1:-1;11708:2:41;11693:18;;11680:32;-1:-1:-1;;;;;11724:30:41;;11721:50;;;11767:1;11764;11757:12;11929:527;12005:6;12013;12021;12074:2;12062:9;12053:7;12049:23;12045:32;12042:52;;;12090:1;12087;12080:12;12042:52;12129:9;12116:23;12148:31;12173:5;12148:31;:::i;:::-;12198:5;-1:-1:-1;12255:2:41;12240:18;;12227:32;12268:33;12227:32;12268:33;:::i;:::-;12320:7;-1:-1:-1;12379:2:41;12364:18;;12351:32;12392;12351;12392;:::i;:::-;12443:7;12433:17;;;11929:527;;;;;:::o;12739:319::-;12806:6;12814;12867:2;12855:9;12846:7;12842:23;12838:32;12835:52;;;12883:1;12880;12873:12;12835:52;12922:9;12909:23;12941:31;12966:5;12941:31;:::i;13063:720::-;13150:6;13158;13166;13174;13227:2;13215:9;13206:7;13202:23;13198:32;13195:52;;;13243:1;13240;13233:12;13195:52;13282:9;13269:23;13301:31;13326:5;13301:31;:::i;:::-;13351:5;-1:-1:-1;13407:2:41;13392:18;;13379:32;-1:-1:-1;;;;;13423:30:41;;13420:50;;;13466:1;13463;13456:12;13420:50;13505:58;13555:7;13546:6;13535:9;13531:22;13505:58;:::i;:::-;13582:8;;-1:-1:-1;13479:84:41;-1:-1:-1;;13669:2:41;13654:18;;13641:32;13717:14;13704:28;;13692:41;;13682:69;;13747:1;13744;13737:12;13682:69;13063:720;;;;-1:-1:-1;13063:720:41;;-1:-1:-1;;13063:720:41:o;14056:127::-;14117:10;14112:3;14108:20;14105:1;14098:31;14148:4;14145:1;14138:15;14172:4;14169:1;14162:15;14188:245;14246:6;14299:2;14287:9;14278:7;14274:23;14270:32;14267:52;;;14315:1;14312;14305:12;14267:52;14354:9;14341:23;14373:30;14397:5;14373:30;:::i;15342:267::-;15431:6;15426:3;15419:19;15483:6;15476:5;15469:4;15464:3;15460:14;15447:43;-1:-1:-1;15535:1:41;15510:16;;;15528:4;15506:27;;;15499:38;;;;15591:2;15570:15;;;-1:-1:-1;;15566:29:41;15557:39;;;15553:50;;15342:267::o;15614:247::-;15773:2;15762:9;15755:21;15736:4;15793:62;15851:2;15840:9;15836:18;15828:6;15820;15793:62;:::i;15866:249::-;15935:6;15988:2;15976:9;15967:7;15963:23;15959:32;15956:52;;;16004:1;16001;15994:12;15956:52;16036:9;16030:16;16055:30;16079:5;16055:30;:::i;16120:439::-;-1:-1:-1;;;;;16333:32:41;;;16315:51;;16402:32;;16397:2;16382:18;;16375:60;16471:2;16466;16451:18;;16444:30;;;-1:-1:-1;;16491:62:41;;16534:18;;16526:6;16518;16491:62;:::i;16564:127::-;16625:10;16620:3;16616:20;16613:1;16606:31;16656:4;16653:1;16646:15;16680:4;16677:1;16670:15;16696:128;16763:9;;;16784:11;;;16781:37;;;16798:18;;:::i;16829:331::-;16934:9;16945;16987:8;16975:10;16972:24;16969:44;;;17009:1;17006;16999:12;16969:44;17038:6;17028:8;17025:20;17022:40;;;17058:1;17055;17048:12;17022:40;-1:-1:-1;;17084:23:41;;;17129:25;;;;;-1:-1:-1;16829:331:41:o;17165:127::-;17226:10;17221:3;17217:20;17214:1;17207:31;17257:4;17254:1;17247:15;17281:4;17278:1;17271:15;17297:521;17374:4;17380:6;17440:11;17427:25;17534:2;17530:7;17519:8;17503:14;17499:29;17495:43;17475:18;17471:68;17461:96;;17553:1;17550;17543:12;17461:96;17580:33;;17632:20;;;-1:-1:-1;;;;;;17664:30:41;;17661:50;;;17707:1;17704;17697:12;17661:50;17740:4;17728:17;;-1:-1:-1;17771:14:41;17767:27;;;17757:38;;17754:58;;;17808:1;17805;17798:12;17823:211;17864:3;17902:5;17896:12;17946:6;17939:4;17932:5;17928:16;17923:3;17917:36;18008:1;17972:16;;17997:13;;;-1:-1:-1;17972:16:41;;17823:211;-1:-1:-1;17823:211:41:o;18039:343::-;18268:6;18260;18255:3;18242:33;18224:3;18303:6;18298:3;18294:16;18330:1;18326:2;18319:13;18348:28;18373:2;18365:6;18348:28;:::i;18387:184::-;18457:6;18510:2;18498:9;18489:7;18485:23;18481:32;18478:52;;;18526:1;18523;18516:12;18478:52;-1:-1:-1;18549:16:41;;18387:184;-1:-1:-1;18387:184:41:o;19388:179::-;19487:14;19456:22;;;19480;;;19452:51;;19515:23;;19512:49;;;19541:18;;:::i;19572:531::-;19823:14;19811:27;;19793:46;;-1:-1:-1;;;;;19875:32:41;;;19870:2;19855:18;;19848:60;19944:32;;19939:2;19924:18;;19917:60;20013:3;20008:2;19993:18;;19986:31;;;-1:-1:-1;;20034:63:41;;20077:19;;20069:6;20061;20034:63;:::i;:::-;20026:71;19572:531;-1:-1:-1;;;;;;;19572:531:41:o;20974:338::-;21094:19;;-1:-1:-1;;;;;;21131:29:41;;;21180:1;21172:10;;21169:137;;;-1:-1:-1;;;;;;21241:1:41;21237:11;;;21234:1;21230:19;21226:46;;;21218:55;;21214:82;;-1:-1:-1;21169:137:41;;20974:338;;;;:::o;22344:189::-;22473:3;22498:29;22523:3;22515:6;22498:29;:::i;23193:1207::-;23287:6;23295;23303;23356:2;23344:9;23335:7;23331:23;23327:32;23324:52;;;23372:1;23369;23362:12;23324:52;23411:9;23398:23;23430:31;23455:5;23430:31;:::i;:::-;23480:5;-1:-1:-1;23558:2:41;23543:18;;23530:32;;-1:-1:-1;23639:2:41;23624:18;;23611:32;-1:-1:-1;;;;;23655:30:41;;23652:50;;;23698:1;23695;23688:12;23652:50;23721:22;;23774:4;23766:13;;23762:27;-1:-1:-1;23752:55:41;;23803:1;23800;23793:12;23752:55;23843:2;23830:16;-1:-1:-1;;;;;23861:6:41;23858:30;23855:56;;;23891:18;;:::i;:::-;23940:2;23934:9;24032:2;23994:17;;-1:-1:-1;;23990:31:41;;;24023:2;23986:40;23982:54;23970:67;;-1:-1:-1;;;;;24052:34:41;;24088:22;;;24049:62;24046:88;;;24114:18;;:::i;:::-;24150:2;24143:22;24174;;;24215:15;;;24232:2;24211:24;24208:37;-1:-1:-1;24205:57:41;;;24258:1;24255;24248:12;24205:57;24314:6;24309:2;24305;24301:11;24296:2;24288:6;24284:15;24271:50;24367:1;24362:2;24353:6;24345;24341:19;24337:28;24330:39;24388:6;24378:16;;;;;23193:1207;;;;;:::o;24405:170::-;24502:10;24495:18;;;24475;;;24471:43;;24526:20;;24523:46;;;24549:18;;:::i;24851:127::-;24912:10;24907:3;24903:20;24900:1;24893:31;24943:4;24940:1;24933:15;24967:4;24964:1;24957:15;24983:125;25048:9;;;25069:10;;;25066:36;;;25082:18;;:::i;25463:420::-;-1:-1:-1;;;;;25666:32:41;;;25648:51;;25735:32;;25730:2;25715:18;;25708:60;25804:2;25799;25784:18;;25777:30;;;-1:-1:-1;;25824:53:41;;25858:18;;25850:6;25824:53;:::i"},"methodIdentifiers":{"ADMIN_ROLE()":"75b238fc","PUBLIC_ROLE()":"3ca7c02a","addDeposit()":"4a58db19","canCall(address,address,bytes4)":"b7009613","cancel(address,address,bytes)":"d6bb62c6","consumeScheduledOp(address,bytes)":"94c7d7ee","entryPoint()":"b0d691fe","execute(address,bytes)":"1cff79cd","execute(address,uint256,bytes)":"b61d27f6","expiration()":"4665096d","getAccess(uint64,address)":"3078f114","getDeposit()":"c399ec88","getNonce()":"d087d288","getNonce(bytes32)":"4136a33c","getRoleAdmin(uint64)":"530dd456","getRoleGrantDelay(uint64)":"12be8727","getRoleGuardian(uint64)":"0b0a93ba","getSchedule(bytes32)":"3adc277a","getTargetAdminDelay(address)":"4c1da1e2","getTargetFunctionRole(address,bytes4)":"6d5115bd","grantRole(uint64,address,uint32)":"25c471a0","hasRole(uint64,address)":"d1f856ee","hashOperation(address,address,bytes)":"abd9bd2a","isTargetClosed(address)":"a166aa89","labelRole(uint64,string)":"853551b8","minSetback()":"cc1b6c81","multicall(bytes[])":"ac9650d8","renounceRole(uint64,address)":"fe0776f5","revokeRole(uint64,address)":"b7d2b162","schedule(address,bytes,uint48)":"f801a698","setGrantDelay(uint64,uint32)":"a64d95ce","setRoleAdmin(uint64,uint64)":"30cae187","setRoleGuardian(uint64,uint64)":"52962952","setTargetAdminDelay(address,uint32)":"d22b5989","setTargetClosed(address,bool)":"167bd395","setTargetFunctionRole(address,bytes4[],uint64)":"08d6122d","updateAuthority(address,address)":"18ff183c","validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)":"19822f7c","withdrawDepositTo(address,uint256)":"4d44560d"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IEntryPoint\",\"name\":\"anEntryPoint\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"initialAdmin\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerAlreadyScheduled\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"AccessManagerBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerExpired\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"initialAdmin\",\"type\":\"address\"}],\"name\":\"AccessManagerInvalidInitialAdmin\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"AccessManagerLockedRole\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerNotReady\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerNotScheduled\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"msgsender\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"AccessManagerUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"AccessManagerUnauthorizedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"msgsender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"AccessManagerUnauthorizedCancel\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AccessManagerUnauthorizedConsume\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"DelayNotAllowed\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"receivedSelector\",\"type\":\"bytes4\"}],\"name\":\"OnlyExecuteAllowedFromEntryPoint\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OnlyExternalTargets\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"name\":\"OperationCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"name\":\"OperationExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"schedule\",\"type\":\"uint48\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"OperationScheduled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"admin\",\"type\":\"uint64\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"}],\"name\":\"RoleGrantDelayChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"newMember\",\"type\":\"bool\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"guardian\",\"type\":\"uint64\"}],\"name\":\"RoleGuardianChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"label\",\"type\":\"string\"}],\"name\":\"RoleLabel\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"}],\"name\":\"TargetAdminDelayUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"closed\",\"type\":\"bool\"}],\"name\":\"TargetClosed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"TargetFunctionRoleUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PUBLIC_ROLE\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"addDeposit\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"canCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"immediate\",\"type\":\"bool\"},{\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"consumeScheduledOp\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"entryPoint\",\"outputs\":[{\"internalType\":\"contract IEntryPoint\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"dest\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"func\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"expiration\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getAccess\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"},{\"internalType\":\"uint32\",\"name\":\"currentDelay\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"pendingDelay\",\"type\":\"uint32\"},{\"internalType\":\"uint48\",\"name\":\"effect\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleGrantDelay\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleGuardian\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getSchedule\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"getTargetAdminDelay\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"getTargetFunctionRole\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"executionDelay\",\"type\":\"uint32\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"isMember\",\"type\":\"bool\"},{\"internalType\":\"uint32\",\"name\":\"executionDelay\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"hashOperation\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"isTargetClosed\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"string\",\"name\":\"label\",\"type\":\"string\"}],\"name\":\"labelRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"minSetback\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"multicall\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"results\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"uint48\",\"name\":\"when\",\"type\":\"uint48\"}],\"name\":\"schedule\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"newDelay\",\"type\":\"uint32\"}],\"name\":\"setGrantDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"admin\",\"type\":\"uint64\"}],\"name\":\"setRoleAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"guardian\",\"type\":\"uint64\"}],\"name\":\"setRoleGuardian\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"newDelay\",\"type\":\"uint32\"}],\"name\":\"setTargetAdminDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"closed\",\"type\":\"bool\"}],\"name\":\"setTargetClosed\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4[]\",\"name\":\"selectors\",\"type\":\"bytes4[]\"},{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"setTargetFunctionRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"newAuthority\",\"type\":\"address\"}],\"name\":\"updateAuthority\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation\",\"name\":\"userOp\",\"type\":\"tuple\"},{\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"missingAccountFunds\",\"type\":\"uint256\"}],\"name\":\"validateUserOp\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"validationData\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawDepositTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InsufficientBalance(uint256,uint256)\":[{\"details\":\"The ETH balance of the account is not enough to perform the operation.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}]},\"events\":{\"OperationCanceled(bytes32,uint32)\":{\"details\":\"A scheduled operation was canceled.\"},\"OperationExecuted(bytes32,uint32)\":{\"details\":\"A scheduled operation was executed.\"},\"OperationScheduled(bytes32,uint32,uint48,address,address,bytes)\":{\"details\":\"A delayed operation was scheduled.\"},\"RoleAdminChanged(uint64,uint64)\":{\"details\":\"Role acting as admin over a given `roleId` is updated.\"},\"RoleGrantDelayChanged(uint64,uint32,uint48)\":{\"details\":\"Grant delay for a given `roleId` will be updated to `delay` when `since` is reached.\"},\"RoleGranted(uint64,address,uint32,uint48,bool)\":{\"details\":\"Emitted when `account` is granted `roleId`. NOTE: The meaning of the `since` argument depends on the `newMember` argument. If the role is granted to a new member, the `since` argument indicates when the account becomes a member of the role, otherwise it indicates the execution delay for this account and roleId is updated.\"},\"RoleGuardianChanged(uint64,uint64)\":{\"details\":\"Role acting as guardian over a given `roleId` is updated.\"},\"RoleLabel(uint64,string)\":{\"details\":\"Informational labelling for a roleId.\"},\"RoleRevoked(uint64,address)\":{\"details\":\"Emitted when `account` membership or `roleId` is revoked. Unlike granting, revoking is instantaneous.\"},\"TargetAdminDelayUpdated(address,uint32,uint48)\":{\"details\":\"Admin delay for a given `target` will be updated to `delay` when `since` is reached.\"},\"TargetClosed(address,bool)\":{\"details\":\"Target mode is updated (true = closed, false = open).\"},\"TargetFunctionRoleUpdated(address,bytes4,uint64)\":{\"details\":\"Role required to invoke `selector` on `target` is updated to `roleId`.\"}},\"kind\":\"dev\",\"methods\":{\"canCall(address,address,bytes4)\":{\"details\":\"Check if an address (`caller`) is authorised to call a given function on a given contract directly (with no restriction). Additionally, it returns the delay needed to perform the call indirectly through the {schedule} & {execute} workflow. This function is usually called by the targeted contract to control immediate execution of restricted functions. Therefore we only return true if the call can be performed without any delay. If the call is subject to a previously set delay (not zero), then the function should return false and the caller should schedule the operation for future execution. If `immediate` is true, the delay can be disregarded and the operation can be immediately executed, otherwise the operation can be executed if and only if delay is greater than 0. NOTE: The IAuthority interface does not include the `uint32` delay. This is an extension of that interface that is backward compatible. Some contracts may thus ignore the second return argument. In that case they will fail to identify the indirect workflow, and will consider calls that require a delay to be forbidden. NOTE: This function does not report the permissions of the admin functions in the manager itself. These are defined by the {AccessManager} documentation.\"},\"cancel(address,address,bytes)\":{\"details\":\"Cancel a scheduled (delayed) operation. Returns the nonce that identifies the previously scheduled operation that is cancelled. Requirements: - the caller must be the proposer, a guardian of the targeted function, or a global admin Emits a {OperationCanceled} event.\"},\"consumeScheduledOp(address,bytes)\":{\"details\":\"Consume a scheduled operation targeting the caller. If such an operation exists, mark it as consumed (emit an {OperationExecuted} event and clean the state). Otherwise, throw an error. This is useful for contract that want to enforce that calls targeting them were scheduled on the manager, with all the verifications that it implies. Emit a {OperationExecuted} event.\"},\"execute(address,bytes)\":{\"details\":\"Execute a function that is delay restricted, provided it was properly scheduled beforehand, or the execution delay is 0. Returns the nonce that identifies the previously scheduled operation that is executed, or 0 if the operation wasn't previously scheduled (if the caller doesn't have an execution delay). Emits an {OperationExecuted} event only if the call was scheduled and delayed.\"},\"execute(address,uint256,bytes)\":{\"params\":{\"dest\":\"destination address to call\",\"func\":\"the calldata to pass in this call\",\"value\":\"the value to pass in this call\"}},\"expiration()\":{\"details\":\"Expiration delay for scheduled proposals. Defaults to 1 week. IMPORTANT: Avoid overriding the expiration with 0. Otherwise every contract proposal will be expired immediately, disabling any scheduling usage.\"},\"getAccess(uint64,address)\":{\"details\":\"Get the access details for a given account for a given role. These details include the timepoint at which membership becomes active, and the delay applied to all operation by this user that requires this permission level. Returns: [0] Timestamp at which the account membership becomes valid. 0 means role is not granted. [1] Current execution delay for the account. [2] Pending execution delay for the account. [3] Timestamp at which the pending execution delay will become active. 0 means no delay update is scheduled.\"},\"getNonce(bytes32)\":{\"details\":\"Return the nonce for the latest scheduled operation with a given id. Returns 0 if the operation has never been scheduled.\"},\"getRoleAdmin(uint64)\":{\"details\":\"Get the id of the role that acts as an admin for the given role. The admin permission is required to grant the role, revoke the role and update the execution delay to execute an operation that is restricted to this role.\"},\"getRoleGrantDelay(uint64)\":{\"details\":\"Get the role current grant delay. Its value may change at any point without an event emitted following a call to {setGrantDelay}. Changes to this value, including effect timepoint are notified in advance by the {RoleGrantDelayChanged} event.\"},\"getRoleGuardian(uint64)\":{\"details\":\"Get the role that acts as a guardian for a given role. The guardian permission allows canceling operations that have been scheduled under the role.\"},\"getSchedule(bytes32)\":{\"details\":\"Return the timepoint at which a scheduled operation will be ready for execution. This returns 0 if the operation is not yet scheduled, has expired, was executed, or was canceled.\"},\"getTargetAdminDelay(address)\":{\"details\":\"Get the admin delay for a target contract. Changes to contract configuration are subject to this delay.\"},\"getTargetFunctionRole(address,bytes4)\":{\"details\":\"Get the role required to call a function.\"},\"grantRole(uint64,address,uint32)\":{\"details\":\"Add `account` to `roleId`, or change its execution delay. This gives the account the authorization to call any function that is restricted to this role. An optional execution delay (in seconds) can be set. If that delay is non 0, the user is required to schedule any operation that is restricted to members of this role. The user will only be able to execute the operation after the delay has passed, before it has expired. During this period, admin and guardians can cancel the operation (see {cancel}). If the account has already been granted this role, the execution delay will be updated. This update is not immediate and follows the delay rules. For example, if a user currently has a delay of 3 hours, and this is called to reduce that delay to 1 hour, the new delay will take some time to take effect, enforcing that any operation executed in the 3 hours that follows this update was indeed scheduled before this update. Requirements: - the caller must be an admin for the role (see {getRoleAdmin}) - granted role must not be the `PUBLIC_ROLE` Emits a {RoleGranted} event.\"},\"hasRole(uint64,address)\":{\"details\":\"Check if a given account currently has the permission level corresponding to a given role. Note that this permission might be associated with an execution delay. {getAccess} can provide more details.\"},\"hashOperation(address,address,bytes)\":{\"details\":\"Hashing function for delayed operations.\"},\"isTargetClosed(address)\":{\"details\":\"Get whether the contract is closed disabling any access. Otherwise role permissions are applied. NOTE: When the manager itself is closed, admin functions are still accessible to avoid locking the contract.\"},\"labelRole(uint64,string)\":{\"details\":\"Give a label to a role, for improved role discoverability by UIs. Requirements: - the caller must be a global admin Emits a {RoleLabel} event.\"},\"minSetback()\":{\"details\":\"Minimum setback for all delay updates, with the exception of execution delays. It can be increased without setback (and reset via {revokeRole} in the case event of an accidental increase). Defaults to 5 days.\"},\"multicall(bytes[])\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Receives and executes a batch of function calls on this contract.\"},\"renounceRole(uint64,address)\":{\"details\":\"Renounce role permissions for the calling account with immediate effect. If the sender is not in the role this call has no effect. Requirements: - the caller must be `callerConfirmation`. Emits a {RoleRevoked} event if the account had the role.\"},\"revokeRole(uint64,address)\":{\"details\":\"Remove an account from a role, with immediate effect. If the account does not have the role, this call has no effect. Requirements: - the caller must be an admin for the role (see {getRoleAdmin}) - revoked role must not be the `PUBLIC_ROLE` Emits a {RoleRevoked} event if the account had the role.\"},\"schedule(address,bytes,uint48)\":{\"details\":\"Schedule a delayed operation for future execution, and return the operation identifier. It is possible to choose the timestamp at which the operation becomes executable as long as it satisfies the execution delays required for the caller. The special value zero will automatically set the earliest possible time. Returns the `operationId` that was scheduled. Since this value is a hash of the parameters, it can reoccur when the same parameters are used; if this is relevant, the returned `nonce` can be used to uniquely identify this scheduled operation from other occurrences of the same `operationId` in invocations of {execute} and {cancel}. Emits a {OperationScheduled} event. NOTE: It is not possible to concurrently schedule more than one operation with the same `target` and `data`. If this is necessary, a random byte can be appended to `data` to act as a salt that will be ignored by the target contract if it is using standard Solidity ABI encoding.\"},\"setGrantDelay(uint64,uint32)\":{\"details\":\"Update the delay for granting a `roleId`. Requirements: - the caller must be a global admin Emits a {RoleGrantDelayChanged} event.\"},\"setRoleAdmin(uint64,uint64)\":{\"details\":\"Change admin role for a given role. Requirements: - the caller must be a global admin Emits a {RoleAdminChanged} event\"},\"setRoleGuardian(uint64,uint64)\":{\"details\":\"Change guardian role for a given role. Requirements: - the caller must be a global admin Emits a {RoleGuardianChanged} event\"},\"setTargetAdminDelay(address,uint32)\":{\"details\":\"Set the delay for changing the configuration of a given target contract. Requirements: - the caller must be a global admin Emits a {TargetAdminDelayUpdated} event.\"},\"setTargetClosed(address,bool)\":{\"details\":\"Set the closed flag for a contract. Closing the manager itself won't disable access to admin methods to avoid locking the contract. Requirements: - the caller must be a global admin Emits a {TargetClosed} event.\"},\"setTargetFunctionRole(address,bytes4[],uint64)\":{\"details\":\"Set the role required to call functions identified by the `selectors` in the `target` contract. Requirements: - the caller must be a global admin Emits a {TargetFunctionRoleUpdated} event per selector.\"},\"updateAuthority(address,address)\":{\"details\":\"Changes the authority of a target managed by this manager instance. Requirements: - the caller must be a global admin\"},\"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"details\":\"Must validate caller is the entryPoint.      Must validate the signature and nonce\",\"params\":{\"missingAccountFunds\":\"- Missing funds on the account's deposit in the entrypoint.                              This is the minimum amount to transfer to the sender(entryPoint) to be                              able to make the call. The excess is left as a deposit in the entrypoint                              for future calls. Can be withdrawn anytime using \\\"entryPoint.withdrawTo()\\\".                              In case there is a paymaster in the request (or the current deposit is high                              enough), this value will be zero.\",\"userOp\":\"- The operation that is about to be executed.\",\"userOpHash\":\"- Hash of the user's request data. can be used as the basis for signature.\"},\"returns\":{\"validationData\":\"      - Packaged ValidationData structure. use `_packValidationData` and                              `_unpackValidationData` to encode and decode.                              <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,                                 otherwise, an address of an \\\"authorizer\\\" contract.                              <6-byte> validUntil - Last timestamp this operation is valid. 0 for \\\"indefinite\\\"                              <6-byte> validAfter - First timestamp this operation is valid                                                    If an account doesn't use time-range, it is enough to                                                    return SIG_VALIDATION_FAILED value (1) for signature failure.                              Note that the validation code cannot use block.timestamp (or block.number) directly.\"}},\"withdrawDepositTo(address,uint256)\":{\"params\":{\"amount\":\"to withdraw\",\"withdrawAddress\":\"target to send to\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"addDeposit()\":{\"notice\":\"deposit more funds for this account in the entryPoint\"},\"entryPoint()\":{\"notice\":\"Return the entryPoint used by this account. Subclass should return the current entryPoint used by this account.\"},\"execute(address,uint256,bytes)\":{\"notice\":\"execute a transaction (called directly from owner, or by entryPoint)\"},\"getDeposit()\":{\"notice\":\"check current account deposit in the entryPoint\"},\"getNonce()\":{\"notice\":\"Return the account nonce. This method returns the next sequential nonce. For a nonce of a specific key, use `entrypoint.getNonce(account, key)`\"},\"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"notice\":\"Validate user's signature and nonce the entryPoint will make the call to the recipient only if this validation call returns successfully. signature failure should be reported by returning SIG_VALIDATION_FAILED (1). This allows making a \\\"simulation call\\\" without a valid signature Other failures (e.g. nonce mismatch, or invalid signature format) should still revert to signal failure.\"},\"withdrawDepositTo(address,uint256)\":{\"notice\":\"withdraw value from the account's deposit\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/AccessManagerAccount.sol\":\"AccessManagerAccount\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/core/BaseAccount.sol\":{\"keccak256\":\"0x2736272f077d1699b8b8bf8be18d1c20e506668fc52b3293da70d17e63794358\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://35744475cf48405d7fd6edf6a96c84ef9da3ce844d8dfe3e2e1ffc30edf21d07\",\"dweb:/ipfs/QmUdau9VjVQ7iuRbdTmFSrXP7Hcasd9Cc57LP9thK78bwj\"]},\"@account-abstraction/contracts/core/Helpers.sol\":{\"keccak256\":\"0x6247e011a6cb0b263b3aa098822977181674d91b62e5bdfe04c6e66f72da25d6\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://ca829a69b3fbc74fec8e140d42a2bf93bc3512609272f031c846470f61f0ab7e\",\"dweb:/ipfs/QmP3r3MBgAN39KeVB1rCGJWwcBcotNt26ALtAR54poQ1Jc\"]},\"@account-abstraction/contracts/core/UserOperationLib.sol\":{\"keccak256\":\"0x9d50ece985d35f82e33e5da417595c86fac10449e3d10895d08363d33aad454b\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://b1d11cc364c8bf7ed5388268c895b5ffed16e87dfbcb320ddeeba5e7974315dc\",\"dweb:/ipfs/QmYSpvjxEjweietQrYZagwQ52ipy7eXx4rwvnTzXKeGeMS\"]},\"@account-abstraction/contracts/interfaces/IAccount.sol\":{\"keccak256\":\"0x38710bec0cb20ff4ceef46a80475b5bdabc27b7efd2687fd473db68332f61b78\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://dea7a723e1ef852e8764e69914a345d2e8bc5e13facfc9d5c29d791cb4ab0020\",\"dweb:/ipfs/QmU8dYgyF4DBJXFqjwLAtnE3q8q259ChfoEk9a6wyhHzEP\"]},\"@account-abstraction/contracts/interfaces/IAggregator.sol\":{\"keccak256\":\"0xf100d6fcc0c3b450b13e979b6a42c628c292a1bc340eccc2e7796b80e3975588\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://192938b5b27234d35c8098a319e879363c79f750eea4d0e409dc889a8ce5b155\",\"dweb:/ipfs/QmURpaJFPqEtkKP2ngBsgZhAGN8wAWh5XQpYmCkiz4Urz5\"]},\"@account-abstraction/contracts/interfaces/IEntryPoint.sol\":{\"keccak256\":\"0x1972a5fcb3a808b58c85af5741949ef6af11ab0debd3ae8c708171ae1ae0d0c4\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://baa9837ae73b9e2362a47d42d081d7c0f3d8e878e5edb381117d94a6968949c9\",\"dweb:/ipfs/QmUmo6FUE7fv5z1WzW1YFjxp8PqaeN2JrEee9au59w3Xhe\"]},\"@account-abstraction/contracts/interfaces/INonceManager.sol\":{\"keccak256\":\"0xd575af0f6ebbd5f0b2933307d44cd7b4e03a69f4b817a67db5409bd3c89aeecb\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://3b1e2dea9b05cfba9d13339ed16d96457dc861013cc4f3f35b71a80f82448db3\",\"dweb:/ipfs/QmVaGy5uGDMSiU2SzyokTjoHFyb39VVG5wtaM9KTnHyZSk\"]},\"@account-abstraction/contracts/interfaces/IStakeManager.sol\":{\"keccak256\":\"0xbe5ca9e7f254d031687419e7b96ef48c9c63e9398bbe992dc72ffc6dc14e0a04\",\"license\":\"GPL-3.0-only\",\"urls\":[\"bzz-raw://1fffec71c38627a26fabb423350148009579f092623fb02b471a12d973763a00\",\"dweb:/ipfs/QmRBi31QEYXHj3x1AnQ2jKa2eziZH1b9av396P3b4dw6bj\"]},\"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\":{\"keccak256\":\"0x1129b46381db68eddbc5cb49e50664667b66b03c480453858e7b25eabe444359\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://499a948aba60480dba6e25c763b8d918f1c246eb7a3302e04f493e080f3295be\",\"dweb:/ipfs/QmeRhhswf4NACcBKam2PyjpTP2ddSm648kah5kkQJsvwz3\"]},\"@openzeppelin/contracts/access/manager/IAccessManaged.sol\":{\"keccak256\":\"0xaba93d42cd70e1418782951132d97b31ddce5f50ad81090884b6d0e41caac9d6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b110886f83e3e98a11255a3b56790322e8d83e513304dde71299406685fc6694\",\"dweb:/ipfs/QmPwroS7MUUk1EmsvaJqU6aarhQ8ewJtJMg7xxmTsaxZEv\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x9be2d08a326515805bc9cf6315b7953f8d1ebe88abf48c2d645fb1fa8211a0e2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e750d656e37efaefbb2300051ec2c4c725db266c5ff89bc985f7ecb8d214c4f4\",\"dweb:/ipfs/QmT51FsZes2n2nrLLh3d8YkBYKY43CtwScZxixcLGzL9r6\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Multicall.sol\":{\"keccak256\":\"0x8bbd8e639a2845206c2525c3e41892232a78372d952974bc1d2809b6879f6946\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c92f1b562e8603218d97751af56733d2f695f16da82389d53139d5e63496a45\",\"dweb:/ipfs/QmRiVMRTFjYBHDt5mN4E6TMotiE28XgWxEBPGewp5GTZ9X\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]},\"contracts/AccessManagerAccount.sol\":{\"keccak256\":\"0x001e1c92947f710e9e1d483811af03d7c051fd1e992218adab58788d8d0dacfc\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://eb03da3a0b26ec2b7baa964d90ecab842ef81c1836e3423536bd73e4976776ed\",\"dweb:/ipfs/QmXi48a7mpUdstHt9K9wgZdHCvE1jMAkf2b7dRTmqeKPwe\"]},\"contracts/dependencies/AccessManager.sol\":{\"keccak256\":\"0xf67b9fbba3035030e316ce9543e349c5d2145a20c3d9352171c1d517604d4263\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://53796c73c747cf85284e4f7fd9535c88f6a40e445da9c45ec7716a45f0ba7e20\",\"dweb:/ipfs/QmXScvnWyA8Jk66wLTZYFghjqUcnkeZb1BiwDJK21hgrVM\"]},\"contracts/dependencies/FrozenTime.sol\":{\"keccak256\":\"0xac148e2e77be26575d12aa3926fd621e0c13aa382e7d2b947678725928cb1a37\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://36bdf28e316fd40dc6a4327758bc18f3231e5deb379b53d9d251c313e758e0f2\",\"dweb:/ipfs/QmXhXDZDL4tTGgiorXwZKAD6LVYsBhkNFx8aGHToNXVbfX\"]},\"solidity-bytes-utils/contracts/BytesLib.sol\":{\"keccak256\":\"0xf75784dfc94ea43668eb195d5690a1dde1b6eda62017e73a3899721583821d29\",\"license\":\"Unlicense\",\"urls\":[\"bzz-raw://ca16cef8b94f3ac75d376489a668618f6c4595a906b939d674a883f4bf426014\",\"dweb:/ipfs/QmceGU7qhyFLSejaj6i4dEtMzXDCSF3aYDtW1UeKjXQaRn\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":9975,"contract":"contracts/AccessManagerAccount.sol:AccessManagerAccount","label":"_targets","offset":0,"slot":"0","type":"t_mapping(t_address,t_struct(TargetConfig)9930_storage)"},{"astId":9980,"contract":"contracts/AccessManagerAccount.sol:AccessManagerAccount","label":"_roles","offset":0,"slot":"1","type":"t_mapping(t_uint64,t_struct(Role)9949_storage)"},{"astId":9985,"contract":"contracts/AccessManagerAccount.sol:AccessManagerAccount","label":"_schedules","offset":0,"slot":"2","type":"t_mapping(t_bytes32,t_struct(Schedule)9954_storage)"},{"astId":9987,"contract":"contracts/AccessManagerAccount.sol:AccessManagerAccount","label":"_executionId","offset":0,"slot":"3","type":"t_bytes32"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_bytes4":{"encoding":"inplace","label":"bytes4","numberOfBytes":"4"},"t_mapping(t_address,t_struct(Access)9936_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct AccessManager.Access)","numberOfBytes":"32","value":"t_struct(Access)9936_storage"},"t_mapping(t_address,t_struct(TargetConfig)9930_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct AccessManager.TargetConfig)","numberOfBytes":"32","value":"t_struct(TargetConfig)9930_storage"},"t_mapping(t_bytes32,t_struct(Schedule)9954_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct AccessManager.Schedule)","numberOfBytes":"32","value":"t_struct(Schedule)9954_storage"},"t_mapping(t_bytes4,t_uint64)":{"encoding":"mapping","key":"t_bytes4","label":"mapping(bytes4 => uint64)","numberOfBytes":"32","value":"t_uint64"},"t_mapping(t_uint64,t_struct(Role)9949_storage)":{"encoding":"mapping","key":"t_uint64","label":"mapping(uint64 => struct AccessManager.Role)","numberOfBytes":"32","value":"t_struct(Role)9949_storage"},"t_struct(Access)9936_storage":{"encoding":"inplace","label":"struct AccessManager.Access","members":[{"astId":9932,"contract":"contracts/AccessManagerAccount.sol:AccessManagerAccount","label":"since","offset":0,"slot":"0","type":"t_uint48"},{"astId":9935,"contract":"contracts/AccessManagerAccount.sol:AccessManagerAccount","label":"delay","offset":6,"slot":"0","type":"t_userDefinedValueType(Delay)8469"}],"numberOfBytes":"32"},"t_struct(Role)9949_storage":{"encoding":"inplace","label":"struct AccessManager.Role","members":[{"astId":9941,"contract":"contracts/AccessManagerAccount.sol:AccessManagerAccount","label":"members","offset":0,"slot":"0","type":"t_mapping(t_address,t_struct(Access)9936_storage)"},{"astId":9943,"contract":"contracts/AccessManagerAccount.sol:AccessManagerAccount","label":"admin","offset":0,"slot":"1","type":"t_uint64"},{"astId":9945,"contract":"contracts/AccessManagerAccount.sol:AccessManagerAccount","label":"guardian","offset":8,"slot":"1","type":"t_uint64"},{"astId":9948,"contract":"contracts/AccessManagerAccount.sol:AccessManagerAccount","label":"grantDelay","offset":16,"slot":"1","type":"t_userDefinedValueType(Delay)8469"}],"numberOfBytes":"64"},"t_struct(Schedule)9954_storage":{"encoding":"inplace","label":"struct AccessManager.Schedule","members":[{"astId":9951,"contract":"contracts/AccessManagerAccount.sol:AccessManagerAccount","label":"timepoint","offset":0,"slot":"0","type":"t_uint48"},{"astId":9953,"contract":"contracts/AccessManagerAccount.sol:AccessManagerAccount","label":"nonce","offset":6,"slot":"0","type":"t_uint32"}],"numberOfBytes":"32"},"t_struct(TargetConfig)9930_storage":{"encoding":"inplace","label":"struct AccessManager.TargetConfig","members":[{"astId":9924,"contract":"contracts/AccessManagerAccount.sol:AccessManagerAccount","label":"allowedRoles","offset":0,"slot":"0","type":"t_mapping(t_bytes4,t_uint64)"},{"astId":9927,"contract":"contracts/AccessManagerAccount.sol:AccessManagerAccount","label":"adminDelay","offset":0,"slot":"1","type":"t_userDefinedValueType(Delay)8469"},{"astId":9929,"contract":"contracts/AccessManagerAccount.sol:AccessManagerAccount","label":"closed","offset":14,"slot":"1","type":"t_bool"}],"numberOfBytes":"64"},"t_uint32":{"encoding":"inplace","label":"uint32","numberOfBytes":"4"},"t_uint48":{"encoding":"inplace","label":"uint48","numberOfBytes":"6"},"t_uint64":{"encoding":"inplace","label":"uint64","numberOfBytes":"8"},"t_userDefinedValueType(Delay)8469":{"encoding":"inplace","label":"Time.Delay","numberOfBytes":"14"}}}}},"contracts/ERC2771ForwarderAccount.sol":{"ERC2771ForwarderAccount":{"abi":[{"inputs":[{"internalType":"contract IEntryPoint","name":"anEntryPoint","type":"address"},{"internalType":"address","name":"admin","type":"address"},{"internalType":"address[]","name":"executors","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"CanCallOnlyIfTrustedForwarder","type":"error"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"RequiredEntryPointOrExecutor","type":"error"},{"inputs":[],"name":"UserOpSignerNotSet","type":"error"},{"inputs":[],"name":"WrongArrayLength","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXECUTOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAW_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addDeposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"entryPoint","outputs":[{"internalType":"contract IEntryPoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dest","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"func","type":"bytes"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"dest","type":"address[]"},{"internalType":"uint256[]","name":"value","type":"uint256[]"},{"internalType":"bytes[]","name":"func","type":"bytes[]"}],"name":"executeBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation","name":"userOp","type":"tuple"},{"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"internalType":"uint256","name":"missingAccountFunds","type":"uint256"}],"name":"validateUserOp","outputs":[{"internalType":"uint256","name":"validationData","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawDepositTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"@_9553":{"entryPoint":null,"id":9553,"parameterSlots":3,"returnSlots":0},"@_grantRole_1311":{"entryPoint":172,"id":1311,"parameterSlots":2,"returnSlots":1},"@_msgSender_3080":{"entryPoint":null,"id":3080,"parameterSlots":0,"returnSlots":1},"@hasRole_1135":{"entryPoint":null,"id":1135,"parameterSlots":2,"returnSlots":1},"abi_decode_address_fromMemory":{"entryPoint":364,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_contract$_IEntryPoint_$909t_addresst_array$_t_address_$dyn_memory_ptr_fromMemory":{"entryPoint":400,"id":null,"parameterSlots":2,"returnSlots":3},"panic_error_0x32":{"entryPoint":642,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":380,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_contract_IEntryPoint":{"entryPoint":341,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:2027:41","nodeType":"YulBlock","src":"0:2027:41","statements":[{"nativeSrc":"6:3:41","nodeType":"YulBlock","src":"6:3:41","statements":[]},{"body":{"nativeSrc":"72:86:41","nodeType":"YulBlock","src":"72:86:41","statements":[{"body":{"nativeSrc":"136:16:41","nodeType":"YulBlock","src":"136:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"145:1:41","nodeType":"YulLiteral","src":"145:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"148:1:41","nodeType":"YulLiteral","src":"148:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"138:6:41","nodeType":"YulIdentifier","src":"138:6:41"},"nativeSrc":"138:12:41","nodeType":"YulFunctionCall","src":"138:12:41"},"nativeSrc":"138:12:41","nodeType":"YulExpressionStatement","src":"138:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"95:5:41","nodeType":"YulIdentifier","src":"95:5:41"},{"arguments":[{"name":"value","nativeSrc":"106:5:41","nodeType":"YulIdentifier","src":"106:5:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"121:3:41","nodeType":"YulLiteral","src":"121:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"126:1:41","nodeType":"YulLiteral","src":"126:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"117:3:41","nodeType":"YulIdentifier","src":"117:3:41"},"nativeSrc":"117:11:41","nodeType":"YulFunctionCall","src":"117:11:41"},{"kind":"number","nativeSrc":"130:1:41","nodeType":"YulLiteral","src":"130:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"113:3:41","nodeType":"YulIdentifier","src":"113:3:41"},"nativeSrc":"113:19:41","nodeType":"YulFunctionCall","src":"113:19:41"}],"functionName":{"name":"and","nativeSrc":"102:3:41","nodeType":"YulIdentifier","src":"102:3:41"},"nativeSrc":"102:31:41","nodeType":"YulFunctionCall","src":"102:31:41"}],"functionName":{"name":"eq","nativeSrc":"92:2:41","nodeType":"YulIdentifier","src":"92:2:41"},"nativeSrc":"92:42:41","nodeType":"YulFunctionCall","src":"92:42:41"}],"functionName":{"name":"iszero","nativeSrc":"85:6:41","nodeType":"YulIdentifier","src":"85:6:41"},"nativeSrc":"85:50:41","nodeType":"YulFunctionCall","src":"85:50:41"},"nativeSrc":"82:70:41","nodeType":"YulIf","src":"82:70:41"}]},"name":"validator_revert_contract_IEntryPoint","nativeSrc":"14:144:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"61:5:41","nodeType":"YulTypedName","src":"61:5:41","type":""}],"src":"14:144:41"},{"body":{"nativeSrc":"223:91:41","nodeType":"YulBlock","src":"223:91:41","statements":[{"nativeSrc":"233:22:41","nodeType":"YulAssignment","src":"233:22:41","value":{"arguments":[{"name":"offset","nativeSrc":"248:6:41","nodeType":"YulIdentifier","src":"248:6:41"}],"functionName":{"name":"mload","nativeSrc":"242:5:41","nodeType":"YulIdentifier","src":"242:5:41"},"nativeSrc":"242:13:41","nodeType":"YulFunctionCall","src":"242:13:41"},"variableNames":[{"name":"value","nativeSrc":"233:5:41","nodeType":"YulIdentifier","src":"233:5:41"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"302:5:41","nodeType":"YulIdentifier","src":"302:5:41"}],"functionName":{"name":"validator_revert_contract_IEntryPoint","nativeSrc":"264:37:41","nodeType":"YulIdentifier","src":"264:37:41"},"nativeSrc":"264:44:41","nodeType":"YulFunctionCall","src":"264:44:41"},"nativeSrc":"264:44:41","nodeType":"YulExpressionStatement","src":"264:44:41"}]},"name":"abi_decode_address_fromMemory","nativeSrc":"163:151:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"202:6:41","nodeType":"YulTypedName","src":"202:6:41","type":""}],"returnVariables":[{"name":"value","nativeSrc":"213:5:41","nodeType":"YulTypedName","src":"213:5:41","type":""}],"src":"163:151:41"},{"body":{"nativeSrc":"351:95:41","nodeType":"YulBlock","src":"351:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"368:1:41","nodeType":"YulLiteral","src":"368:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"375:3:41","nodeType":"YulLiteral","src":"375:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"380:10:41","nodeType":"YulLiteral","src":"380:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"371:3:41","nodeType":"YulIdentifier","src":"371:3:41"},"nativeSrc":"371:20:41","nodeType":"YulFunctionCall","src":"371:20:41"}],"functionName":{"name":"mstore","nativeSrc":"361:6:41","nodeType":"YulIdentifier","src":"361:6:41"},"nativeSrc":"361:31:41","nodeType":"YulFunctionCall","src":"361:31:41"},"nativeSrc":"361:31:41","nodeType":"YulExpressionStatement","src":"361:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"408:1:41","nodeType":"YulLiteral","src":"408:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"411:4:41","nodeType":"YulLiteral","src":"411:4:41","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"401:6:41","nodeType":"YulIdentifier","src":"401:6:41"},"nativeSrc":"401:15:41","nodeType":"YulFunctionCall","src":"401:15:41"},"nativeSrc":"401:15:41","nodeType":"YulExpressionStatement","src":"401:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"432:1:41","nodeType":"YulLiteral","src":"432:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"435:4:41","nodeType":"YulLiteral","src":"435:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"425:6:41","nodeType":"YulIdentifier","src":"425:6:41"},"nativeSrc":"425:15:41","nodeType":"YulFunctionCall","src":"425:15:41"},"nativeSrc":"425:15:41","nodeType":"YulExpressionStatement","src":"425:15:41"}]},"name":"panic_error_0x41","nativeSrc":"319:127:41","nodeType":"YulFunctionDefinition","src":"319:127:41"},{"body":{"nativeSrc":"610:1283:41","nodeType":"YulBlock","src":"610:1283:41","statements":[{"body":{"nativeSrc":"656:16:41","nodeType":"YulBlock","src":"656:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"665:1:41","nodeType":"YulLiteral","src":"665:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"668:1:41","nodeType":"YulLiteral","src":"668:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"658:6:41","nodeType":"YulIdentifier","src":"658:6:41"},"nativeSrc":"658:12:41","nodeType":"YulFunctionCall","src":"658:12:41"},"nativeSrc":"658:12:41","nodeType":"YulExpressionStatement","src":"658:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"631:7:41","nodeType":"YulIdentifier","src":"631:7:41"},{"name":"headStart","nativeSrc":"640:9:41","nodeType":"YulIdentifier","src":"640:9:41"}],"functionName":{"name":"sub","nativeSrc":"627:3:41","nodeType":"YulIdentifier","src":"627:3:41"},"nativeSrc":"627:23:41","nodeType":"YulFunctionCall","src":"627:23:41"},{"kind":"number","nativeSrc":"652:2:41","nodeType":"YulLiteral","src":"652:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"623:3:41","nodeType":"YulIdentifier","src":"623:3:41"},"nativeSrc":"623:32:41","nodeType":"YulFunctionCall","src":"623:32:41"},"nativeSrc":"620:52:41","nodeType":"YulIf","src":"620:52:41"},{"nativeSrc":"681:29:41","nodeType":"YulVariableDeclaration","src":"681:29:41","value":{"arguments":[{"name":"headStart","nativeSrc":"700:9:41","nodeType":"YulIdentifier","src":"700:9:41"}],"functionName":{"name":"mload","nativeSrc":"694:5:41","nodeType":"YulIdentifier","src":"694:5:41"},"nativeSrc":"694:16:41","nodeType":"YulFunctionCall","src":"694:16:41"},"variables":[{"name":"value","nativeSrc":"685:5:41","nodeType":"YulTypedName","src":"685:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"757:5:41","nodeType":"YulIdentifier","src":"757:5:41"}],"functionName":{"name":"validator_revert_contract_IEntryPoint","nativeSrc":"719:37:41","nodeType":"YulIdentifier","src":"719:37:41"},"nativeSrc":"719:44:41","nodeType":"YulFunctionCall","src":"719:44:41"},"nativeSrc":"719:44:41","nodeType":"YulExpressionStatement","src":"719:44:41"},{"nativeSrc":"772:15:41","nodeType":"YulAssignment","src":"772:15:41","value":{"name":"value","nativeSrc":"782:5:41","nodeType":"YulIdentifier","src":"782:5:41"},"variableNames":[{"name":"value0","nativeSrc":"772:6:41","nodeType":"YulIdentifier","src":"772:6:41"}]},{"nativeSrc":"796:40:41","nodeType":"YulVariableDeclaration","src":"796:40:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"821:9:41","nodeType":"YulIdentifier","src":"821:9:41"},{"kind":"number","nativeSrc":"832:2:41","nodeType":"YulLiteral","src":"832:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"817:3:41","nodeType":"YulIdentifier","src":"817:3:41"},"nativeSrc":"817:18:41","nodeType":"YulFunctionCall","src":"817:18:41"}],"functionName":{"name":"mload","nativeSrc":"811:5:41","nodeType":"YulIdentifier","src":"811:5:41"},"nativeSrc":"811:25:41","nodeType":"YulFunctionCall","src":"811:25:41"},"variables":[{"name":"value_1","nativeSrc":"800:7:41","nodeType":"YulTypedName","src":"800:7:41","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"883:7:41","nodeType":"YulIdentifier","src":"883:7:41"}],"functionName":{"name":"validator_revert_contract_IEntryPoint","nativeSrc":"845:37:41","nodeType":"YulIdentifier","src":"845:37:41"},"nativeSrc":"845:46:41","nodeType":"YulFunctionCall","src":"845:46:41"},"nativeSrc":"845:46:41","nodeType":"YulExpressionStatement","src":"845:46:41"},{"nativeSrc":"900:17:41","nodeType":"YulAssignment","src":"900:17:41","value":{"name":"value_1","nativeSrc":"910:7:41","nodeType":"YulIdentifier","src":"910:7:41"},"variableNames":[{"name":"value1","nativeSrc":"900:6:41","nodeType":"YulIdentifier","src":"900:6:41"}]},{"nativeSrc":"926:39:41","nodeType":"YulVariableDeclaration","src":"926:39:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"950:9:41","nodeType":"YulIdentifier","src":"950:9:41"},{"kind":"number","nativeSrc":"961:2:41","nodeType":"YulLiteral","src":"961:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"946:3:41","nodeType":"YulIdentifier","src":"946:3:41"},"nativeSrc":"946:18:41","nodeType":"YulFunctionCall","src":"946:18:41"}],"functionName":{"name":"mload","nativeSrc":"940:5:41","nodeType":"YulIdentifier","src":"940:5:41"},"nativeSrc":"940:25:41","nodeType":"YulFunctionCall","src":"940:25:41"},"variables":[{"name":"offset","nativeSrc":"930:6:41","nodeType":"YulTypedName","src":"930:6:41","type":""}]},{"body":{"nativeSrc":"1008:16:41","nodeType":"YulBlock","src":"1008:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1017:1:41","nodeType":"YulLiteral","src":"1017:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1020:1:41","nodeType":"YulLiteral","src":"1020:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1010:6:41","nodeType":"YulIdentifier","src":"1010:6:41"},"nativeSrc":"1010:12:41","nodeType":"YulFunctionCall","src":"1010:12:41"},"nativeSrc":"1010:12:41","nodeType":"YulExpressionStatement","src":"1010:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"980:6:41","nodeType":"YulIdentifier","src":"980:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"996:2:41","nodeType":"YulLiteral","src":"996:2:41","type":"","value":"64"},{"kind":"number","nativeSrc":"1000:1:41","nodeType":"YulLiteral","src":"1000:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"992:3:41","nodeType":"YulIdentifier","src":"992:3:41"},"nativeSrc":"992:10:41","nodeType":"YulFunctionCall","src":"992:10:41"},{"kind":"number","nativeSrc":"1004:1:41","nodeType":"YulLiteral","src":"1004:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"988:3:41","nodeType":"YulIdentifier","src":"988:3:41"},"nativeSrc":"988:18:41","nodeType":"YulFunctionCall","src":"988:18:41"}],"functionName":{"name":"gt","nativeSrc":"977:2:41","nodeType":"YulIdentifier","src":"977:2:41"},"nativeSrc":"977:30:41","nodeType":"YulFunctionCall","src":"977:30:41"},"nativeSrc":"974:50:41","nodeType":"YulIf","src":"974:50:41"},{"nativeSrc":"1033:32:41","nodeType":"YulVariableDeclaration","src":"1033:32:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1047:9:41","nodeType":"YulIdentifier","src":"1047:9:41"},{"name":"offset","nativeSrc":"1058:6:41","nodeType":"YulIdentifier","src":"1058:6:41"}],"functionName":{"name":"add","nativeSrc":"1043:3:41","nodeType":"YulIdentifier","src":"1043:3:41"},"nativeSrc":"1043:22:41","nodeType":"YulFunctionCall","src":"1043:22:41"},"variables":[{"name":"_1","nativeSrc":"1037:2:41","nodeType":"YulTypedName","src":"1037:2:41","type":""}]},{"body":{"nativeSrc":"1113:16:41","nodeType":"YulBlock","src":"1113:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1122:1:41","nodeType":"YulLiteral","src":"1122:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1125:1:41","nodeType":"YulLiteral","src":"1125:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1115:6:41","nodeType":"YulIdentifier","src":"1115:6:41"},"nativeSrc":"1115:12:41","nodeType":"YulFunctionCall","src":"1115:12:41"},"nativeSrc":"1115:12:41","nodeType":"YulExpressionStatement","src":"1115:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1092:2:41","nodeType":"YulIdentifier","src":"1092:2:41"},{"kind":"number","nativeSrc":"1096:4:41","nodeType":"YulLiteral","src":"1096:4:41","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"1088:3:41","nodeType":"YulIdentifier","src":"1088:3:41"},"nativeSrc":"1088:13:41","nodeType":"YulFunctionCall","src":"1088:13:41"},{"name":"dataEnd","nativeSrc":"1103:7:41","nodeType":"YulIdentifier","src":"1103:7:41"}],"functionName":{"name":"slt","nativeSrc":"1084:3:41","nodeType":"YulIdentifier","src":"1084:3:41"},"nativeSrc":"1084:27:41","nodeType":"YulFunctionCall","src":"1084:27:41"}],"functionName":{"name":"iszero","nativeSrc":"1077:6:41","nodeType":"YulIdentifier","src":"1077:6:41"},"nativeSrc":"1077:35:41","nodeType":"YulFunctionCall","src":"1077:35:41"},"nativeSrc":"1074:55:41","nodeType":"YulIf","src":"1074:55:41"},{"nativeSrc":"1138:23:41","nodeType":"YulVariableDeclaration","src":"1138:23:41","value":{"arguments":[{"name":"_1","nativeSrc":"1158:2:41","nodeType":"YulIdentifier","src":"1158:2:41"}],"functionName":{"name":"mload","nativeSrc":"1152:5:41","nodeType":"YulIdentifier","src":"1152:5:41"},"nativeSrc":"1152:9:41","nodeType":"YulFunctionCall","src":"1152:9:41"},"variables":[{"name":"length","nativeSrc":"1142:6:41","nodeType":"YulTypedName","src":"1142:6:41","type":""}]},{"body":{"nativeSrc":"1204:22:41","nodeType":"YulBlock","src":"1204:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1206:16:41","nodeType":"YulIdentifier","src":"1206:16:41"},"nativeSrc":"1206:18:41","nodeType":"YulFunctionCall","src":"1206:18:41"},"nativeSrc":"1206:18:41","nodeType":"YulExpressionStatement","src":"1206:18:41"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1176:6:41","nodeType":"YulIdentifier","src":"1176:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1192:2:41","nodeType":"YulLiteral","src":"1192:2:41","type":"","value":"64"},{"kind":"number","nativeSrc":"1196:1:41","nodeType":"YulLiteral","src":"1196:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1188:3:41","nodeType":"YulIdentifier","src":"1188:3:41"},"nativeSrc":"1188:10:41","nodeType":"YulFunctionCall","src":"1188:10:41"},{"kind":"number","nativeSrc":"1200:1:41","nodeType":"YulLiteral","src":"1200:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1184:3:41","nodeType":"YulIdentifier","src":"1184:3:41"},"nativeSrc":"1184:18:41","nodeType":"YulFunctionCall","src":"1184:18:41"}],"functionName":{"name":"gt","nativeSrc":"1173:2:41","nodeType":"YulIdentifier","src":"1173:2:41"},"nativeSrc":"1173:30:41","nodeType":"YulFunctionCall","src":"1173:30:41"},"nativeSrc":"1170:56:41","nodeType":"YulIf","src":"1170:56:41"},{"nativeSrc":"1235:24:41","nodeType":"YulVariableDeclaration","src":"1235:24:41","value":{"arguments":[{"kind":"number","nativeSrc":"1249:1:41","nodeType":"YulLiteral","src":"1249:1:41","type":"","value":"5"},{"name":"length","nativeSrc":"1252:6:41","nodeType":"YulIdentifier","src":"1252:6:41"}],"functionName":{"name":"shl","nativeSrc":"1245:3:41","nodeType":"YulIdentifier","src":"1245:3:41"},"nativeSrc":"1245:14:41","nodeType":"YulFunctionCall","src":"1245:14:41"},"variables":[{"name":"_2","nativeSrc":"1239:2:41","nodeType":"YulTypedName","src":"1239:2:41","type":""}]},{"nativeSrc":"1268:23:41","nodeType":"YulVariableDeclaration","src":"1268:23:41","value":{"arguments":[{"kind":"number","nativeSrc":"1288:2:41","nodeType":"YulLiteral","src":"1288:2:41","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1282:5:41","nodeType":"YulIdentifier","src":"1282:5:41"},"nativeSrc":"1282:9:41","nodeType":"YulFunctionCall","src":"1282:9:41"},"variables":[{"name":"memPtr","nativeSrc":"1272:6:41","nodeType":"YulTypedName","src":"1272:6:41","type":""}]},{"nativeSrc":"1300:56:41","nodeType":"YulVariableDeclaration","src":"1300:56:41","value":{"arguments":[{"name":"memPtr","nativeSrc":"1322:6:41","nodeType":"YulIdentifier","src":"1322:6:41"},{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"1338:2:41","nodeType":"YulIdentifier","src":"1338:2:41"},{"kind":"number","nativeSrc":"1342:2:41","nodeType":"YulLiteral","src":"1342:2:41","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"1334:3:41","nodeType":"YulIdentifier","src":"1334:3:41"},"nativeSrc":"1334:11:41","nodeType":"YulFunctionCall","src":"1334:11:41"},{"arguments":[{"kind":"number","nativeSrc":"1351:2:41","nodeType":"YulLiteral","src":"1351:2:41","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1347:3:41","nodeType":"YulIdentifier","src":"1347:3:41"},"nativeSrc":"1347:7:41","nodeType":"YulFunctionCall","src":"1347:7:41"}],"functionName":{"name":"and","nativeSrc":"1330:3:41","nodeType":"YulIdentifier","src":"1330:3:41"},"nativeSrc":"1330:25:41","nodeType":"YulFunctionCall","src":"1330:25:41"}],"functionName":{"name":"add","nativeSrc":"1318:3:41","nodeType":"YulIdentifier","src":"1318:3:41"},"nativeSrc":"1318:38:41","nodeType":"YulFunctionCall","src":"1318:38:41"},"variables":[{"name":"newFreePtr","nativeSrc":"1304:10:41","nodeType":"YulTypedName","src":"1304:10:41","type":""}]},{"body":{"nativeSrc":"1431:22:41","nodeType":"YulBlock","src":"1431:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1433:16:41","nodeType":"YulIdentifier","src":"1433:16:41"},"nativeSrc":"1433:18:41","nodeType":"YulFunctionCall","src":"1433:18:41"},"nativeSrc":"1433:18:41","nodeType":"YulExpressionStatement","src":"1433:18:41"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"1374:10:41","nodeType":"YulIdentifier","src":"1374:10:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1394:2:41","nodeType":"YulLiteral","src":"1394:2:41","type":"","value":"64"},{"kind":"number","nativeSrc":"1398:1:41","nodeType":"YulLiteral","src":"1398:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1390:3:41","nodeType":"YulIdentifier","src":"1390:3:41"},"nativeSrc":"1390:10:41","nodeType":"YulFunctionCall","src":"1390:10:41"},{"kind":"number","nativeSrc":"1402:1:41","nodeType":"YulLiteral","src":"1402:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1386:3:41","nodeType":"YulIdentifier","src":"1386:3:41"},"nativeSrc":"1386:18:41","nodeType":"YulFunctionCall","src":"1386:18:41"}],"functionName":{"name":"gt","nativeSrc":"1371:2:41","nodeType":"YulIdentifier","src":"1371:2:41"},"nativeSrc":"1371:34:41","nodeType":"YulFunctionCall","src":"1371:34:41"},{"arguments":[{"name":"newFreePtr","nativeSrc":"1410:10:41","nodeType":"YulIdentifier","src":"1410:10:41"},{"name":"memPtr","nativeSrc":"1422:6:41","nodeType":"YulIdentifier","src":"1422:6:41"}],"functionName":{"name":"lt","nativeSrc":"1407:2:41","nodeType":"YulIdentifier","src":"1407:2:41"},"nativeSrc":"1407:22:41","nodeType":"YulFunctionCall","src":"1407:22:41"}],"functionName":{"name":"or","nativeSrc":"1368:2:41","nodeType":"YulIdentifier","src":"1368:2:41"},"nativeSrc":"1368:62:41","nodeType":"YulFunctionCall","src":"1368:62:41"},"nativeSrc":"1365:88:41","nodeType":"YulIf","src":"1365:88:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1469:2:41","nodeType":"YulLiteral","src":"1469:2:41","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"1473:10:41","nodeType":"YulIdentifier","src":"1473:10:41"}],"functionName":{"name":"mstore","nativeSrc":"1462:6:41","nodeType":"YulIdentifier","src":"1462:6:41"},"nativeSrc":"1462:22:41","nodeType":"YulFunctionCall","src":"1462:22:41"},"nativeSrc":"1462:22:41","nodeType":"YulExpressionStatement","src":"1462:22:41"},{"nativeSrc":"1493:17:41","nodeType":"YulVariableDeclaration","src":"1493:17:41","value":{"name":"memPtr","nativeSrc":"1504:6:41","nodeType":"YulIdentifier","src":"1504:6:41"},"variables":[{"name":"dst","nativeSrc":"1497:3:41","nodeType":"YulTypedName","src":"1497:3:41","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"1526:6:41","nodeType":"YulIdentifier","src":"1526:6:41"},{"name":"length","nativeSrc":"1534:6:41","nodeType":"YulIdentifier","src":"1534:6:41"}],"functionName":{"name":"mstore","nativeSrc":"1519:6:41","nodeType":"YulIdentifier","src":"1519:6:41"},"nativeSrc":"1519:22:41","nodeType":"YulFunctionCall","src":"1519:22:41"},"nativeSrc":"1519:22:41","nodeType":"YulExpressionStatement","src":"1519:22:41"},{"nativeSrc":"1550:22:41","nodeType":"YulAssignment","src":"1550:22:41","value":{"arguments":[{"name":"memPtr","nativeSrc":"1561:6:41","nodeType":"YulIdentifier","src":"1561:6:41"},{"kind":"number","nativeSrc":"1569:2:41","nodeType":"YulLiteral","src":"1569:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1557:3:41","nodeType":"YulIdentifier","src":"1557:3:41"},"nativeSrc":"1557:15:41","nodeType":"YulFunctionCall","src":"1557:15:41"},"variableNames":[{"name":"dst","nativeSrc":"1550:3:41","nodeType":"YulIdentifier","src":"1550:3:41"}]},{"nativeSrc":"1581:34:41","nodeType":"YulVariableDeclaration","src":"1581:34:41","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1603:2:41","nodeType":"YulIdentifier","src":"1603:2:41"},{"name":"_2","nativeSrc":"1607:2:41","nodeType":"YulIdentifier","src":"1607:2:41"}],"functionName":{"name":"add","nativeSrc":"1599:3:41","nodeType":"YulIdentifier","src":"1599:3:41"},"nativeSrc":"1599:11:41","nodeType":"YulFunctionCall","src":"1599:11:41"},{"kind":"number","nativeSrc":"1612:2:41","nodeType":"YulLiteral","src":"1612:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1595:3:41","nodeType":"YulIdentifier","src":"1595:3:41"},"nativeSrc":"1595:20:41","nodeType":"YulFunctionCall","src":"1595:20:41"},"variables":[{"name":"srcEnd","nativeSrc":"1585:6:41","nodeType":"YulTypedName","src":"1585:6:41","type":""}]},{"body":{"nativeSrc":"1647:16:41","nodeType":"YulBlock","src":"1647:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1656:1:41","nodeType":"YulLiteral","src":"1656:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1659:1:41","nodeType":"YulLiteral","src":"1659:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1649:6:41","nodeType":"YulIdentifier","src":"1649:6:41"},"nativeSrc":"1649:12:41","nodeType":"YulFunctionCall","src":"1649:12:41"},"nativeSrc":"1649:12:41","nodeType":"YulExpressionStatement","src":"1649:12:41"}]},"condition":{"arguments":[{"name":"srcEnd","nativeSrc":"1630:6:41","nodeType":"YulIdentifier","src":"1630:6:41"},{"name":"dataEnd","nativeSrc":"1638:7:41","nodeType":"YulIdentifier","src":"1638:7:41"}],"functionName":{"name":"gt","nativeSrc":"1627:2:41","nodeType":"YulIdentifier","src":"1627:2:41"},"nativeSrc":"1627:19:41","nodeType":"YulFunctionCall","src":"1627:19:41"},"nativeSrc":"1624:39:41","nodeType":"YulIf","src":"1624:39:41"},{"nativeSrc":"1672:22:41","nodeType":"YulVariableDeclaration","src":"1672:22:41","value":{"arguments":[{"name":"_1","nativeSrc":"1687:2:41","nodeType":"YulIdentifier","src":"1687:2:41"},{"kind":"number","nativeSrc":"1691:2:41","nodeType":"YulLiteral","src":"1691:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1683:3:41","nodeType":"YulIdentifier","src":"1683:3:41"},"nativeSrc":"1683:11:41","nodeType":"YulFunctionCall","src":"1683:11:41"},"variables":[{"name":"src","nativeSrc":"1676:3:41","nodeType":"YulTypedName","src":"1676:3:41","type":""}]},{"body":{"nativeSrc":"1759:103:41","nodeType":"YulBlock","src":"1759:103:41","statements":[{"expression":{"arguments":[{"name":"dst","nativeSrc":"1780:3:41","nodeType":"YulIdentifier","src":"1780:3:41"},{"arguments":[{"name":"src","nativeSrc":"1815:3:41","nodeType":"YulIdentifier","src":"1815:3:41"}],"functionName":{"name":"abi_decode_address_fromMemory","nativeSrc":"1785:29:41","nodeType":"YulIdentifier","src":"1785:29:41"},"nativeSrc":"1785:34:41","nodeType":"YulFunctionCall","src":"1785:34:41"}],"functionName":{"name":"mstore","nativeSrc":"1773:6:41","nodeType":"YulIdentifier","src":"1773:6:41"},"nativeSrc":"1773:47:41","nodeType":"YulFunctionCall","src":"1773:47:41"},"nativeSrc":"1773:47:41","nodeType":"YulExpressionStatement","src":"1773:47:41"},{"nativeSrc":"1833:19:41","nodeType":"YulAssignment","src":"1833:19:41","value":{"arguments":[{"name":"dst","nativeSrc":"1844:3:41","nodeType":"YulIdentifier","src":"1844:3:41"},{"kind":"number","nativeSrc":"1849:2:41","nodeType":"YulLiteral","src":"1849:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1840:3:41","nodeType":"YulIdentifier","src":"1840:3:41"},"nativeSrc":"1840:12:41","nodeType":"YulFunctionCall","src":"1840:12:41"},"variableNames":[{"name":"dst","nativeSrc":"1833:3:41","nodeType":"YulIdentifier","src":"1833:3:41"}]}]},"condition":{"arguments":[{"name":"src","nativeSrc":"1714:3:41","nodeType":"YulIdentifier","src":"1714:3:41"},{"name":"srcEnd","nativeSrc":"1719:6:41","nodeType":"YulIdentifier","src":"1719:6:41"}],"functionName":{"name":"lt","nativeSrc":"1711:2:41","nodeType":"YulIdentifier","src":"1711:2:41"},"nativeSrc":"1711:15:41","nodeType":"YulFunctionCall","src":"1711:15:41"},"nativeSrc":"1703:159:41","nodeType":"YulForLoop","post":{"nativeSrc":"1727:23:41","nodeType":"YulBlock","src":"1727:23:41","statements":[{"nativeSrc":"1729:19:41","nodeType":"YulAssignment","src":"1729:19:41","value":{"arguments":[{"name":"src","nativeSrc":"1740:3:41","nodeType":"YulIdentifier","src":"1740:3:41"},{"kind":"number","nativeSrc":"1745:2:41","nodeType":"YulLiteral","src":"1745:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1736:3:41","nodeType":"YulIdentifier","src":"1736:3:41"},"nativeSrc":"1736:12:41","nodeType":"YulFunctionCall","src":"1736:12:41"},"variableNames":[{"name":"src","nativeSrc":"1729:3:41","nodeType":"YulIdentifier","src":"1729:3:41"}]}]},"pre":{"nativeSrc":"1707:3:41","nodeType":"YulBlock","src":"1707:3:41","statements":[]},"src":"1703:159:41"},{"nativeSrc":"1871:16:41","nodeType":"YulAssignment","src":"1871:16:41","value":{"name":"memPtr","nativeSrc":"1881:6:41","nodeType":"YulIdentifier","src":"1881:6:41"},"variableNames":[{"name":"value2","nativeSrc":"1871:6:41","nodeType":"YulIdentifier","src":"1871:6:41"}]}]},"name":"abi_decode_tuple_t_contract$_IEntryPoint_$909t_addresst_array$_t_address_$dyn_memory_ptr_fromMemory","nativeSrc":"451:1442:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"560:9:41","nodeType":"YulTypedName","src":"560:9:41","type":""},{"name":"dataEnd","nativeSrc":"571:7:41","nodeType":"YulTypedName","src":"571:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"583:6:41","nodeType":"YulTypedName","src":"583:6:41","type":""},{"name":"value1","nativeSrc":"591:6:41","nodeType":"YulTypedName","src":"591:6:41","type":""},{"name":"value2","nativeSrc":"599:6:41","nodeType":"YulTypedName","src":"599:6:41","type":""}],"src":"451:1442:41"},{"body":{"nativeSrc":"1930:95:41","nodeType":"YulBlock","src":"1930:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1947:1:41","nodeType":"YulLiteral","src":"1947:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1954:3:41","nodeType":"YulLiteral","src":"1954:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"1959:10:41","nodeType":"YulLiteral","src":"1959:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1950:3:41","nodeType":"YulIdentifier","src":"1950:3:41"},"nativeSrc":"1950:20:41","nodeType":"YulFunctionCall","src":"1950:20:41"}],"functionName":{"name":"mstore","nativeSrc":"1940:6:41","nodeType":"YulIdentifier","src":"1940:6:41"},"nativeSrc":"1940:31:41","nodeType":"YulFunctionCall","src":"1940:31:41"},"nativeSrc":"1940:31:41","nodeType":"YulExpressionStatement","src":"1940:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1987:1:41","nodeType":"YulLiteral","src":"1987:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"1990:4:41","nodeType":"YulLiteral","src":"1990:4:41","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"1980:6:41","nodeType":"YulIdentifier","src":"1980:6:41"},"nativeSrc":"1980:15:41","nodeType":"YulFunctionCall","src":"1980:15:41"},"nativeSrc":"1980:15:41","nodeType":"YulExpressionStatement","src":"1980:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2011:1:41","nodeType":"YulLiteral","src":"2011:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2014:4:41","nodeType":"YulLiteral","src":"2014:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"2004:6:41","nodeType":"YulIdentifier","src":"2004:6:41"},"nativeSrc":"2004:15:41","nodeType":"YulFunctionCall","src":"2004:15:41"},"nativeSrc":"2004:15:41","nodeType":"YulExpressionStatement","src":"2004:15:41"}]},"name":"panic_error_0x32","nativeSrc":"1898:127:41","nodeType":"YulFunctionDefinition","src":"1898:127:41"}]},"contents":"{\n    { }\n    function validator_revert_contract_IEntryPoint(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_address_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_contract_IEntryPoint(value)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function abi_decode_tuple_t_contract$_IEntryPoint_$909t_addresst_array$_t_address_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IEntryPoint(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IEntryPoint(value_1)\n        value1 := value_1\n        let offset := mload(add(headStart, 64))\n        if gt(offset, sub(shl(64, 1), 1)) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := mload(_1)\n        if gt(length, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        let _2 := shl(5, length)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(_2, 63), not(31)))\n        if or(gt(newFreePtr, sub(shl(64, 1), 1)), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        let dst := memPtr\n        mstore(memPtr, length)\n        dst := add(memPtr, 32)\n        let srcEnd := add(add(_1, _2), 32)\n        if gt(srcEnd, dataEnd) { revert(0, 0) }\n        let src := add(_1, 32)\n        for { } lt(src, srcEnd) { src := add(src, 32) }\n        {\n            mstore(dst, abi_decode_address_fromMemory(src))\n            dst := add(dst, 32)\n        }\n        value2 := memPtr\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n}","id":41,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60a060405234801561000f575f5ffd5b506040516116a13803806116a183398101604081905261002e91610190565b6001600160a01b0383166080526100455f836100ac565b505f5b81518110156100a35761009a7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6383838151811061008757610087610282565b60200260200101516100ac60201b60201c565b50600101610048565b50505050610296565b5f828152602081815260408083206001600160a01b038516845290915281205460ff1661014c575f838152602081815260408083206001600160a01b03861684529091529020805460ff191660011790556101043390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600161014f565b505f5b92915050565b6001600160a01b0381168114610169575f5ffd5b50565b805161017781610155565b919050565b634e487b7160e01b5f52604160045260245ffd5b5f5f5f606084860312156101a2575f5ffd5b83516101ad81610155565b60208501519093506101be81610155565b60408501519092506001600160401b038111156101d9575f5ffd5b8401601f810186136101e9575f5ffd5b80516001600160401b038111156102025761020261017c565b604051600582901b90603f8201601f191681016001600160401b03811182821017156102305761023061017c565b60405291825260208184018101929081018984111561024d575f5ffd5b6020850194505b83851015610273576102658561016c565b815260209485019401610254565b50809450505050509250925092565b634e487b7160e01b5f52603260045260245ffd5b6080516113c96102d85f395f818161029b0152818161062e015281816106d401528181610814015281816108a9015281816109070152610ba201526113c95ff3fe6080604052600436106100fd575f3560e01c80634d44560d11610092578063b61d27f611610062578063b61d27f6146102c5578063c399ec88146102e4578063d087d288146102f8578063d547741f1461030c578063e02023a11461032b575f5ffd5b80634d44560d1461023157806391d1485414610250578063a217fddf1461026f578063b0d691fe14610282575f5ffd5b80632f2ff15d116100cd5780632f2ff15d146101ca57806336568abe146101eb57806347e1da2a1461020a5780634a58db1914610229575f5ffd5b806301ffc9a71461010857806307bd02651461013c57806319822f7c1461017d578063248a9ca31461019c575f5ffd5b3661010457005b5f5ffd5b348015610113575f5ffd5b50610127610122366004611036565b61035e565b60405190151581526020015b60405180910390f35b348015610147575f5ffd5b5061016f7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b604051908152602001610133565b348015610188575f5ffd5b5061016f61019736600461105d565b610394565b3480156101a7575f5ffd5b5061016f6101b63660046110ac565b5f9081526020819052604090206001015490565b3480156101d5575f5ffd5b506101e96101e43660046110d7565b6103b9565b005b3480156101f6575f5ffd5b506101e96102053660046110d7565b6103e3565b348015610215575f5ffd5b506101e961022436600461114d565b61041b565b6101e961062c565b34801561023c575f5ffd5b506101e961024b3660046111ec565b6106a8565b34801561025b575f5ffd5b5061012761026a3660046110d7565b610757565b34801561027a575f5ffd5b5061016f5f81565b34801561028d575f5ffd5b506040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602001610133565b3480156102d0575f5ffd5b506101e96102df366004611216565b61077f565b3480156102ef575f5ffd5b5061016f6107f5565b348015610303575f5ffd5b5061016f610883565b348015610317575f5ffd5b506101e96103263660046110d7565b6108d8565b348015610336575f5ffd5b5061016f7f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec81565b5f6001600160e01b03198216637965db0b60e01b148061038e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b5f61039d6108fc565b6103a78484610976565b90506103b282610a54565b9392505050565b5f828152602081905260409020600101546103d381610a9d565b6103dd8383610aa7565b50505050565b6001600160a01b038116331461040c5760405163334bd91960e11b815260040160405180910390fd5b6104168282610b36565b505050565b5f610424610b9f565b9050858214158061043f5750831580159061043f5750838214155b1561045d5760405163150072e360e11b815260040160405180910390fd5b5f5b868110156106225780156105125787878281811061047f5761047f61129b565b905060200201602081019061049491906112af565b6001600160a01b031688886104aa6001856112ca565b8181106104b9576104b961129b565b90506020020160208101906104ce91906112af565b6001600160a01b0316148061050d575061050d8888838181106104f3576104f361129b565b905060200201602081019061050891906112af565b610c74565b610527565b61052788885f8181106104f3576104f361129b565b8888838181106105395761053961129b565b905060200201602081019061054e91906112af565b9061057d57604051636d4e141560e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b506106198888838181106105935761059361129b565b90506020020160208101906105a891906112af565b8585848181106105ba576105ba61129b565b90506020028101906105cc91906112e9565b856040516020016105df9392919061132c565b60408051601f198184030181529190528715610613578888858181106106075761060761129b565b90506020020135610ced565b5f610ced565b5060010161045f565b5050505050505050565b7f000000000000000000000000000000000000000000000000000000000000000060405163b760faf960e01b81523060048201526001600160a01b03919091169063b760faf99034906024015f604051808303818588803b15801561068f575f5ffd5b505af11580156106a1573d5f5f3e3d5ffd5b5050505050565b7f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec6106d281610a9d565b7f000000000000000000000000000000000000000000000000000000000000000060405163040b850f60e31b81526001600160a01b03858116600483015260248201859052919091169063205c2878906044015f604051808303815f87803b15801561073c575f5ffd5b505af115801561074e573d5f5f3e3d5ffd5b50505050505050565b5f918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b5f610788610b9f565b905061079385610c74565b85906107be57604051636d4e141560e01b81526001600160a01b039091166004820152602401610574565b506107ed858484846040516020016107d89392919061132c565b60405160208183030381529060405286610ced565b505050505050565b6040516370a0823160e01b81523060048201525f906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a08231906024015b602060405180830381865afa15801561085a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061087e9190611352565b905090565b604051631aab3f0d60e11b81523060048201525f60248201819052906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906335567e1a9060440161083f565b5f828152602081905260409020600101546108f281610a9d565b6103dd8383610b36565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146109745760405162461bcd60e51b815260206004820152601c60248201527f6163636f756e743a206e6f742066726f6d20456e747279506f696e74000000006044820152606401610574565b565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c829052603c81205f6109f0826109b76101008801886112e9565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250610d8392505050565b9050610a1c7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6382610757565b610a2b5760019250505061038e565b805f805c6001600160a01b0319166001600160a01b03831617905d505f95945050505050565b50565b8015610a51576040515f9033905f1990849084818181858888f193505050503d805f81146106a1576040519150601f19603f3d011682016040523d82523d5f602084013e6106a1565b610a518133610dab565b5f610ab28383610757565b610b2f575f838152602081815260408083206001600160a01b03861684529091529020805460ff19166001179055610ae73390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600161038e565b505f61038e565b5f610b418383610757565b15610b2f575f838152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a450600161038e565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163303610c18575f5c6001600160a01b0316610bf857604051636ca7ff7d60e01b815260040160405180910390fd5b506001600160a01b035f805c918216916001600160a01b031916815d5090565b610c427fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6333610757565b3390610c6d57604051633c687f6b60e21b81526001600160a01b039091166004820152602401610574565b5033905090565b6040513060248201525f90819060440160408051601f19818403018152919052602080820180516001600160e01b031663572b6c0560e01b17815282519293505f928392839290918391895afa92503d91505f519050828015610cd8575060208210155b8015610ce357505f81115b9695505050505050565b606081471015610d195760405163cf47918160e01b815247600482015260248101839052604401610574565b5f5f856001600160a01b03168486604051610d349190611369565b5f6040518083038185875af1925050503d805f8114610d6e576040519150601f19603f3d011682016040523d82523d5f602084013e610d73565b606091505b5091509150610ce3868383610de8565b5f5f5f5f610d918686610e44565b925092509250610da18282610e8d565b5090949350505050565b610db58282610757565b610de45760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610574565b5050565b606082610dfd57610df882610f45565b6103b2565b8151158015610e1457506001600160a01b0384163b155b15610e3d57604051639996b31560e01b81526001600160a01b0385166004820152602401610574565b50806103b2565b5f5f5f8351604103610e7b576020840151604085015160608601515f1a610e6d88828585610f6e565b955095509550505050610e86565b505081515f91506002905b9250925092565b5f826003811115610ea057610ea061137f565b03610ea9575050565b6001826003811115610ebd57610ebd61137f565b03610edb5760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610eef57610eef61137f565b03610f105760405163fce698f760e01b815260048101829052602401610574565b6003826003811115610f2457610f2461137f565b03610de4576040516335e2f38360e21b815260048101829052602401610574565b805115610f555780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610fa757505f9150600390508261102c565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610ff8573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b03811661102357505f92506001915082905061102c565b92505f91508190505b9450945094915050565b5f60208284031215611046575f5ffd5b81356001600160e01b0319811681146103b2575f5ffd5b5f5f5f6060848603121561106f575f5ffd5b833567ffffffffffffffff811115611085575f5ffd5b84016101208187031215611097575f5ffd5b95602085013595506040909401359392505050565b5f602082840312156110bc575f5ffd5b5035919050565b6001600160a01b0381168114610a51575f5ffd5b5f5f604083850312156110e8575f5ffd5b8235915060208301356110fa816110c3565b809150509250929050565b5f5f83601f840112611115575f5ffd5b50813567ffffffffffffffff81111561112c575f5ffd5b6020830191508360208260051b8501011115611146575f5ffd5b9250929050565b5f5f5f5f5f5f60608789031215611162575f5ffd5b863567ffffffffffffffff811115611178575f5ffd5b61118489828a01611105565b909750955050602087013567ffffffffffffffff8111156111a3575f5ffd5b6111af89828a01611105565b909550935050604087013567ffffffffffffffff8111156111ce575f5ffd5b6111da89828a01611105565b979a9699509497509295939492505050565b5f5f604083850312156111fd575f5ffd5b8235611208816110c3565b946020939093013593505050565b5f5f5f5f60608587031215611229575f5ffd5b8435611234816110c3565b935060208501359250604085013567ffffffffffffffff811115611256575f5ffd5b8501601f81018713611266575f5ffd5b803567ffffffffffffffff81111561127c575f5ffd5b87602082840101111561128d575f5ffd5b949793965060200194505050565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156112bf575f5ffd5b81356103b2816110c3565b8181038181111561038e57634e487b7160e01b5f52601160045260245ffd5b5f5f8335601e198436030181126112fe575f5ffd5b83018035915067ffffffffffffffff821115611318575f5ffd5b602001915036819003821315611146575f5ffd5b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b5f60208284031215611362575f5ffd5b5051919050565b5f82518060208501845e5f920191825250919050565b634e487b7160e01b5f52602160045260245ffdfea2646970667358221220cf6d6774046d911eedd4b122e3b68e3c2d17e5cb16737010985b91448ef8ab5e64736f6c634300081c0033","opcodes":"PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x16A1 CODESIZE SUB DUP1 PUSH2 0x16A1 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2E SWAP2 PUSH2 0x190 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x80 MSTORE PUSH2 0x45 PUSH0 DUP4 PUSH2 0xAC JUMP JUMPDEST POP PUSH0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xA3 JUMPI PUSH2 0x9A PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x87 JUMPI PUSH2 0x87 PUSH2 0x282 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xAC PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x48 JUMP JUMPDEST POP POP POP POP PUSH2 0x296 JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x14C JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH2 0x104 CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x14F JUMP JUMPDEST POP PUSH0 JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x169 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST DUP1 MLOAD PUSH2 0x177 DUP2 PUSH2 0x155 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 MLOAD PUSH2 0x1AD DUP2 PUSH2 0x155 JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MLOAD SWAP1 SWAP4 POP PUSH2 0x1BE DUP2 PUSH2 0x155 JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x1E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x202 JUMPI PUSH2 0x202 PUSH2 0x17C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x5 DUP3 SWAP1 SHL SWAP1 PUSH1 0x3F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x230 JUMPI PUSH2 0x230 PUSH2 0x17C JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 DUP3 MSTORE PUSH1 0x20 DUP2 DUP5 ADD DUP2 ADD SWAP3 SWAP1 DUP2 ADD DUP10 DUP5 GT ISZERO PUSH2 0x24D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP6 ADD SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x273 JUMPI PUSH2 0x265 DUP6 PUSH2 0x16C JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 ADD PUSH2 0x254 JUMP JUMPDEST POP DUP1 SWAP5 POP POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x80 MLOAD PUSH2 0x13C9 PUSH2 0x2D8 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x29B ADD MSTORE DUP2 DUP2 PUSH2 0x62E ADD MSTORE DUP2 DUP2 PUSH2 0x6D4 ADD MSTORE DUP2 DUP2 PUSH2 0x814 ADD MSTORE DUP2 DUP2 PUSH2 0x8A9 ADD MSTORE DUP2 DUP2 PUSH2 0x907 ADD MSTORE PUSH2 0xBA2 ADD MSTORE PUSH2 0x13C9 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xFD JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4D44560D GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xB61D27F6 GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xB61D27F6 EQ PUSH2 0x2C5 JUMPI DUP1 PUSH4 0xC399EC88 EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0xD087D288 EQ PUSH2 0x2F8 JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x30C JUMPI DUP1 PUSH4 0xE02023A1 EQ PUSH2 0x32B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D44560D EQ PUSH2 0x231 JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x250 JUMPI DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x26F JUMPI DUP1 PUSH4 0xB0D691FE EQ PUSH2 0x282 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x2F2FF15D GT PUSH2 0xCD JUMPI DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x1EB JUMPI DUP1 PUSH4 0x47E1DA2A EQ PUSH2 0x20A JUMPI DUP1 PUSH4 0x4A58DB19 EQ PUSH2 0x229 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x108 JUMPI DUP1 PUSH4 0x7BD0265 EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x19822F7C EQ PUSH2 0x17D JUMPI DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x19C JUMPI PUSH0 PUSH0 REVERT JUMPDEST CALLDATASIZE PUSH2 0x104 JUMPI STOP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x113 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x127 PUSH2 0x122 CALLDATASIZE PUSH1 0x4 PUSH2 0x1036 JUMP JUMPDEST PUSH2 0x35E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x147 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x133 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x188 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x197 CALLDATASIZE PUSH1 0x4 PUSH2 0x105D JUMP JUMPDEST PUSH2 0x394 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x1B6 CALLDATASIZE PUSH1 0x4 PUSH2 0x10AC JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x3B9 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x205 CALLDATASIZE PUSH1 0x4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x3E3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x215 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x224 CALLDATASIZE PUSH1 0x4 PUSH2 0x114D JUMP JUMPDEST PUSH2 0x41B JUMP JUMPDEST PUSH2 0x1E9 PUSH2 0x62C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x23C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x24B CALLDATASIZE PUSH1 0x4 PUSH2 0x11EC JUMP JUMPDEST PUSH2 0x6A8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x127 PUSH2 0x26A CALLDATASIZE PUSH1 0x4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x757 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x27A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x133 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x2DF CALLDATASIZE PUSH1 0x4 PUSH2 0x1216 JUMP JUMPDEST PUSH2 0x77F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x7F5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x303 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x883 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x317 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x326 CALLDATASIZE PUSH1 0x4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x8D8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x336 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH32 0x5D8E12C39142FF96D79D04D15D1BA1269E4FE57BB9D26F43523628B34BA108EC DUP2 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x7965DB0B PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x38E JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x39D PUSH2 0x8FC JUMP JUMPDEST PUSH2 0x3A7 DUP5 DUP5 PUSH2 0x976 JUMP JUMPDEST SWAP1 POP PUSH2 0x3B2 DUP3 PUSH2 0xA54 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x3D3 DUP2 PUSH2 0xA9D JUMP JUMPDEST PUSH2 0x3DD DUP4 DUP4 PUSH2 0xAA7 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ PUSH2 0x40C JUMPI PUSH1 0x40 MLOAD PUSH4 0x334BD919 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x416 DUP3 DUP3 PUSH2 0xB36 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x424 PUSH2 0xB9F JUMP JUMPDEST SWAP1 POP DUP6 DUP3 EQ ISZERO DUP1 PUSH2 0x43F JUMPI POP DUP4 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x43F JUMPI POP DUP4 DUP3 EQ ISZERO JUMPDEST ISZERO PUSH2 0x45D JUMPI PUSH1 0x40 MLOAD PUSH4 0x150072E3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x622 JUMPI DUP1 ISZERO PUSH2 0x512 JUMPI DUP8 DUP8 DUP3 DUP2 DUP2 LT PUSH2 0x47F JUMPI PUSH2 0x47F PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x494 SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 DUP9 PUSH2 0x4AA PUSH1 0x1 DUP6 PUSH2 0x12CA JUMP JUMPDEST DUP2 DUP2 LT PUSH2 0x4B9 JUMPI PUSH2 0x4B9 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x4CE SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x50D JUMPI POP PUSH2 0x50D DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x4F3 JUMPI PUSH2 0x4F3 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x508 SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST PUSH2 0xC74 JUMP JUMPDEST PUSH2 0x527 JUMP JUMPDEST PUSH2 0x527 DUP9 DUP9 PUSH0 DUP2 DUP2 LT PUSH2 0x4F3 JUMPI PUSH2 0x4F3 PUSH2 0x129B JUMP JUMPDEST DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x539 JUMPI PUSH2 0x539 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x54E SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST SWAP1 PUSH2 0x57D JUMPI PUSH1 0x40 MLOAD PUSH4 0x6D4E1415 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH2 0x619 DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x593 JUMPI PUSH2 0x593 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x5A8 SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x5BA JUMPI PUSH2 0x5BA PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x5CC SWAP2 SWAP1 PUSH2 0x12E9 JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x5DF SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x132C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE DUP8 ISZERO PUSH2 0x613 JUMPI DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x607 JUMPI PUSH2 0x607 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH2 0xCED JUMP JUMPDEST PUSH0 PUSH2 0xCED JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x45F JUMP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0xB760FAF9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xB760FAF9 SWAP1 CALLVALUE SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x68F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x6A1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH32 0x5D8E12C39142FF96D79D04D15D1BA1269E4FE57BB9D26F43523628B34BA108EC PUSH2 0x6D2 DUP2 PUSH2 0xA9D JUMP JUMPDEST PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0x40B850F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x205C2878 SWAP1 PUSH1 0x44 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x73C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x74E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP5 MSTORE SWAP2 SWAP1 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x788 PUSH2 0xB9F JUMP JUMPDEST SWAP1 POP PUSH2 0x793 DUP6 PUSH2 0xC74 JUMP JUMPDEST DUP6 SWAP1 PUSH2 0x7BE JUMPI PUSH1 0x40 MLOAD PUSH4 0x6D4E1415 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST POP PUSH2 0x7ED DUP6 DUP5 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x7D8 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x132C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP7 PUSH2 0xCED JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x85A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x87E SWAP2 SWAP1 PUSH2 0x1352 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1AAB3F0D PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x35567E1A SWAP1 PUSH1 0x44 ADD PUSH2 0x83F JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x8F2 DUP2 PUSH2 0xA9D JUMP JUMPDEST PUSH2 0x3DD DUP4 DUP4 PUSH2 0xB36 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x974 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6163636F756E743A206E6F742066726F6D20456E747279506F696E7400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x574 JUMP JUMPDEST JUMP JUMPDEST PUSH32 0x19457468657265756D205369676E6564204D6573736167653A0A333200000000 PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1C DUP3 SWAP1 MSTORE PUSH1 0x3C DUP2 KECCAK256 PUSH0 PUSH2 0x9F0 DUP3 PUSH2 0x9B7 PUSH2 0x100 DUP9 ADD DUP9 PUSH2 0x12E9 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0xD83 SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH2 0xA1C PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 DUP3 PUSH2 0x757 JUMP JUMPDEST PUSH2 0xA2B JUMPI PUSH1 0x1 SWAP3 POP POP POP PUSH2 0x38E JUMP JUMPDEST DUP1 PUSH0 DUP1 TLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND OR SWAP1 TSTORE POP PUSH0 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST POP JUMP JUMPDEST DUP1 ISZERO PUSH2 0xA51 JUMPI PUSH1 0x40 MLOAD PUSH0 SWAP1 CALLER SWAP1 PUSH0 NOT SWAP1 DUP5 SWAP1 DUP5 DUP2 DUP2 DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x6A1 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x6A1 JUMP JUMPDEST PUSH2 0xA51 DUP2 CALLER PUSH2 0xDAB JUMP JUMPDEST PUSH0 PUSH2 0xAB2 DUP4 DUP4 PUSH2 0x757 JUMP JUMPDEST PUSH2 0xB2F JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH2 0xAE7 CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x38E JUMP JUMPDEST POP PUSH0 PUSH2 0x38E JUMP JUMPDEST PUSH0 PUSH2 0xB41 DUP4 DUP4 PUSH2 0x757 JUMP JUMPDEST ISZERO PUSH2 0xB2F JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP1 DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE MLOAD CALLER SWAP3 DUP7 SWAP2 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B SWAP2 SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x38E JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER SUB PUSH2 0xC18 JUMPI PUSH0 TLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xBF8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6CA7FF7D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH0 DUP1 TLOAD SWAP2 DUP3 AND SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND DUP2 TSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0xC42 PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 CALLER PUSH2 0x757 JUMP JUMPDEST CALLER SWAP1 PUSH2 0xC6D JUMPI PUSH1 0x40 MLOAD PUSH4 0x3C687F6B PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST POP CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x44 ADD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP1 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x572B6C05 PUSH1 0xE0 SHL OR DUP2 MSTORE DUP3 MLOAD SWAP3 SWAP4 POP PUSH0 SWAP3 DUP4 SWAP3 DUP4 SWAP3 SWAP1 SWAP2 DUP4 SWAP2 DUP10 GAS STATICCALL SWAP3 POP RETURNDATASIZE SWAP2 POP PUSH0 MLOAD SWAP1 POP DUP3 DUP1 ISZERO PUSH2 0xCD8 JUMPI POP PUSH1 0x20 DUP3 LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0xCE3 JUMPI POP PUSH0 DUP2 GT JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0xD19 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x574 JUMP JUMPDEST PUSH0 PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0xD34 SWAP2 SWAP1 PUSH2 0x1369 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xD6E JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xD73 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0xCE3 DUP7 DUP4 DUP4 PUSH2 0xDE8 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0xD91 DUP7 DUP7 PUSH2 0xE44 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0xDA1 DUP3 DUP3 PUSH2 0xE8D JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0xDB5 DUP3 DUP3 PUSH2 0x757 JUMP JUMPDEST PUSH2 0xDE4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x574 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0xDFD JUMPI PUSH2 0xDF8 DUP3 PUSH2 0xF45 JUMP JUMPDEST PUSH2 0x3B2 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0xE14 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0xE3D JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST POP DUP1 PUSH2 0x3B2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x41 SUB PUSH2 0xE7B JUMPI PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH0 BYTE PUSH2 0xE6D DUP9 DUP3 DUP6 DUP6 PUSH2 0xF6E JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP PUSH2 0xE86 JUMP JUMPDEST POP POP DUP2 MLOAD PUSH0 SWAP2 POP PUSH1 0x2 SWAP1 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xEA0 JUMPI PUSH2 0xEA0 PUSH2 0x137F JUMP JUMPDEST SUB PUSH2 0xEA9 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xEBD JUMPI PUSH2 0xEBD PUSH2 0x137F JUMP JUMPDEST SUB PUSH2 0xEDB JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xEEF JUMPI PUSH2 0xEEF PUSH2 0x137F JUMP JUMPDEST SUB PUSH2 0xF10 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xF24 JUMPI PUSH2 0xF24 PUSH2 0x137F JUMP JUMPDEST SUB PUSH2 0xDE4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST DUP1 MLOAD ISZERO PUSH2 0xF55 JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0xFA7 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x102C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xFF8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1023 JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x102C JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1046 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x3B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x106F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1085 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH2 0x120 DUP2 DUP8 SUB SLT ISZERO PUSH2 0x1097 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xA51 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x10E8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x10FA DUP2 PUSH2 0x10C3 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x1115 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x112C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1146 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x1162 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1178 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1184 DUP10 DUP3 DUP11 ADD PUSH2 0x1105 JUMP JUMPDEST SWAP1 SWAP8 POP SWAP6 POP POP PUSH1 0x20 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x11A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x11AF DUP10 DUP3 DUP11 ADD PUSH2 0x1105 JUMP JUMPDEST SWAP1 SWAP6 POP SWAP4 POP POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x11CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x11DA DUP10 DUP3 DUP11 ADD PUSH2 0x1105 JUMP JUMPDEST SWAP8 SWAP11 SWAP7 SWAP10 POP SWAP5 SWAP8 POP SWAP3 SWAP6 SWAP4 SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x11FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1208 DUP2 PUSH2 0x10C3 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1229 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x1234 DUP2 PUSH2 0x10C3 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1256 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x1266 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x127C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x128D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP5 SWAP8 SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x12BF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3B2 DUP2 PUSH2 0x10C3 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x38E JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x12FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1318 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x1146 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH1 0x60 SWAP2 SWAP1 SWAP2 SHL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP2 ADD SWAP1 DUP2 MSTORE PUSH1 0x14 ADD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1362 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP6 ADD DUP5 MCOPY PUSH0 SWAP3 ADD SWAP2 DUP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCF PUSH14 0x6774046D911EEDD4B122E3B68E3C 0x2D OR 0xE5 0xCB AND PUSH20 0x7010985B91448EF8AB5E64736F6C634300081C00 CALLER ","sourceMap":"1158:5897:35:-:0;;;1840:263;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:26:35;;;;1959:37;2232:4:9;1990:5:35;1959:10;:37::i;:::-;;2007:9;2002:97;2022:9;:16;2018:1;:20;2002:97;;;2053:39;1335:26;2079:9;2089:1;2079:12;;;;;;;;:::i;:::-;;;;;;;2053:10;;;:39;;:::i;:::-;-1:-1:-1;2040:3:35;;2002:97;;;;1840:263;;;1158:5897;;6179:316:9;6256:4;2954:12;;;;;;;;;;;-1:-1:-1;;;;;2954:29:9;;;;;;;;;;;;6272:217;;6315:6;:12;;;;;;;;;;;-1:-1:-1;;;;;6315:29:9;;;;;;;;;:36;;-1:-1:-1;;6315:36:9;6347:4;6315:36;;;6397:12;735:10:20;;656:96;6397:12:9;-1:-1:-1;;;;;6370:40:9;6388:7;-1:-1:-1;;;;;6370:40:9;6382:4;6370:40;;;;;;;;;;-1:-1:-1;6431:4:9;6424:11;;6272:217;-1:-1:-1;6473:5:9;6272:217;6179:316;;;;:::o;14:144:41:-;-1:-1:-1;;;;;102:31:41;;92:42;;82:70;;148:1;145;138:12;82:70;14:144;:::o;163:151::-;242:13;;264:44;242:13;264:44;:::i;:::-;163:151;;;:::o;319:127::-;380:10;375:3;371:20;368:1;361:31;411:4;408:1;401:15;435:4;432:1;425:15;451:1442;583:6;591;599;652:2;640:9;631:7;627:23;623:32;620:52;;;668:1;665;658:12;620:52;700:9;694:16;719:44;757:5;719:44;:::i;:::-;832:2;817:18;;811:25;782:5;;-1:-1:-1;845:46:41;811:25;845:46;:::i;:::-;961:2;946:18;;940:25;910:7;;-1:-1:-1;;;;;;977:30:41;;974:50;;;1020:1;1017;1010:12;974:50;1043:22;;1096:4;1088:13;;1084:27;-1:-1:-1;1074:55:41;;1125:1;1122;1115:12;1074:55;1152:9;;-1:-1:-1;;;;;1173:30:41;;1170:56;;;1206:18;;:::i;:::-;1288:2;1282:9;1249:1;1245:14;;;;1342:2;1334:11;;-1:-1:-1;;1330:25:41;1318:38;;-1:-1:-1;;;;;1371:34:41;;1407:22;;;1368:62;1365:88;;;1433:18;;:::i;:::-;1469:2;1462:22;1519;;;1569:2;1599:11;;;1595:20;;;1519:22;1557:15;;1627:19;;;1624:39;;;1659:1;1656;1649:12;1624:39;1691:2;1687;1683:11;1672:22;;1703:159;1719:6;1714:3;1711:15;1703:159;;;1785:34;1815:3;1785:34;:::i;:::-;1773:47;;1849:2;1736:12;;;;1840;1703:159;;;1707:3;1881:6;1871:16;;;;;;451:1442;;;;;:::o;1898:127::-;1959:10;1954:3;1950:20;1947:1;1940:31;1990:4;1987:1;1980:15;2014:4;2011:1;2004:15;1898:127;1158:5897:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@DEFAULT_ADMIN_ROLE_1084":{"entryPoint":null,"id":1084,"parameterSlots":0,"returnSlots":0},"@EXECUTOR_ROLE_9481":{"entryPoint":null,"id":9481,"parameterSlots":0,"returnSlots":0},"@WITHDRAW_ROLE_9476":{"entryPoint":null,"id":9476,"parameterSlots":0,"returnSlots":0},"@_9513":{"entryPoint":null,"id":9513,"parameterSlots":0,"returnSlots":0},"@_checkRole_1148":{"entryPoint":2717,"id":1148,"parameterSlots":1,"returnSlots":0},"@_checkRole_1169":{"entryPoint":3499,"id":1169,"parameterSlots":2,"returnSlots":0},"@_grantRole_1311":{"entryPoint":2727,"id":1311,"parameterSlots":2,"returnSlots":1},"@_isTrustedByTarget_9840":{"entryPoint":3188,"id":9840,"parameterSlots":1,"returnSlots":1},"@_msgSender_3080":{"entryPoint":null,"id":3080,"parameterSlots":0,"returnSlots":1},"@_payPrefund_137":{"entryPoint":2644,"id":137,"parameterSlots":1,"returnSlots":0},"@_requireFromEntryPointOrExecutor_9608":{"entryPoint":2975,"id":9608,"parameterSlots":0,"returnSlots":1},"@_requireFromEntryPoint_86":{"entryPoint":2300,"id":86,"parameterSlots":0,"returnSlots":0},"@_revert_3067":{"entryPoint":3909,"id":3067,"parameterSlots":1,"returnSlots":0},"@_revokeRole_1349":{"entryPoint":2870,"id":1349,"parameterSlots":2,"returnSlots":1},"@_throwError_4806":{"entryPoint":3725,"id":4806,"parameterSlots":2,"returnSlots":0},"@_validateNonce_104":{"entryPoint":2641,"id":104,"parameterSlots":1,"returnSlots":0},"@_validateSignature_9798":{"entryPoint":2422,"id":9798,"parameterSlots":2,"returnSlots":1},"@addDeposit_9873":{"entryPoint":1580,"id":9873,"parameterSlots":0,"returnSlots":0},"@entryPoint_9509":{"entryPoint":null,"id":9509,"parameterSlots":0,"returnSlots":1},"@executeBatch_9755":{"entryPoint":1051,"id":9755,"parameterSlots":6,"returnSlots":0},"@execute_9645":{"entryPoint":1919,"id":9645,"parameterSlots":4,"returnSlots":0},"@functionCallWithValue_2933":{"entryPoint":3309,"id":2933,"parameterSlots":3,"returnSlots":1},"@getDeposit_9856":{"entryPoint":2037,"id":9856,"parameterSlots":0,"returnSlots":1},"@getNonce_28":{"entryPoint":2179,"id":28,"parameterSlots":0,"returnSlots":1},"@getRoleAdmin_1183":{"entryPoint":null,"id":1183,"parameterSlots":1,"returnSlots":1},"@grantRole_1202":{"entryPoint":953,"id":1202,"parameterSlots":2,"returnSlots":0},"@hasRole_1135":{"entryPoint":1879,"id":1135,"parameterSlots":2,"returnSlots":1},"@recover_4563":{"entryPoint":3459,"id":4563,"parameterSlots":2,"returnSlots":1},"@renounceRole_1244":{"entryPoint":995,"id":1244,"parameterSlots":2,"returnSlots":0},"@revokeRole_1221":{"entryPoint":2264,"id":1221,"parameterSlots":2,"returnSlots":0},"@supportsInterface_1117":{"entryPoint":862,"id":1117,"parameterSlots":1,"returnSlots":1},"@supportsInterface_4904":{"entryPoint":null,"id":4904,"parameterSlots":1,"returnSlots":1},"@toEthSignedMessageHash_4822":{"entryPoint":null,"id":4822,"parameterSlots":1,"returnSlots":1},"@tryRecover_4533":{"entryPoint":3652,"id":4533,"parameterSlots":2,"returnSlots":3},"@tryRecover_4721":{"entryPoint":3950,"id":4721,"parameterSlots":4,"returnSlots":3},"@validateUserOp_69":{"entryPoint":916,"id":69,"parameterSlots":3,"returnSlots":1},"@verifyCallResultFromTarget_3025":{"entryPoint":3560,"id":3025,"parameterSlots":3,"returnSlots":1},"@withdrawDepositTo_9892":{"entryPoint":1704,"id":9892,"parameterSlots":2,"returnSlots":0},"abi_decode_array_address_dyn_calldata":{"entryPoint":4357,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_address":{"entryPoint":4783,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_payablet_uint256":{"entryPoint":4588,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256t_bytes_calldata_ptr":{"entryPoint":4630,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_uint256_$dyn_calldata_ptrt_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr":{"entryPoint":4429,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_bytes32":{"entryPoint":4268,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32t_address":{"entryPoint":4311,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes4":{"entryPoint":4150,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PackedUserOperation_$1054_calldata_ptrt_bytes32t_uint256":{"entryPoint":4189,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":4946,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_calldata_ptr_t_address__to_t_bytes_memory_ptr_t_address__nonPadded_inplace_fromStack_reversed":{"entryPoint":4908,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":4969,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_payable_t_uint256__to_t_address_payable_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_bytes32__to_t_address_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint192__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_contract$_IEntryPoint_$909__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f684c2c0c9ec797849b62669189fe025e9077c00ba7812987ce38c0071ad7a50__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":4841,"id":null,"parameterSlots":2,"returnSlots":2},"checked_sub_t_uint256":{"entryPoint":4810,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x21":{"entryPoint":4991,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":4763,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":4291,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:9625:41","nodeType":"YulBlock","src":"0:9625:41","statements":[{"nativeSrc":"6:3:41","nodeType":"YulBlock","src":"6:3:41","statements":[]},{"body":{"nativeSrc":"83:217:41","nodeType":"YulBlock","src":"83:217:41","statements":[{"body":{"nativeSrc":"129:16:41","nodeType":"YulBlock","src":"129:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"138:1:41","nodeType":"YulLiteral","src":"138:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"141:1:41","nodeType":"YulLiteral","src":"141:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"131:6:41","nodeType":"YulIdentifier","src":"131:6:41"},"nativeSrc":"131:12:41","nodeType":"YulFunctionCall","src":"131:12:41"},"nativeSrc":"131:12:41","nodeType":"YulExpressionStatement","src":"131:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"104:7:41","nodeType":"YulIdentifier","src":"104:7:41"},{"name":"headStart","nativeSrc":"113:9:41","nodeType":"YulIdentifier","src":"113:9:41"}],"functionName":{"name":"sub","nativeSrc":"100:3:41","nodeType":"YulIdentifier","src":"100:3:41"},"nativeSrc":"100:23:41","nodeType":"YulFunctionCall","src":"100:23:41"},{"kind":"number","nativeSrc":"125:2:41","nodeType":"YulLiteral","src":"125:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"96:3:41","nodeType":"YulIdentifier","src":"96:3:41"},"nativeSrc":"96:32:41","nodeType":"YulFunctionCall","src":"96:32:41"},"nativeSrc":"93:52:41","nodeType":"YulIf","src":"93:52:41"},{"nativeSrc":"154:36:41","nodeType":"YulVariableDeclaration","src":"154:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"180:9:41","nodeType":"YulIdentifier","src":"180:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"167:12:41","nodeType":"YulIdentifier","src":"167:12:41"},"nativeSrc":"167:23:41","nodeType":"YulFunctionCall","src":"167:23:41"},"variables":[{"name":"value","nativeSrc":"158:5:41","nodeType":"YulTypedName","src":"158:5:41","type":""}]},{"body":{"nativeSrc":"254:16:41","nodeType":"YulBlock","src":"254:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:41","nodeType":"YulLiteral","src":"263:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:41","nodeType":"YulLiteral","src":"266:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:41","nodeType":"YulIdentifier","src":"256:6:41"},"nativeSrc":"256:12:41","nodeType":"YulFunctionCall","src":"256:12:41"},"nativeSrc":"256:12:41","nodeType":"YulExpressionStatement","src":"256:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"212:5:41","nodeType":"YulIdentifier","src":"212:5:41"},{"arguments":[{"name":"value","nativeSrc":"223:5:41","nodeType":"YulIdentifier","src":"223:5:41"},{"arguments":[{"kind":"number","nativeSrc":"234:3:41","nodeType":"YulLiteral","src":"234:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"239:10:41","nodeType":"YulLiteral","src":"239:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"230:3:41","nodeType":"YulIdentifier","src":"230:3:41"},"nativeSrc":"230:20:41","nodeType":"YulFunctionCall","src":"230:20:41"}],"functionName":{"name":"and","nativeSrc":"219:3:41","nodeType":"YulIdentifier","src":"219:3:41"},"nativeSrc":"219:32:41","nodeType":"YulFunctionCall","src":"219:32:41"}],"functionName":{"name":"eq","nativeSrc":"209:2:41","nodeType":"YulIdentifier","src":"209:2:41"},"nativeSrc":"209:43:41","nodeType":"YulFunctionCall","src":"209:43:41"}],"functionName":{"name":"iszero","nativeSrc":"202:6:41","nodeType":"YulIdentifier","src":"202:6:41"},"nativeSrc":"202:51:41","nodeType":"YulFunctionCall","src":"202:51:41"},"nativeSrc":"199:71:41","nodeType":"YulIf","src":"199:71:41"},{"nativeSrc":"279:15:41","nodeType":"YulAssignment","src":"279:15:41","value":{"name":"value","nativeSrc":"289:5:41","nodeType":"YulIdentifier","src":"289:5:41"},"variableNames":[{"name":"value0","nativeSrc":"279:6:41","nodeType":"YulIdentifier","src":"279:6:41"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14:286:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"49:9:41","nodeType":"YulTypedName","src":"49:9:41","type":""},{"name":"dataEnd","nativeSrc":"60:7:41","nodeType":"YulTypedName","src":"60:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"72:6:41","nodeType":"YulTypedName","src":"72:6:41","type":""}],"src":"14:286:41"},{"body":{"nativeSrc":"400:92:41","nodeType":"YulBlock","src":"400:92:41","statements":[{"nativeSrc":"410:26:41","nodeType":"YulAssignment","src":"410:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:41","nodeType":"YulIdentifier","src":"422:9:41"},{"kind":"number","nativeSrc":"433:2:41","nodeType":"YulLiteral","src":"433:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"418:3:41","nodeType":"YulIdentifier","src":"418:3:41"},"nativeSrc":"418:18:41","nodeType":"YulFunctionCall","src":"418:18:41"},"variableNames":[{"name":"tail","nativeSrc":"410:4:41","nodeType":"YulIdentifier","src":"410:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"452:9:41","nodeType":"YulIdentifier","src":"452:9:41"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"477:6:41","nodeType":"YulIdentifier","src":"477:6:41"}],"functionName":{"name":"iszero","nativeSrc":"470:6:41","nodeType":"YulIdentifier","src":"470:6:41"},"nativeSrc":"470:14:41","nodeType":"YulFunctionCall","src":"470:14:41"}],"functionName":{"name":"iszero","nativeSrc":"463:6:41","nodeType":"YulIdentifier","src":"463:6:41"},"nativeSrc":"463:22:41","nodeType":"YulFunctionCall","src":"463:22:41"}],"functionName":{"name":"mstore","nativeSrc":"445:6:41","nodeType":"YulIdentifier","src":"445:6:41"},"nativeSrc":"445:41:41","nodeType":"YulFunctionCall","src":"445:41:41"},"nativeSrc":"445:41:41","nodeType":"YulExpressionStatement","src":"445:41:41"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"305:187:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"369:9:41","nodeType":"YulTypedName","src":"369:9:41","type":""},{"name":"value0","nativeSrc":"380:6:41","nodeType":"YulTypedName","src":"380:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"391:4:41","nodeType":"YulTypedName","src":"391:4:41","type":""}],"src":"305:187:41"},{"body":{"nativeSrc":"598:76:41","nodeType":"YulBlock","src":"598:76:41","statements":[{"nativeSrc":"608:26:41","nodeType":"YulAssignment","src":"608:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"620:9:41","nodeType":"YulIdentifier","src":"620:9:41"},{"kind":"number","nativeSrc":"631:2:41","nodeType":"YulLiteral","src":"631:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"616:3:41","nodeType":"YulIdentifier","src":"616:3:41"},"nativeSrc":"616:18:41","nodeType":"YulFunctionCall","src":"616:18:41"},"variableNames":[{"name":"tail","nativeSrc":"608:4:41","nodeType":"YulIdentifier","src":"608:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"650:9:41","nodeType":"YulIdentifier","src":"650:9:41"},{"name":"value0","nativeSrc":"661:6:41","nodeType":"YulIdentifier","src":"661:6:41"}],"functionName":{"name":"mstore","nativeSrc":"643:6:41","nodeType":"YulIdentifier","src":"643:6:41"},"nativeSrc":"643:25:41","nodeType":"YulFunctionCall","src":"643:25:41"},"nativeSrc":"643:25:41","nodeType":"YulExpressionStatement","src":"643:25:41"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"497:177:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"567:9:41","nodeType":"YulTypedName","src":"567:9:41","type":""},{"name":"value0","nativeSrc":"578:6:41","nodeType":"YulTypedName","src":"578:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"589:4:41","nodeType":"YulTypedName","src":"589:4:41","type":""}],"src":"497:177:41"},{"body":{"nativeSrc":"822:490:41","nodeType":"YulBlock","src":"822:490:41","statements":[{"body":{"nativeSrc":"868:16:41","nodeType":"YulBlock","src":"868:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"877:1:41","nodeType":"YulLiteral","src":"877:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"880:1:41","nodeType":"YulLiteral","src":"880:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"870:6:41","nodeType":"YulIdentifier","src":"870:6:41"},"nativeSrc":"870:12:41","nodeType":"YulFunctionCall","src":"870:12:41"},"nativeSrc":"870:12:41","nodeType":"YulExpressionStatement","src":"870:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"843:7:41","nodeType":"YulIdentifier","src":"843:7:41"},{"name":"headStart","nativeSrc":"852:9:41","nodeType":"YulIdentifier","src":"852:9:41"}],"functionName":{"name":"sub","nativeSrc":"839:3:41","nodeType":"YulIdentifier","src":"839:3:41"},"nativeSrc":"839:23:41","nodeType":"YulFunctionCall","src":"839:23:41"},{"kind":"number","nativeSrc":"864:2:41","nodeType":"YulLiteral","src":"864:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"835:3:41","nodeType":"YulIdentifier","src":"835:3:41"},"nativeSrc":"835:32:41","nodeType":"YulFunctionCall","src":"835:32:41"},"nativeSrc":"832:52:41","nodeType":"YulIf","src":"832:52:41"},{"nativeSrc":"893:37:41","nodeType":"YulVariableDeclaration","src":"893:37:41","value":{"arguments":[{"name":"headStart","nativeSrc":"920:9:41","nodeType":"YulIdentifier","src":"920:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"907:12:41","nodeType":"YulIdentifier","src":"907:12:41"},"nativeSrc":"907:23:41","nodeType":"YulFunctionCall","src":"907:23:41"},"variables":[{"name":"offset","nativeSrc":"897:6:41","nodeType":"YulTypedName","src":"897:6:41","type":""}]},{"body":{"nativeSrc":"973:16:41","nodeType":"YulBlock","src":"973:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"982:1:41","nodeType":"YulLiteral","src":"982:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"985:1:41","nodeType":"YulLiteral","src":"985:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"975:6:41","nodeType":"YulIdentifier","src":"975:6:41"},"nativeSrc":"975:12:41","nodeType":"YulFunctionCall","src":"975:12:41"},"nativeSrc":"975:12:41","nodeType":"YulExpressionStatement","src":"975:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"945:6:41","nodeType":"YulIdentifier","src":"945:6:41"},{"kind":"number","nativeSrc":"953:18:41","nodeType":"YulLiteral","src":"953:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"942:2:41","nodeType":"YulIdentifier","src":"942:2:41"},"nativeSrc":"942:30:41","nodeType":"YulFunctionCall","src":"942:30:41"},"nativeSrc":"939:50:41","nodeType":"YulIf","src":"939:50:41"},{"nativeSrc":"998:32:41","nodeType":"YulVariableDeclaration","src":"998:32:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1012:9:41","nodeType":"YulIdentifier","src":"1012:9:41"},{"name":"offset","nativeSrc":"1023:6:41","nodeType":"YulIdentifier","src":"1023:6:41"}],"functionName":{"name":"add","nativeSrc":"1008:3:41","nodeType":"YulIdentifier","src":"1008:3:41"},"nativeSrc":"1008:22:41","nodeType":"YulFunctionCall","src":"1008:22:41"},"variables":[{"name":"_1","nativeSrc":"1002:2:41","nodeType":"YulTypedName","src":"1002:2:41","type":""}]},{"body":{"nativeSrc":"1069:16:41","nodeType":"YulBlock","src":"1069:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1078:1:41","nodeType":"YulLiteral","src":"1078:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1081:1:41","nodeType":"YulLiteral","src":"1081:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1071:6:41","nodeType":"YulIdentifier","src":"1071:6:41"},"nativeSrc":"1071:12:41","nodeType":"YulFunctionCall","src":"1071:12:41"},"nativeSrc":"1071:12:41","nodeType":"YulExpressionStatement","src":"1071:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1050:7:41","nodeType":"YulIdentifier","src":"1050:7:41"},{"name":"_1","nativeSrc":"1059:2:41","nodeType":"YulIdentifier","src":"1059:2:41"}],"functionName":{"name":"sub","nativeSrc":"1046:3:41","nodeType":"YulIdentifier","src":"1046:3:41"},"nativeSrc":"1046:16:41","nodeType":"YulFunctionCall","src":"1046:16:41"},{"kind":"number","nativeSrc":"1064:3:41","nodeType":"YulLiteral","src":"1064:3:41","type":"","value":"288"}],"functionName":{"name":"slt","nativeSrc":"1042:3:41","nodeType":"YulIdentifier","src":"1042:3:41"},"nativeSrc":"1042:26:41","nodeType":"YulFunctionCall","src":"1042:26:41"},"nativeSrc":"1039:46:41","nodeType":"YulIf","src":"1039:46:41"},{"nativeSrc":"1094:12:41","nodeType":"YulAssignment","src":"1094:12:41","value":{"name":"_1","nativeSrc":"1104:2:41","nodeType":"YulIdentifier","src":"1104:2:41"},"variableNames":[{"name":"value0","nativeSrc":"1094:6:41","nodeType":"YulIdentifier","src":"1094:6:41"}]},{"nativeSrc":"1115:14:41","nodeType":"YulVariableDeclaration","src":"1115:14:41","value":{"kind":"number","nativeSrc":"1128:1:41","nodeType":"YulLiteral","src":"1128:1:41","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1119:5:41","nodeType":"YulTypedName","src":"1119:5:41","type":""}]},{"nativeSrc":"1138:41:41","nodeType":"YulAssignment","src":"1138:41:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1164:9:41","nodeType":"YulIdentifier","src":"1164:9:41"},{"kind":"number","nativeSrc":"1175:2:41","nodeType":"YulLiteral","src":"1175:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1160:3:41","nodeType":"YulIdentifier","src":"1160:3:41"},"nativeSrc":"1160:18:41","nodeType":"YulFunctionCall","src":"1160:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"1147:12:41","nodeType":"YulIdentifier","src":"1147:12:41"},"nativeSrc":"1147:32:41","nodeType":"YulFunctionCall","src":"1147:32:41"},"variableNames":[{"name":"value","nativeSrc":"1138:5:41","nodeType":"YulIdentifier","src":"1138:5:41"}]},{"nativeSrc":"1188:15:41","nodeType":"YulAssignment","src":"1188:15:41","value":{"name":"value","nativeSrc":"1198:5:41","nodeType":"YulIdentifier","src":"1198:5:41"},"variableNames":[{"name":"value1","nativeSrc":"1188:6:41","nodeType":"YulIdentifier","src":"1188:6:41"}]},{"nativeSrc":"1212:16:41","nodeType":"YulVariableDeclaration","src":"1212:16:41","value":{"kind":"number","nativeSrc":"1227:1:41","nodeType":"YulLiteral","src":"1227:1:41","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"1216:7:41","nodeType":"YulTypedName","src":"1216:7:41","type":""}]},{"nativeSrc":"1237:43:41","nodeType":"YulAssignment","src":"1237:43:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1265:9:41","nodeType":"YulIdentifier","src":"1265:9:41"},{"kind":"number","nativeSrc":"1276:2:41","nodeType":"YulLiteral","src":"1276:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1261:3:41","nodeType":"YulIdentifier","src":"1261:3:41"},"nativeSrc":"1261:18:41","nodeType":"YulFunctionCall","src":"1261:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"1248:12:41","nodeType":"YulIdentifier","src":"1248:12:41"},"nativeSrc":"1248:32:41","nodeType":"YulFunctionCall","src":"1248:32:41"},"variableNames":[{"name":"value_1","nativeSrc":"1237:7:41","nodeType":"YulIdentifier","src":"1237:7:41"}]},{"nativeSrc":"1289:17:41","nodeType":"YulAssignment","src":"1289:17:41","value":{"name":"value_1","nativeSrc":"1299:7:41","nodeType":"YulIdentifier","src":"1299:7:41"},"variableNames":[{"name":"value2","nativeSrc":"1289:6:41","nodeType":"YulIdentifier","src":"1289:6:41"}]}]},"name":"abi_decode_tuple_t_struct$_PackedUserOperation_$1054_calldata_ptrt_bytes32t_uint256","nativeSrc":"679:633:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"772:9:41","nodeType":"YulTypedName","src":"772:9:41","type":""},{"name":"dataEnd","nativeSrc":"783:7:41","nodeType":"YulTypedName","src":"783:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"795:6:41","nodeType":"YulTypedName","src":"795:6:41","type":""},{"name":"value1","nativeSrc":"803:6:41","nodeType":"YulTypedName","src":"803:6:41","type":""},{"name":"value2","nativeSrc":"811:6:41","nodeType":"YulTypedName","src":"811:6:41","type":""}],"src":"679:633:41"},{"body":{"nativeSrc":"1418:76:41","nodeType":"YulBlock","src":"1418:76:41","statements":[{"nativeSrc":"1428:26:41","nodeType":"YulAssignment","src":"1428:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1440:9:41","nodeType":"YulIdentifier","src":"1440:9:41"},{"kind":"number","nativeSrc":"1451:2:41","nodeType":"YulLiteral","src":"1451:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1436:3:41","nodeType":"YulIdentifier","src":"1436:3:41"},"nativeSrc":"1436:18:41","nodeType":"YulFunctionCall","src":"1436:18:41"},"variableNames":[{"name":"tail","nativeSrc":"1428:4:41","nodeType":"YulIdentifier","src":"1428:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1470:9:41","nodeType":"YulIdentifier","src":"1470:9:41"},{"name":"value0","nativeSrc":"1481:6:41","nodeType":"YulIdentifier","src":"1481:6:41"}],"functionName":{"name":"mstore","nativeSrc":"1463:6:41","nodeType":"YulIdentifier","src":"1463:6:41"},"nativeSrc":"1463:25:41","nodeType":"YulFunctionCall","src":"1463:25:41"},"nativeSrc":"1463:25:41","nodeType":"YulExpressionStatement","src":"1463:25:41"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"1317:177:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1387:9:41","nodeType":"YulTypedName","src":"1387:9:41","type":""},{"name":"value0","nativeSrc":"1398:6:41","nodeType":"YulTypedName","src":"1398:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1409:4:41","nodeType":"YulTypedName","src":"1409:4:41","type":""}],"src":"1317:177:41"},{"body":{"nativeSrc":"1569:156:41","nodeType":"YulBlock","src":"1569:156:41","statements":[{"body":{"nativeSrc":"1615:16:41","nodeType":"YulBlock","src":"1615:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1624:1:41","nodeType":"YulLiteral","src":"1624:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1627:1:41","nodeType":"YulLiteral","src":"1627:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1617:6:41","nodeType":"YulIdentifier","src":"1617:6:41"},"nativeSrc":"1617:12:41","nodeType":"YulFunctionCall","src":"1617:12:41"},"nativeSrc":"1617:12:41","nodeType":"YulExpressionStatement","src":"1617:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1590:7:41","nodeType":"YulIdentifier","src":"1590:7:41"},{"name":"headStart","nativeSrc":"1599:9:41","nodeType":"YulIdentifier","src":"1599:9:41"}],"functionName":{"name":"sub","nativeSrc":"1586:3:41","nodeType":"YulIdentifier","src":"1586:3:41"},"nativeSrc":"1586:23:41","nodeType":"YulFunctionCall","src":"1586:23:41"},{"kind":"number","nativeSrc":"1611:2:41","nodeType":"YulLiteral","src":"1611:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1582:3:41","nodeType":"YulIdentifier","src":"1582:3:41"},"nativeSrc":"1582:32:41","nodeType":"YulFunctionCall","src":"1582:32:41"},"nativeSrc":"1579:52:41","nodeType":"YulIf","src":"1579:52:41"},{"nativeSrc":"1640:14:41","nodeType":"YulVariableDeclaration","src":"1640:14:41","value":{"kind":"number","nativeSrc":"1653:1:41","nodeType":"YulLiteral","src":"1653:1:41","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1644:5:41","nodeType":"YulTypedName","src":"1644:5:41","type":""}]},{"nativeSrc":"1663:32:41","nodeType":"YulAssignment","src":"1663:32:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1685:9:41","nodeType":"YulIdentifier","src":"1685:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"1672:12:41","nodeType":"YulIdentifier","src":"1672:12:41"},"nativeSrc":"1672:23:41","nodeType":"YulFunctionCall","src":"1672:23:41"},"variableNames":[{"name":"value","nativeSrc":"1663:5:41","nodeType":"YulIdentifier","src":"1663:5:41"}]},{"nativeSrc":"1704:15:41","nodeType":"YulAssignment","src":"1704:15:41","value":{"name":"value","nativeSrc":"1714:5:41","nodeType":"YulIdentifier","src":"1714:5:41"},"variableNames":[{"name":"value0","nativeSrc":"1704:6:41","nodeType":"YulIdentifier","src":"1704:6:41"}]}]},"name":"abi_decode_tuple_t_bytes32","nativeSrc":"1499:226:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1535:9:41","nodeType":"YulTypedName","src":"1535:9:41","type":""},{"name":"dataEnd","nativeSrc":"1546:7:41","nodeType":"YulTypedName","src":"1546:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1558:6:41","nodeType":"YulTypedName","src":"1558:6:41","type":""}],"src":"1499:226:41"},{"body":{"nativeSrc":"1775:86:41","nodeType":"YulBlock","src":"1775:86:41","statements":[{"body":{"nativeSrc":"1839:16:41","nodeType":"YulBlock","src":"1839:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1848:1:41","nodeType":"YulLiteral","src":"1848:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1851:1:41","nodeType":"YulLiteral","src":"1851:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1841:6:41","nodeType":"YulIdentifier","src":"1841:6:41"},"nativeSrc":"1841:12:41","nodeType":"YulFunctionCall","src":"1841:12:41"},"nativeSrc":"1841:12:41","nodeType":"YulExpressionStatement","src":"1841:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1798:5:41","nodeType":"YulIdentifier","src":"1798:5:41"},{"arguments":[{"name":"value","nativeSrc":"1809:5:41","nodeType":"YulIdentifier","src":"1809:5:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1824:3:41","nodeType":"YulLiteral","src":"1824:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"1829:1:41","nodeType":"YulLiteral","src":"1829:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1820:3:41","nodeType":"YulIdentifier","src":"1820:3:41"},"nativeSrc":"1820:11:41","nodeType":"YulFunctionCall","src":"1820:11:41"},{"kind":"number","nativeSrc":"1833:1:41","nodeType":"YulLiteral","src":"1833:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1816:3:41","nodeType":"YulIdentifier","src":"1816:3:41"},"nativeSrc":"1816:19:41","nodeType":"YulFunctionCall","src":"1816:19:41"}],"functionName":{"name":"and","nativeSrc":"1805:3:41","nodeType":"YulIdentifier","src":"1805:3:41"},"nativeSrc":"1805:31:41","nodeType":"YulFunctionCall","src":"1805:31:41"}],"functionName":{"name":"eq","nativeSrc":"1795:2:41","nodeType":"YulIdentifier","src":"1795:2:41"},"nativeSrc":"1795:42:41","nodeType":"YulFunctionCall","src":"1795:42:41"}],"functionName":{"name":"iszero","nativeSrc":"1788:6:41","nodeType":"YulIdentifier","src":"1788:6:41"},"nativeSrc":"1788:50:41","nodeType":"YulFunctionCall","src":"1788:50:41"},"nativeSrc":"1785:70:41","nodeType":"YulIf","src":"1785:70:41"}]},"name":"validator_revert_address","nativeSrc":"1730:131:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"1764:5:41","nodeType":"YulTypedName","src":"1764:5:41","type":""}],"src":"1730:131:41"},{"body":{"nativeSrc":"1953:280:41","nodeType":"YulBlock","src":"1953:280:41","statements":[{"body":{"nativeSrc":"1999:16:41","nodeType":"YulBlock","src":"1999:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2008:1:41","nodeType":"YulLiteral","src":"2008:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2011:1:41","nodeType":"YulLiteral","src":"2011:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2001:6:41","nodeType":"YulIdentifier","src":"2001:6:41"},"nativeSrc":"2001:12:41","nodeType":"YulFunctionCall","src":"2001:12:41"},"nativeSrc":"2001:12:41","nodeType":"YulExpressionStatement","src":"2001:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1974:7:41","nodeType":"YulIdentifier","src":"1974:7:41"},{"name":"headStart","nativeSrc":"1983:9:41","nodeType":"YulIdentifier","src":"1983:9:41"}],"functionName":{"name":"sub","nativeSrc":"1970:3:41","nodeType":"YulIdentifier","src":"1970:3:41"},"nativeSrc":"1970:23:41","nodeType":"YulFunctionCall","src":"1970:23:41"},{"kind":"number","nativeSrc":"1995:2:41","nodeType":"YulLiteral","src":"1995:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1966:3:41","nodeType":"YulIdentifier","src":"1966:3:41"},"nativeSrc":"1966:32:41","nodeType":"YulFunctionCall","src":"1966:32:41"},"nativeSrc":"1963:52:41","nodeType":"YulIf","src":"1963:52:41"},{"nativeSrc":"2024:14:41","nodeType":"YulVariableDeclaration","src":"2024:14:41","value":{"kind":"number","nativeSrc":"2037:1:41","nodeType":"YulLiteral","src":"2037:1:41","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"2028:5:41","nodeType":"YulTypedName","src":"2028:5:41","type":""}]},{"nativeSrc":"2047:32:41","nodeType":"YulAssignment","src":"2047:32:41","value":{"arguments":[{"name":"headStart","nativeSrc":"2069:9:41","nodeType":"YulIdentifier","src":"2069:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"2056:12:41","nodeType":"YulIdentifier","src":"2056:12:41"},"nativeSrc":"2056:23:41","nodeType":"YulFunctionCall","src":"2056:23:41"},"variableNames":[{"name":"value","nativeSrc":"2047:5:41","nodeType":"YulIdentifier","src":"2047:5:41"}]},{"nativeSrc":"2088:15:41","nodeType":"YulAssignment","src":"2088:15:41","value":{"name":"value","nativeSrc":"2098:5:41","nodeType":"YulIdentifier","src":"2098:5:41"},"variableNames":[{"name":"value0","nativeSrc":"2088:6:41","nodeType":"YulIdentifier","src":"2088:6:41"}]},{"nativeSrc":"2112:47:41","nodeType":"YulVariableDeclaration","src":"2112:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2144:9:41","nodeType":"YulIdentifier","src":"2144:9:41"},{"kind":"number","nativeSrc":"2155:2:41","nodeType":"YulLiteral","src":"2155:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2140:3:41","nodeType":"YulIdentifier","src":"2140:3:41"},"nativeSrc":"2140:18:41","nodeType":"YulFunctionCall","src":"2140:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"2127:12:41","nodeType":"YulIdentifier","src":"2127:12:41"},"nativeSrc":"2127:32:41","nodeType":"YulFunctionCall","src":"2127:32:41"},"variables":[{"name":"value_1","nativeSrc":"2116:7:41","nodeType":"YulTypedName","src":"2116:7:41","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"2193:7:41","nodeType":"YulIdentifier","src":"2193:7:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2168:24:41","nodeType":"YulIdentifier","src":"2168:24:41"},"nativeSrc":"2168:33:41","nodeType":"YulFunctionCall","src":"2168:33:41"},"nativeSrc":"2168:33:41","nodeType":"YulExpressionStatement","src":"2168:33:41"},{"nativeSrc":"2210:17:41","nodeType":"YulAssignment","src":"2210:17:41","value":{"name":"value_1","nativeSrc":"2220:7:41","nodeType":"YulIdentifier","src":"2220:7:41"},"variableNames":[{"name":"value1","nativeSrc":"2210:6:41","nodeType":"YulIdentifier","src":"2210:6:41"}]}]},"name":"abi_decode_tuple_t_bytes32t_address","nativeSrc":"1866:367:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1911:9:41","nodeType":"YulTypedName","src":"1911:9:41","type":""},{"name":"dataEnd","nativeSrc":"1922:7:41","nodeType":"YulTypedName","src":"1922:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1934:6:41","nodeType":"YulTypedName","src":"1934:6:41","type":""},{"name":"value1","nativeSrc":"1942:6:41","nodeType":"YulTypedName","src":"1942:6:41","type":""}],"src":"1866:367:41"},{"body":{"nativeSrc":"2322:283:41","nodeType":"YulBlock","src":"2322:283:41","statements":[{"body":{"nativeSrc":"2371:16:41","nodeType":"YulBlock","src":"2371:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2380:1:41","nodeType":"YulLiteral","src":"2380:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2383:1:41","nodeType":"YulLiteral","src":"2383:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2373:6:41","nodeType":"YulIdentifier","src":"2373:6:41"},"nativeSrc":"2373:12:41","nodeType":"YulFunctionCall","src":"2373:12:41"},"nativeSrc":"2373:12:41","nodeType":"YulExpressionStatement","src":"2373:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2350:6:41","nodeType":"YulIdentifier","src":"2350:6:41"},{"kind":"number","nativeSrc":"2358:4:41","nodeType":"YulLiteral","src":"2358:4:41","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2346:3:41","nodeType":"YulIdentifier","src":"2346:3:41"},"nativeSrc":"2346:17:41","nodeType":"YulFunctionCall","src":"2346:17:41"},{"name":"end","nativeSrc":"2365:3:41","nodeType":"YulIdentifier","src":"2365:3:41"}],"functionName":{"name":"slt","nativeSrc":"2342:3:41","nodeType":"YulIdentifier","src":"2342:3:41"},"nativeSrc":"2342:27:41","nodeType":"YulFunctionCall","src":"2342:27:41"}],"functionName":{"name":"iszero","nativeSrc":"2335:6:41","nodeType":"YulIdentifier","src":"2335:6:41"},"nativeSrc":"2335:35:41","nodeType":"YulFunctionCall","src":"2335:35:41"},"nativeSrc":"2332:55:41","nodeType":"YulIf","src":"2332:55:41"},{"nativeSrc":"2396:30:41","nodeType":"YulAssignment","src":"2396:30:41","value":{"arguments":[{"name":"offset","nativeSrc":"2419:6:41","nodeType":"YulIdentifier","src":"2419:6:41"}],"functionName":{"name":"calldataload","nativeSrc":"2406:12:41","nodeType":"YulIdentifier","src":"2406:12:41"},"nativeSrc":"2406:20:41","nodeType":"YulFunctionCall","src":"2406:20:41"},"variableNames":[{"name":"length","nativeSrc":"2396:6:41","nodeType":"YulIdentifier","src":"2396:6:41"}]},{"body":{"nativeSrc":"2469:16:41","nodeType":"YulBlock","src":"2469:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2478:1:41","nodeType":"YulLiteral","src":"2478:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2481:1:41","nodeType":"YulLiteral","src":"2481:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2471:6:41","nodeType":"YulIdentifier","src":"2471:6:41"},"nativeSrc":"2471:12:41","nodeType":"YulFunctionCall","src":"2471:12:41"},"nativeSrc":"2471:12:41","nodeType":"YulExpressionStatement","src":"2471:12:41"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"2441:6:41","nodeType":"YulIdentifier","src":"2441:6:41"},{"kind":"number","nativeSrc":"2449:18:41","nodeType":"YulLiteral","src":"2449:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2438:2:41","nodeType":"YulIdentifier","src":"2438:2:41"},"nativeSrc":"2438:30:41","nodeType":"YulFunctionCall","src":"2438:30:41"},"nativeSrc":"2435:50:41","nodeType":"YulIf","src":"2435:50:41"},{"nativeSrc":"2494:29:41","nodeType":"YulAssignment","src":"2494:29:41","value":{"arguments":[{"name":"offset","nativeSrc":"2510:6:41","nodeType":"YulIdentifier","src":"2510:6:41"},{"kind":"number","nativeSrc":"2518:4:41","nodeType":"YulLiteral","src":"2518:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2506:3:41","nodeType":"YulIdentifier","src":"2506:3:41"},"nativeSrc":"2506:17:41","nodeType":"YulFunctionCall","src":"2506:17:41"},"variableNames":[{"name":"arrayPos","nativeSrc":"2494:8:41","nodeType":"YulIdentifier","src":"2494:8:41"}]},{"body":{"nativeSrc":"2583:16:41","nodeType":"YulBlock","src":"2583:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2592:1:41","nodeType":"YulLiteral","src":"2592:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2595:1:41","nodeType":"YulLiteral","src":"2595:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2585:6:41","nodeType":"YulIdentifier","src":"2585:6:41"},"nativeSrc":"2585:12:41","nodeType":"YulFunctionCall","src":"2585:12:41"},"nativeSrc":"2585:12:41","nodeType":"YulExpressionStatement","src":"2585:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2546:6:41","nodeType":"YulIdentifier","src":"2546:6:41"},{"arguments":[{"kind":"number","nativeSrc":"2558:1:41","nodeType":"YulLiteral","src":"2558:1:41","type":"","value":"5"},{"name":"length","nativeSrc":"2561:6:41","nodeType":"YulIdentifier","src":"2561:6:41"}],"functionName":{"name":"shl","nativeSrc":"2554:3:41","nodeType":"YulIdentifier","src":"2554:3:41"},"nativeSrc":"2554:14:41","nodeType":"YulFunctionCall","src":"2554:14:41"}],"functionName":{"name":"add","nativeSrc":"2542:3:41","nodeType":"YulIdentifier","src":"2542:3:41"},"nativeSrc":"2542:27:41","nodeType":"YulFunctionCall","src":"2542:27:41"},{"kind":"number","nativeSrc":"2571:4:41","nodeType":"YulLiteral","src":"2571:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2538:3:41","nodeType":"YulIdentifier","src":"2538:3:41"},"nativeSrc":"2538:38:41","nodeType":"YulFunctionCall","src":"2538:38:41"},{"name":"end","nativeSrc":"2578:3:41","nodeType":"YulIdentifier","src":"2578:3:41"}],"functionName":{"name":"gt","nativeSrc":"2535:2:41","nodeType":"YulIdentifier","src":"2535:2:41"},"nativeSrc":"2535:47:41","nodeType":"YulFunctionCall","src":"2535:47:41"},"nativeSrc":"2532:67:41","nodeType":"YulIf","src":"2532:67:41"}]},"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"2238:367:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"2285:6:41","nodeType":"YulTypedName","src":"2285:6:41","type":""},{"name":"end","nativeSrc":"2293:3:41","nodeType":"YulTypedName","src":"2293:3:41","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"2301:8:41","nodeType":"YulTypedName","src":"2301:8:41","type":""},{"name":"length","nativeSrc":"2311:6:41","nodeType":"YulTypedName","src":"2311:6:41","type":""}],"src":"2238:367:41"},{"body":{"nativeSrc":"2830:890:41","nodeType":"YulBlock","src":"2830:890:41","statements":[{"body":{"nativeSrc":"2876:16:41","nodeType":"YulBlock","src":"2876:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2885:1:41","nodeType":"YulLiteral","src":"2885:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2888:1:41","nodeType":"YulLiteral","src":"2888:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2878:6:41","nodeType":"YulIdentifier","src":"2878:6:41"},"nativeSrc":"2878:12:41","nodeType":"YulFunctionCall","src":"2878:12:41"},"nativeSrc":"2878:12:41","nodeType":"YulExpressionStatement","src":"2878:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2851:7:41","nodeType":"YulIdentifier","src":"2851:7:41"},{"name":"headStart","nativeSrc":"2860:9:41","nodeType":"YulIdentifier","src":"2860:9:41"}],"functionName":{"name":"sub","nativeSrc":"2847:3:41","nodeType":"YulIdentifier","src":"2847:3:41"},"nativeSrc":"2847:23:41","nodeType":"YulFunctionCall","src":"2847:23:41"},{"kind":"number","nativeSrc":"2872:2:41","nodeType":"YulLiteral","src":"2872:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"2843:3:41","nodeType":"YulIdentifier","src":"2843:3:41"},"nativeSrc":"2843:32:41","nodeType":"YulFunctionCall","src":"2843:32:41"},"nativeSrc":"2840:52:41","nodeType":"YulIf","src":"2840:52:41"},{"nativeSrc":"2901:37:41","nodeType":"YulVariableDeclaration","src":"2901:37:41","value":{"arguments":[{"name":"headStart","nativeSrc":"2928:9:41","nodeType":"YulIdentifier","src":"2928:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"2915:12:41","nodeType":"YulIdentifier","src":"2915:12:41"},"nativeSrc":"2915:23:41","nodeType":"YulFunctionCall","src":"2915:23:41"},"variables":[{"name":"offset","nativeSrc":"2905:6:41","nodeType":"YulTypedName","src":"2905:6:41","type":""}]},{"body":{"nativeSrc":"2981:16:41","nodeType":"YulBlock","src":"2981:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2990:1:41","nodeType":"YulLiteral","src":"2990:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2993:1:41","nodeType":"YulLiteral","src":"2993:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2983:6:41","nodeType":"YulIdentifier","src":"2983:6:41"},"nativeSrc":"2983:12:41","nodeType":"YulFunctionCall","src":"2983:12:41"},"nativeSrc":"2983:12:41","nodeType":"YulExpressionStatement","src":"2983:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"2953:6:41","nodeType":"YulIdentifier","src":"2953:6:41"},{"kind":"number","nativeSrc":"2961:18:41","nodeType":"YulLiteral","src":"2961:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2950:2:41","nodeType":"YulIdentifier","src":"2950:2:41"},"nativeSrc":"2950:30:41","nodeType":"YulFunctionCall","src":"2950:30:41"},"nativeSrc":"2947:50:41","nodeType":"YulIf","src":"2947:50:41"},{"nativeSrc":"3006:96:41","nodeType":"YulVariableDeclaration","src":"3006:96:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3074:9:41","nodeType":"YulIdentifier","src":"3074:9:41"},{"name":"offset","nativeSrc":"3085:6:41","nodeType":"YulIdentifier","src":"3085:6:41"}],"functionName":{"name":"add","nativeSrc":"3070:3:41","nodeType":"YulIdentifier","src":"3070:3:41"},"nativeSrc":"3070:22:41","nodeType":"YulFunctionCall","src":"3070:22:41"},{"name":"dataEnd","nativeSrc":"3094:7:41","nodeType":"YulIdentifier","src":"3094:7:41"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"3032:37:41","nodeType":"YulIdentifier","src":"3032:37:41"},"nativeSrc":"3032:70:41","nodeType":"YulFunctionCall","src":"3032:70:41"},"variables":[{"name":"value0_1","nativeSrc":"3010:8:41","nodeType":"YulTypedName","src":"3010:8:41","type":""},{"name":"value1_1","nativeSrc":"3020:8:41","nodeType":"YulTypedName","src":"3020:8:41","type":""}]},{"nativeSrc":"3111:18:41","nodeType":"YulAssignment","src":"3111:18:41","value":{"name":"value0_1","nativeSrc":"3121:8:41","nodeType":"YulIdentifier","src":"3121:8:41"},"variableNames":[{"name":"value0","nativeSrc":"3111:6:41","nodeType":"YulIdentifier","src":"3111:6:41"}]},{"nativeSrc":"3138:18:41","nodeType":"YulAssignment","src":"3138:18:41","value":{"name":"value1_1","nativeSrc":"3148:8:41","nodeType":"YulIdentifier","src":"3148:8:41"},"variableNames":[{"name":"value1","nativeSrc":"3138:6:41","nodeType":"YulIdentifier","src":"3138:6:41"}]},{"nativeSrc":"3165:48:41","nodeType":"YulVariableDeclaration","src":"3165:48:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3198:9:41","nodeType":"YulIdentifier","src":"3198:9:41"},{"kind":"number","nativeSrc":"3209:2:41","nodeType":"YulLiteral","src":"3209:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3194:3:41","nodeType":"YulIdentifier","src":"3194:3:41"},"nativeSrc":"3194:18:41","nodeType":"YulFunctionCall","src":"3194:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"3181:12:41","nodeType":"YulIdentifier","src":"3181:12:41"},"nativeSrc":"3181:32:41","nodeType":"YulFunctionCall","src":"3181:32:41"},"variables":[{"name":"offset_1","nativeSrc":"3169:8:41","nodeType":"YulTypedName","src":"3169:8:41","type":""}]},{"body":{"nativeSrc":"3258:16:41","nodeType":"YulBlock","src":"3258:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3267:1:41","nodeType":"YulLiteral","src":"3267:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3270:1:41","nodeType":"YulLiteral","src":"3270:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3260:6:41","nodeType":"YulIdentifier","src":"3260:6:41"},"nativeSrc":"3260:12:41","nodeType":"YulFunctionCall","src":"3260:12:41"},"nativeSrc":"3260:12:41","nodeType":"YulExpressionStatement","src":"3260:12:41"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"3228:8:41","nodeType":"YulIdentifier","src":"3228:8:41"},{"kind":"number","nativeSrc":"3238:18:41","nodeType":"YulLiteral","src":"3238:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3225:2:41","nodeType":"YulIdentifier","src":"3225:2:41"},"nativeSrc":"3225:32:41","nodeType":"YulFunctionCall","src":"3225:32:41"},"nativeSrc":"3222:52:41","nodeType":"YulIf","src":"3222:52:41"},{"nativeSrc":"3283:98:41","nodeType":"YulVariableDeclaration","src":"3283:98:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3351:9:41","nodeType":"YulIdentifier","src":"3351:9:41"},{"name":"offset_1","nativeSrc":"3362:8:41","nodeType":"YulIdentifier","src":"3362:8:41"}],"functionName":{"name":"add","nativeSrc":"3347:3:41","nodeType":"YulIdentifier","src":"3347:3:41"},"nativeSrc":"3347:24:41","nodeType":"YulFunctionCall","src":"3347:24:41"},{"name":"dataEnd","nativeSrc":"3373:7:41","nodeType":"YulIdentifier","src":"3373:7:41"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"3309:37:41","nodeType":"YulIdentifier","src":"3309:37:41"},"nativeSrc":"3309:72:41","nodeType":"YulFunctionCall","src":"3309:72:41"},"variables":[{"name":"value2_1","nativeSrc":"3287:8:41","nodeType":"YulTypedName","src":"3287:8:41","type":""},{"name":"value3_1","nativeSrc":"3297:8:41","nodeType":"YulTypedName","src":"3297:8:41","type":""}]},{"nativeSrc":"3390:18:41","nodeType":"YulAssignment","src":"3390:18:41","value":{"name":"value2_1","nativeSrc":"3400:8:41","nodeType":"YulIdentifier","src":"3400:8:41"},"variableNames":[{"name":"value2","nativeSrc":"3390:6:41","nodeType":"YulIdentifier","src":"3390:6:41"}]},{"nativeSrc":"3417:18:41","nodeType":"YulAssignment","src":"3417:18:41","value":{"name":"value3_1","nativeSrc":"3427:8:41","nodeType":"YulIdentifier","src":"3427:8:41"},"variableNames":[{"name":"value3","nativeSrc":"3417:6:41","nodeType":"YulIdentifier","src":"3417:6:41"}]},{"nativeSrc":"3444:48:41","nodeType":"YulVariableDeclaration","src":"3444:48:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3477:9:41","nodeType":"YulIdentifier","src":"3477:9:41"},{"kind":"number","nativeSrc":"3488:2:41","nodeType":"YulLiteral","src":"3488:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3473:3:41","nodeType":"YulIdentifier","src":"3473:3:41"},"nativeSrc":"3473:18:41","nodeType":"YulFunctionCall","src":"3473:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"3460:12:41","nodeType":"YulIdentifier","src":"3460:12:41"},"nativeSrc":"3460:32:41","nodeType":"YulFunctionCall","src":"3460:32:41"},"variables":[{"name":"offset_2","nativeSrc":"3448:8:41","nodeType":"YulTypedName","src":"3448:8:41","type":""}]},{"body":{"nativeSrc":"3537:16:41","nodeType":"YulBlock","src":"3537:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3546:1:41","nodeType":"YulLiteral","src":"3546:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3549:1:41","nodeType":"YulLiteral","src":"3549:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3539:6:41","nodeType":"YulIdentifier","src":"3539:6:41"},"nativeSrc":"3539:12:41","nodeType":"YulFunctionCall","src":"3539:12:41"},"nativeSrc":"3539:12:41","nodeType":"YulExpressionStatement","src":"3539:12:41"}]},"condition":{"arguments":[{"name":"offset_2","nativeSrc":"3507:8:41","nodeType":"YulIdentifier","src":"3507:8:41"},{"kind":"number","nativeSrc":"3517:18:41","nodeType":"YulLiteral","src":"3517:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3504:2:41","nodeType":"YulIdentifier","src":"3504:2:41"},"nativeSrc":"3504:32:41","nodeType":"YulFunctionCall","src":"3504:32:41"},"nativeSrc":"3501:52:41","nodeType":"YulIf","src":"3501:52:41"},{"nativeSrc":"3562:98:41","nodeType":"YulVariableDeclaration","src":"3562:98:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3630:9:41","nodeType":"YulIdentifier","src":"3630:9:41"},{"name":"offset_2","nativeSrc":"3641:8:41","nodeType":"YulIdentifier","src":"3641:8:41"}],"functionName":{"name":"add","nativeSrc":"3626:3:41","nodeType":"YulIdentifier","src":"3626:3:41"},"nativeSrc":"3626:24:41","nodeType":"YulFunctionCall","src":"3626:24:41"},{"name":"dataEnd","nativeSrc":"3652:7:41","nodeType":"YulIdentifier","src":"3652:7:41"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"3588:37:41","nodeType":"YulIdentifier","src":"3588:37:41"},"nativeSrc":"3588:72:41","nodeType":"YulFunctionCall","src":"3588:72:41"},"variables":[{"name":"value4_1","nativeSrc":"3566:8:41","nodeType":"YulTypedName","src":"3566:8:41","type":""},{"name":"value5_1","nativeSrc":"3576:8:41","nodeType":"YulTypedName","src":"3576:8:41","type":""}]},{"nativeSrc":"3669:18:41","nodeType":"YulAssignment","src":"3669:18:41","value":{"name":"value4_1","nativeSrc":"3679:8:41","nodeType":"YulIdentifier","src":"3679:8:41"},"variableNames":[{"name":"value4","nativeSrc":"3669:6:41","nodeType":"YulIdentifier","src":"3669:6:41"}]},{"nativeSrc":"3696:18:41","nodeType":"YulAssignment","src":"3696:18:41","value":{"name":"value5_1","nativeSrc":"3706:8:41","nodeType":"YulIdentifier","src":"3706:8:41"},"variableNames":[{"name":"value5","nativeSrc":"3696:6:41","nodeType":"YulIdentifier","src":"3696:6:41"}]}]},"name":"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_uint256_$dyn_calldata_ptrt_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","nativeSrc":"2610:1110:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2756:9:41","nodeType":"YulTypedName","src":"2756:9:41","type":""},{"name":"dataEnd","nativeSrc":"2767:7:41","nodeType":"YulTypedName","src":"2767:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2779:6:41","nodeType":"YulTypedName","src":"2779:6:41","type":""},{"name":"value1","nativeSrc":"2787:6:41","nodeType":"YulTypedName","src":"2787:6:41","type":""},{"name":"value2","nativeSrc":"2795:6:41","nodeType":"YulTypedName","src":"2795:6:41","type":""},{"name":"value3","nativeSrc":"2803:6:41","nodeType":"YulTypedName","src":"2803:6:41","type":""},{"name":"value4","nativeSrc":"2811:6:41","nodeType":"YulTypedName","src":"2811:6:41","type":""},{"name":"value5","nativeSrc":"2819:6:41","nodeType":"YulTypedName","src":"2819:6:41","type":""}],"src":"2610:1110:41"},{"body":{"nativeSrc":"3820:280:41","nodeType":"YulBlock","src":"3820:280:41","statements":[{"body":{"nativeSrc":"3866:16:41","nodeType":"YulBlock","src":"3866:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3875:1:41","nodeType":"YulLiteral","src":"3875:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3878:1:41","nodeType":"YulLiteral","src":"3878:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3868:6:41","nodeType":"YulIdentifier","src":"3868:6:41"},"nativeSrc":"3868:12:41","nodeType":"YulFunctionCall","src":"3868:12:41"},"nativeSrc":"3868:12:41","nodeType":"YulExpressionStatement","src":"3868:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3841:7:41","nodeType":"YulIdentifier","src":"3841:7:41"},{"name":"headStart","nativeSrc":"3850:9:41","nodeType":"YulIdentifier","src":"3850:9:41"}],"functionName":{"name":"sub","nativeSrc":"3837:3:41","nodeType":"YulIdentifier","src":"3837:3:41"},"nativeSrc":"3837:23:41","nodeType":"YulFunctionCall","src":"3837:23:41"},{"kind":"number","nativeSrc":"3862:2:41","nodeType":"YulLiteral","src":"3862:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3833:3:41","nodeType":"YulIdentifier","src":"3833:3:41"},"nativeSrc":"3833:32:41","nodeType":"YulFunctionCall","src":"3833:32:41"},"nativeSrc":"3830:52:41","nodeType":"YulIf","src":"3830:52:41"},{"nativeSrc":"3891:36:41","nodeType":"YulVariableDeclaration","src":"3891:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"3917:9:41","nodeType":"YulIdentifier","src":"3917:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"3904:12:41","nodeType":"YulIdentifier","src":"3904:12:41"},"nativeSrc":"3904:23:41","nodeType":"YulFunctionCall","src":"3904:23:41"},"variables":[{"name":"value","nativeSrc":"3895:5:41","nodeType":"YulTypedName","src":"3895:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3961:5:41","nodeType":"YulIdentifier","src":"3961:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3936:24:41","nodeType":"YulIdentifier","src":"3936:24:41"},"nativeSrc":"3936:31:41","nodeType":"YulFunctionCall","src":"3936:31:41"},"nativeSrc":"3936:31:41","nodeType":"YulExpressionStatement","src":"3936:31:41"},{"nativeSrc":"3976:15:41","nodeType":"YulAssignment","src":"3976:15:41","value":{"name":"value","nativeSrc":"3986:5:41","nodeType":"YulIdentifier","src":"3986:5:41"},"variableNames":[{"name":"value0","nativeSrc":"3976:6:41","nodeType":"YulIdentifier","src":"3976:6:41"}]},{"nativeSrc":"4000:16:41","nodeType":"YulVariableDeclaration","src":"4000:16:41","value":{"kind":"number","nativeSrc":"4015:1:41","nodeType":"YulLiteral","src":"4015:1:41","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"4004:7:41","nodeType":"YulTypedName","src":"4004:7:41","type":""}]},{"nativeSrc":"4025:43:41","nodeType":"YulAssignment","src":"4025:43:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4053:9:41","nodeType":"YulIdentifier","src":"4053:9:41"},{"kind":"number","nativeSrc":"4064:2:41","nodeType":"YulLiteral","src":"4064:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4049:3:41","nodeType":"YulIdentifier","src":"4049:3:41"},"nativeSrc":"4049:18:41","nodeType":"YulFunctionCall","src":"4049:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"4036:12:41","nodeType":"YulIdentifier","src":"4036:12:41"},"nativeSrc":"4036:32:41","nodeType":"YulFunctionCall","src":"4036:32:41"},"variableNames":[{"name":"value_1","nativeSrc":"4025:7:41","nodeType":"YulIdentifier","src":"4025:7:41"}]},{"nativeSrc":"4077:17:41","nodeType":"YulAssignment","src":"4077:17:41","value":{"name":"value_1","nativeSrc":"4087:7:41","nodeType":"YulIdentifier","src":"4087:7:41"},"variableNames":[{"name":"value1","nativeSrc":"4077:6:41","nodeType":"YulIdentifier","src":"4077:6:41"}]}]},"name":"abi_decode_tuple_t_address_payablet_uint256","nativeSrc":"3725:375:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3778:9:41","nodeType":"YulTypedName","src":"3778:9:41","type":""},{"name":"dataEnd","nativeSrc":"3789:7:41","nodeType":"YulTypedName","src":"3789:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3801:6:41","nodeType":"YulTypedName","src":"3801:6:41","type":""},{"name":"value1","nativeSrc":"3809:6:41","nodeType":"YulTypedName","src":"3809:6:41","type":""}],"src":"3725:375:41"},{"body":{"nativeSrc":"4225:102:41","nodeType":"YulBlock","src":"4225:102:41","statements":[{"nativeSrc":"4235:26:41","nodeType":"YulAssignment","src":"4235:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"4247:9:41","nodeType":"YulIdentifier","src":"4247:9:41"},{"kind":"number","nativeSrc":"4258:2:41","nodeType":"YulLiteral","src":"4258:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4243:3:41","nodeType":"YulIdentifier","src":"4243:3:41"},"nativeSrc":"4243:18:41","nodeType":"YulFunctionCall","src":"4243:18:41"},"variableNames":[{"name":"tail","nativeSrc":"4235:4:41","nodeType":"YulIdentifier","src":"4235:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4277:9:41","nodeType":"YulIdentifier","src":"4277:9:41"},{"arguments":[{"name":"value0","nativeSrc":"4292:6:41","nodeType":"YulIdentifier","src":"4292:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4308:3:41","nodeType":"YulLiteral","src":"4308:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"4313:1:41","nodeType":"YulLiteral","src":"4313:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4304:3:41","nodeType":"YulIdentifier","src":"4304:3:41"},"nativeSrc":"4304:11:41","nodeType":"YulFunctionCall","src":"4304:11:41"},{"kind":"number","nativeSrc":"4317:1:41","nodeType":"YulLiteral","src":"4317:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4300:3:41","nodeType":"YulIdentifier","src":"4300:3:41"},"nativeSrc":"4300:19:41","nodeType":"YulFunctionCall","src":"4300:19:41"}],"functionName":{"name":"and","nativeSrc":"4288:3:41","nodeType":"YulIdentifier","src":"4288:3:41"},"nativeSrc":"4288:32:41","nodeType":"YulFunctionCall","src":"4288:32:41"}],"functionName":{"name":"mstore","nativeSrc":"4270:6:41","nodeType":"YulIdentifier","src":"4270:6:41"},"nativeSrc":"4270:51:41","nodeType":"YulFunctionCall","src":"4270:51:41"},"nativeSrc":"4270:51:41","nodeType":"YulExpressionStatement","src":"4270:51:41"}]},"name":"abi_encode_tuple_t_contract$_IEntryPoint_$909__to_t_address__fromStack_reversed","nativeSrc":"4105:222:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4194:9:41","nodeType":"YulTypedName","src":"4194:9:41","type":""},{"name":"value0","nativeSrc":"4205:6:41","nodeType":"YulTypedName","src":"4205:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4216:4:41","nodeType":"YulTypedName","src":"4216:4:41","type":""}],"src":"4105:222:41"},{"body":{"nativeSrc":"4455:718:41","nodeType":"YulBlock","src":"4455:718:41","statements":[{"body":{"nativeSrc":"4501:16:41","nodeType":"YulBlock","src":"4501:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4510:1:41","nodeType":"YulLiteral","src":"4510:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"4513:1:41","nodeType":"YulLiteral","src":"4513:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4503:6:41","nodeType":"YulIdentifier","src":"4503:6:41"},"nativeSrc":"4503:12:41","nodeType":"YulFunctionCall","src":"4503:12:41"},"nativeSrc":"4503:12:41","nodeType":"YulExpressionStatement","src":"4503:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4476:7:41","nodeType":"YulIdentifier","src":"4476:7:41"},{"name":"headStart","nativeSrc":"4485:9:41","nodeType":"YulIdentifier","src":"4485:9:41"}],"functionName":{"name":"sub","nativeSrc":"4472:3:41","nodeType":"YulIdentifier","src":"4472:3:41"},"nativeSrc":"4472:23:41","nodeType":"YulFunctionCall","src":"4472:23:41"},{"kind":"number","nativeSrc":"4497:2:41","nodeType":"YulLiteral","src":"4497:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"4468:3:41","nodeType":"YulIdentifier","src":"4468:3:41"},"nativeSrc":"4468:32:41","nodeType":"YulFunctionCall","src":"4468:32:41"},"nativeSrc":"4465:52:41","nodeType":"YulIf","src":"4465:52:41"},{"nativeSrc":"4526:36:41","nodeType":"YulVariableDeclaration","src":"4526:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"4552:9:41","nodeType":"YulIdentifier","src":"4552:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"4539:12:41","nodeType":"YulIdentifier","src":"4539:12:41"},"nativeSrc":"4539:23:41","nodeType":"YulFunctionCall","src":"4539:23:41"},"variables":[{"name":"value","nativeSrc":"4530:5:41","nodeType":"YulTypedName","src":"4530:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4596:5:41","nodeType":"YulIdentifier","src":"4596:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4571:24:41","nodeType":"YulIdentifier","src":"4571:24:41"},"nativeSrc":"4571:31:41","nodeType":"YulFunctionCall","src":"4571:31:41"},"nativeSrc":"4571:31:41","nodeType":"YulExpressionStatement","src":"4571:31:41"},{"nativeSrc":"4611:15:41","nodeType":"YulAssignment","src":"4611:15:41","value":{"name":"value","nativeSrc":"4621:5:41","nodeType":"YulIdentifier","src":"4621:5:41"},"variableNames":[{"name":"value0","nativeSrc":"4611:6:41","nodeType":"YulIdentifier","src":"4611:6:41"}]},{"nativeSrc":"4635:16:41","nodeType":"YulVariableDeclaration","src":"4635:16:41","value":{"kind":"number","nativeSrc":"4650:1:41","nodeType":"YulLiteral","src":"4650:1:41","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"4639:7:41","nodeType":"YulTypedName","src":"4639:7:41","type":""}]},{"nativeSrc":"4660:43:41","nodeType":"YulAssignment","src":"4660:43:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4688:9:41","nodeType":"YulIdentifier","src":"4688:9:41"},{"kind":"number","nativeSrc":"4699:2:41","nodeType":"YulLiteral","src":"4699:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4684:3:41","nodeType":"YulIdentifier","src":"4684:3:41"},"nativeSrc":"4684:18:41","nodeType":"YulFunctionCall","src":"4684:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"4671:12:41","nodeType":"YulIdentifier","src":"4671:12:41"},"nativeSrc":"4671:32:41","nodeType":"YulFunctionCall","src":"4671:32:41"},"variableNames":[{"name":"value_1","nativeSrc":"4660:7:41","nodeType":"YulIdentifier","src":"4660:7:41"}]},{"nativeSrc":"4712:17:41","nodeType":"YulAssignment","src":"4712:17:41","value":{"name":"value_1","nativeSrc":"4722:7:41","nodeType":"YulIdentifier","src":"4722:7:41"},"variableNames":[{"name":"value1","nativeSrc":"4712:6:41","nodeType":"YulIdentifier","src":"4712:6:41"}]},{"nativeSrc":"4738:46:41","nodeType":"YulVariableDeclaration","src":"4738:46:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4769:9:41","nodeType":"YulIdentifier","src":"4769:9:41"},{"kind":"number","nativeSrc":"4780:2:41","nodeType":"YulLiteral","src":"4780:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4765:3:41","nodeType":"YulIdentifier","src":"4765:3:41"},"nativeSrc":"4765:18:41","nodeType":"YulFunctionCall","src":"4765:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"4752:12:41","nodeType":"YulIdentifier","src":"4752:12:41"},"nativeSrc":"4752:32:41","nodeType":"YulFunctionCall","src":"4752:32:41"},"variables":[{"name":"offset","nativeSrc":"4742:6:41","nodeType":"YulTypedName","src":"4742:6:41","type":""}]},{"body":{"nativeSrc":"4827:16:41","nodeType":"YulBlock","src":"4827:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4836:1:41","nodeType":"YulLiteral","src":"4836:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"4839:1:41","nodeType":"YulLiteral","src":"4839:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4829:6:41","nodeType":"YulIdentifier","src":"4829:6:41"},"nativeSrc":"4829:12:41","nodeType":"YulFunctionCall","src":"4829:12:41"},"nativeSrc":"4829:12:41","nodeType":"YulExpressionStatement","src":"4829:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"4799:6:41","nodeType":"YulIdentifier","src":"4799:6:41"},{"kind":"number","nativeSrc":"4807:18:41","nodeType":"YulLiteral","src":"4807:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4796:2:41","nodeType":"YulIdentifier","src":"4796:2:41"},"nativeSrc":"4796:30:41","nodeType":"YulFunctionCall","src":"4796:30:41"},"nativeSrc":"4793:50:41","nodeType":"YulIf","src":"4793:50:41"},{"nativeSrc":"4852:32:41","nodeType":"YulVariableDeclaration","src":"4852:32:41","value":{"arguments":[{"name":"headStart","nativeSrc":"4866:9:41","nodeType":"YulIdentifier","src":"4866:9:41"},{"name":"offset","nativeSrc":"4877:6:41","nodeType":"YulIdentifier","src":"4877:6:41"}],"functionName":{"name":"add","nativeSrc":"4862:3:41","nodeType":"YulIdentifier","src":"4862:3:41"},"nativeSrc":"4862:22:41","nodeType":"YulFunctionCall","src":"4862:22:41"},"variables":[{"name":"_1","nativeSrc":"4856:2:41","nodeType":"YulTypedName","src":"4856:2:41","type":""}]},{"body":{"nativeSrc":"4932:16:41","nodeType":"YulBlock","src":"4932:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4941:1:41","nodeType":"YulLiteral","src":"4941:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"4944:1:41","nodeType":"YulLiteral","src":"4944:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4934:6:41","nodeType":"YulIdentifier","src":"4934:6:41"},"nativeSrc":"4934:12:41","nodeType":"YulFunctionCall","src":"4934:12:41"},"nativeSrc":"4934:12:41","nodeType":"YulExpressionStatement","src":"4934:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"4911:2:41","nodeType":"YulIdentifier","src":"4911:2:41"},{"kind":"number","nativeSrc":"4915:4:41","nodeType":"YulLiteral","src":"4915:4:41","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"4907:3:41","nodeType":"YulIdentifier","src":"4907:3:41"},"nativeSrc":"4907:13:41","nodeType":"YulFunctionCall","src":"4907:13:41"},{"name":"dataEnd","nativeSrc":"4922:7:41","nodeType":"YulIdentifier","src":"4922:7:41"}],"functionName":{"name":"slt","nativeSrc":"4903:3:41","nodeType":"YulIdentifier","src":"4903:3:41"},"nativeSrc":"4903:27:41","nodeType":"YulFunctionCall","src":"4903:27:41"}],"functionName":{"name":"iszero","nativeSrc":"4896:6:41","nodeType":"YulIdentifier","src":"4896:6:41"},"nativeSrc":"4896:35:41","nodeType":"YulFunctionCall","src":"4896:35:41"},"nativeSrc":"4893:55:41","nodeType":"YulIf","src":"4893:55:41"},{"nativeSrc":"4957:30:41","nodeType":"YulVariableDeclaration","src":"4957:30:41","value":{"arguments":[{"name":"_1","nativeSrc":"4984:2:41","nodeType":"YulIdentifier","src":"4984:2:41"}],"functionName":{"name":"calldataload","nativeSrc":"4971:12:41","nodeType":"YulIdentifier","src":"4971:12:41"},"nativeSrc":"4971:16:41","nodeType":"YulFunctionCall","src":"4971:16:41"},"variables":[{"name":"length","nativeSrc":"4961:6:41","nodeType":"YulTypedName","src":"4961:6:41","type":""}]},{"body":{"nativeSrc":"5030:16:41","nodeType":"YulBlock","src":"5030:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5039:1:41","nodeType":"YulLiteral","src":"5039:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"5042:1:41","nodeType":"YulLiteral","src":"5042:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5032:6:41","nodeType":"YulIdentifier","src":"5032:6:41"},"nativeSrc":"5032:12:41","nodeType":"YulFunctionCall","src":"5032:12:41"},"nativeSrc":"5032:12:41","nodeType":"YulExpressionStatement","src":"5032:12:41"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"5002:6:41","nodeType":"YulIdentifier","src":"5002:6:41"},{"kind":"number","nativeSrc":"5010:18:41","nodeType":"YulLiteral","src":"5010:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4999:2:41","nodeType":"YulIdentifier","src":"4999:2:41"},"nativeSrc":"4999:30:41","nodeType":"YulFunctionCall","src":"4999:30:41"},"nativeSrc":"4996:50:41","nodeType":"YulIf","src":"4996:50:41"},{"body":{"nativeSrc":"5096:16:41","nodeType":"YulBlock","src":"5096:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5105:1:41","nodeType":"YulLiteral","src":"5105:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"5108:1:41","nodeType":"YulLiteral","src":"5108:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5098:6:41","nodeType":"YulIdentifier","src":"5098:6:41"},"nativeSrc":"5098:12:41","nodeType":"YulFunctionCall","src":"5098:12:41"},"nativeSrc":"5098:12:41","nodeType":"YulExpressionStatement","src":"5098:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"5069:2:41","nodeType":"YulIdentifier","src":"5069:2:41"},{"name":"length","nativeSrc":"5073:6:41","nodeType":"YulIdentifier","src":"5073:6:41"}],"functionName":{"name":"add","nativeSrc":"5065:3:41","nodeType":"YulIdentifier","src":"5065:3:41"},"nativeSrc":"5065:15:41","nodeType":"YulFunctionCall","src":"5065:15:41"},{"kind":"number","nativeSrc":"5082:2:41","nodeType":"YulLiteral","src":"5082:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5061:3:41","nodeType":"YulIdentifier","src":"5061:3:41"},"nativeSrc":"5061:24:41","nodeType":"YulFunctionCall","src":"5061:24:41"},{"name":"dataEnd","nativeSrc":"5087:7:41","nodeType":"YulIdentifier","src":"5087:7:41"}],"functionName":{"name":"gt","nativeSrc":"5058:2:41","nodeType":"YulIdentifier","src":"5058:2:41"},"nativeSrc":"5058:37:41","nodeType":"YulFunctionCall","src":"5058:37:41"},"nativeSrc":"5055:57:41","nodeType":"YulIf","src":"5055:57:41"},{"nativeSrc":"5121:21:41","nodeType":"YulAssignment","src":"5121:21:41","value":{"arguments":[{"name":"_1","nativeSrc":"5135:2:41","nodeType":"YulIdentifier","src":"5135:2:41"},{"kind":"number","nativeSrc":"5139:2:41","nodeType":"YulLiteral","src":"5139:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5131:3:41","nodeType":"YulIdentifier","src":"5131:3:41"},"nativeSrc":"5131:11:41","nodeType":"YulFunctionCall","src":"5131:11:41"},"variableNames":[{"name":"value2","nativeSrc":"5121:6:41","nodeType":"YulIdentifier","src":"5121:6:41"}]},{"nativeSrc":"5151:16:41","nodeType":"YulAssignment","src":"5151:16:41","value":{"name":"length","nativeSrc":"5161:6:41","nodeType":"YulIdentifier","src":"5161:6:41"},"variableNames":[{"name":"value3","nativeSrc":"5151:6:41","nodeType":"YulIdentifier","src":"5151:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_bytes_calldata_ptr","nativeSrc":"4332:841:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4397:9:41","nodeType":"YulTypedName","src":"4397:9:41","type":""},{"name":"dataEnd","nativeSrc":"4408:7:41","nodeType":"YulTypedName","src":"4408:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4420:6:41","nodeType":"YulTypedName","src":"4420:6:41","type":""},{"name":"value1","nativeSrc":"4428:6:41","nodeType":"YulTypedName","src":"4428:6:41","type":""},{"name":"value2","nativeSrc":"4436:6:41","nodeType":"YulTypedName","src":"4436:6:41","type":""},{"name":"value3","nativeSrc":"4444:6:41","nodeType":"YulTypedName","src":"4444:6:41","type":""}],"src":"4332:841:41"},{"body":{"nativeSrc":"5210:95:41","nodeType":"YulBlock","src":"5210:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5227:1:41","nodeType":"YulLiteral","src":"5227:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5234:3:41","nodeType":"YulLiteral","src":"5234:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"5239:10:41","nodeType":"YulLiteral","src":"5239:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5230:3:41","nodeType":"YulIdentifier","src":"5230:3:41"},"nativeSrc":"5230:20:41","nodeType":"YulFunctionCall","src":"5230:20:41"}],"functionName":{"name":"mstore","nativeSrc":"5220:6:41","nodeType":"YulIdentifier","src":"5220:6:41"},"nativeSrc":"5220:31:41","nodeType":"YulFunctionCall","src":"5220:31:41"},"nativeSrc":"5220:31:41","nodeType":"YulExpressionStatement","src":"5220:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5267:1:41","nodeType":"YulLiteral","src":"5267:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"5270:4:41","nodeType":"YulLiteral","src":"5270:4:41","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"5260:6:41","nodeType":"YulIdentifier","src":"5260:6:41"},"nativeSrc":"5260:15:41","nodeType":"YulFunctionCall","src":"5260:15:41"},"nativeSrc":"5260:15:41","nodeType":"YulExpressionStatement","src":"5260:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5291:1:41","nodeType":"YulLiteral","src":"5291:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"5294:4:41","nodeType":"YulLiteral","src":"5294:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5284:6:41","nodeType":"YulIdentifier","src":"5284:6:41"},"nativeSrc":"5284:15:41","nodeType":"YulFunctionCall","src":"5284:15:41"},"nativeSrc":"5284:15:41","nodeType":"YulExpressionStatement","src":"5284:15:41"}]},"name":"panic_error_0x32","nativeSrc":"5178:127:41","nodeType":"YulFunctionDefinition","src":"5178:127:41"},{"body":{"nativeSrc":"5380:177:41","nodeType":"YulBlock","src":"5380:177:41","statements":[{"body":{"nativeSrc":"5426:16:41","nodeType":"YulBlock","src":"5426:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5435:1:41","nodeType":"YulLiteral","src":"5435:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"5438:1:41","nodeType":"YulLiteral","src":"5438:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5428:6:41","nodeType":"YulIdentifier","src":"5428:6:41"},"nativeSrc":"5428:12:41","nodeType":"YulFunctionCall","src":"5428:12:41"},"nativeSrc":"5428:12:41","nodeType":"YulExpressionStatement","src":"5428:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5401:7:41","nodeType":"YulIdentifier","src":"5401:7:41"},{"name":"headStart","nativeSrc":"5410:9:41","nodeType":"YulIdentifier","src":"5410:9:41"}],"functionName":{"name":"sub","nativeSrc":"5397:3:41","nodeType":"YulIdentifier","src":"5397:3:41"},"nativeSrc":"5397:23:41","nodeType":"YulFunctionCall","src":"5397:23:41"},{"kind":"number","nativeSrc":"5422:2:41","nodeType":"YulLiteral","src":"5422:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5393:3:41","nodeType":"YulIdentifier","src":"5393:3:41"},"nativeSrc":"5393:32:41","nodeType":"YulFunctionCall","src":"5393:32:41"},"nativeSrc":"5390:52:41","nodeType":"YulIf","src":"5390:52:41"},{"nativeSrc":"5451:36:41","nodeType":"YulVariableDeclaration","src":"5451:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"5477:9:41","nodeType":"YulIdentifier","src":"5477:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"5464:12:41","nodeType":"YulIdentifier","src":"5464:12:41"},"nativeSrc":"5464:23:41","nodeType":"YulFunctionCall","src":"5464:23:41"},"variables":[{"name":"value","nativeSrc":"5455:5:41","nodeType":"YulTypedName","src":"5455:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5521:5:41","nodeType":"YulIdentifier","src":"5521:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"5496:24:41","nodeType":"YulIdentifier","src":"5496:24:41"},"nativeSrc":"5496:31:41","nodeType":"YulFunctionCall","src":"5496:31:41"},"nativeSrc":"5496:31:41","nodeType":"YulExpressionStatement","src":"5496:31:41"},{"nativeSrc":"5536:15:41","nodeType":"YulAssignment","src":"5536:15:41","value":{"name":"value","nativeSrc":"5546:5:41","nodeType":"YulIdentifier","src":"5546:5:41"},"variableNames":[{"name":"value0","nativeSrc":"5536:6:41","nodeType":"YulIdentifier","src":"5536:6:41"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"5310:247:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5346:9:41","nodeType":"YulTypedName","src":"5346:9:41","type":""},{"name":"dataEnd","nativeSrc":"5357:7:41","nodeType":"YulTypedName","src":"5357:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5369:6:41","nodeType":"YulTypedName","src":"5369:6:41","type":""}],"src":"5310:247:41"},{"body":{"nativeSrc":"5611:176:41","nodeType":"YulBlock","src":"5611:176:41","statements":[{"nativeSrc":"5621:17:41","nodeType":"YulAssignment","src":"5621:17:41","value":{"arguments":[{"name":"x","nativeSrc":"5633:1:41","nodeType":"YulIdentifier","src":"5633:1:41"},{"name":"y","nativeSrc":"5636:1:41","nodeType":"YulIdentifier","src":"5636:1:41"}],"functionName":{"name":"sub","nativeSrc":"5629:3:41","nodeType":"YulIdentifier","src":"5629:3:41"},"nativeSrc":"5629:9:41","nodeType":"YulFunctionCall","src":"5629:9:41"},"variableNames":[{"name":"diff","nativeSrc":"5621:4:41","nodeType":"YulIdentifier","src":"5621:4:41"}]},{"body":{"nativeSrc":"5670:111:41","nodeType":"YulBlock","src":"5670:111:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5691:1:41","nodeType":"YulLiteral","src":"5691:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5698:3:41","nodeType":"YulLiteral","src":"5698:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"5703:10:41","nodeType":"YulLiteral","src":"5703:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5694:3:41","nodeType":"YulIdentifier","src":"5694:3:41"},"nativeSrc":"5694:20:41","nodeType":"YulFunctionCall","src":"5694:20:41"}],"functionName":{"name":"mstore","nativeSrc":"5684:6:41","nodeType":"YulIdentifier","src":"5684:6:41"},"nativeSrc":"5684:31:41","nodeType":"YulFunctionCall","src":"5684:31:41"},"nativeSrc":"5684:31:41","nodeType":"YulExpressionStatement","src":"5684:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5735:1:41","nodeType":"YulLiteral","src":"5735:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"5738:4:41","nodeType":"YulLiteral","src":"5738:4:41","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"5728:6:41","nodeType":"YulIdentifier","src":"5728:6:41"},"nativeSrc":"5728:15:41","nodeType":"YulFunctionCall","src":"5728:15:41"},"nativeSrc":"5728:15:41","nodeType":"YulExpressionStatement","src":"5728:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5763:1:41","nodeType":"YulLiteral","src":"5763:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"5766:4:41","nodeType":"YulLiteral","src":"5766:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5756:6:41","nodeType":"YulIdentifier","src":"5756:6:41"},"nativeSrc":"5756:15:41","nodeType":"YulFunctionCall","src":"5756:15:41"},"nativeSrc":"5756:15:41","nodeType":"YulExpressionStatement","src":"5756:15:41"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"5653:4:41","nodeType":"YulIdentifier","src":"5653:4:41"},{"name":"x","nativeSrc":"5659:1:41","nodeType":"YulIdentifier","src":"5659:1:41"}],"functionName":{"name":"gt","nativeSrc":"5650:2:41","nodeType":"YulIdentifier","src":"5650:2:41"},"nativeSrc":"5650:11:41","nodeType":"YulFunctionCall","src":"5650:11:41"},"nativeSrc":"5647:134:41","nodeType":"YulIf","src":"5647:134:41"}]},"name":"checked_sub_t_uint256","nativeSrc":"5562:225:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"5593:1:41","nodeType":"YulTypedName","src":"5593:1:41","type":""},{"name":"y","nativeSrc":"5596:1:41","nodeType":"YulTypedName","src":"5596:1:41","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"5602:4:41","nodeType":"YulTypedName","src":"5602:4:41","type":""}],"src":"5562:225:41"},{"body":{"nativeSrc":"5893:102:41","nodeType":"YulBlock","src":"5893:102:41","statements":[{"nativeSrc":"5903:26:41","nodeType":"YulAssignment","src":"5903:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"5915:9:41","nodeType":"YulIdentifier","src":"5915:9:41"},{"kind":"number","nativeSrc":"5926:2:41","nodeType":"YulLiteral","src":"5926:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5911:3:41","nodeType":"YulIdentifier","src":"5911:3:41"},"nativeSrc":"5911:18:41","nodeType":"YulFunctionCall","src":"5911:18:41"},"variableNames":[{"name":"tail","nativeSrc":"5903:4:41","nodeType":"YulIdentifier","src":"5903:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5945:9:41","nodeType":"YulIdentifier","src":"5945:9:41"},{"arguments":[{"name":"value0","nativeSrc":"5960:6:41","nodeType":"YulIdentifier","src":"5960:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5976:3:41","nodeType":"YulLiteral","src":"5976:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"5981:1:41","nodeType":"YulLiteral","src":"5981:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5972:3:41","nodeType":"YulIdentifier","src":"5972:3:41"},"nativeSrc":"5972:11:41","nodeType":"YulFunctionCall","src":"5972:11:41"},{"kind":"number","nativeSrc":"5985:1:41","nodeType":"YulLiteral","src":"5985:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5968:3:41","nodeType":"YulIdentifier","src":"5968:3:41"},"nativeSrc":"5968:19:41","nodeType":"YulFunctionCall","src":"5968:19:41"}],"functionName":{"name":"and","nativeSrc":"5956:3:41","nodeType":"YulIdentifier","src":"5956:3:41"},"nativeSrc":"5956:32:41","nodeType":"YulFunctionCall","src":"5956:32:41"}],"functionName":{"name":"mstore","nativeSrc":"5938:6:41","nodeType":"YulIdentifier","src":"5938:6:41"},"nativeSrc":"5938:51:41","nodeType":"YulFunctionCall","src":"5938:51:41"},"nativeSrc":"5938:51:41","nodeType":"YulExpressionStatement","src":"5938:51:41"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"5792:203:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5862:9:41","nodeType":"YulTypedName","src":"5862:9:41","type":""},{"name":"value0","nativeSrc":"5873:6:41","nodeType":"YulTypedName","src":"5873:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5884:4:41","nodeType":"YulTypedName","src":"5884:4:41","type":""}],"src":"5792:203:41"},{"body":{"nativeSrc":"6094:427:41","nodeType":"YulBlock","src":"6094:427:41","statements":[{"nativeSrc":"6104:51:41","nodeType":"YulVariableDeclaration","src":"6104:51:41","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"6143:11:41","nodeType":"YulIdentifier","src":"6143:11:41"}],"functionName":{"name":"calldataload","nativeSrc":"6130:12:41","nodeType":"YulIdentifier","src":"6130:12:41"},"nativeSrc":"6130:25:41","nodeType":"YulFunctionCall","src":"6130:25:41"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"6108:18:41","nodeType":"YulTypedName","src":"6108:18:41","type":""}]},{"body":{"nativeSrc":"6244:16:41","nodeType":"YulBlock","src":"6244:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6253:1:41","nodeType":"YulLiteral","src":"6253:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"6256:1:41","nodeType":"YulLiteral","src":"6256:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6246:6:41","nodeType":"YulIdentifier","src":"6246:6:41"},"nativeSrc":"6246:12:41","nodeType":"YulFunctionCall","src":"6246:12:41"},"nativeSrc":"6246:12:41","nodeType":"YulExpressionStatement","src":"6246:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"6178:18:41","nodeType":"YulIdentifier","src":"6178:18:41"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"6206:12:41","nodeType":"YulIdentifier","src":"6206:12:41"},"nativeSrc":"6206:14:41","nodeType":"YulFunctionCall","src":"6206:14:41"},{"name":"base_ref","nativeSrc":"6222:8:41","nodeType":"YulIdentifier","src":"6222:8:41"}],"functionName":{"name":"sub","nativeSrc":"6202:3:41","nodeType":"YulIdentifier","src":"6202:3:41"},"nativeSrc":"6202:29:41","nodeType":"YulFunctionCall","src":"6202:29:41"},{"arguments":[{"kind":"number","nativeSrc":"6237:2:41","nodeType":"YulLiteral","src":"6237:2:41","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"6233:3:41","nodeType":"YulIdentifier","src":"6233:3:41"},"nativeSrc":"6233:7:41","nodeType":"YulFunctionCall","src":"6233:7:41"}],"functionName":{"name":"add","nativeSrc":"6198:3:41","nodeType":"YulIdentifier","src":"6198:3:41"},"nativeSrc":"6198:43:41","nodeType":"YulFunctionCall","src":"6198:43:41"}],"functionName":{"name":"slt","nativeSrc":"6174:3:41","nodeType":"YulIdentifier","src":"6174:3:41"},"nativeSrc":"6174:68:41","nodeType":"YulFunctionCall","src":"6174:68:41"}],"functionName":{"name":"iszero","nativeSrc":"6167:6:41","nodeType":"YulIdentifier","src":"6167:6:41"},"nativeSrc":"6167:76:41","nodeType":"YulFunctionCall","src":"6167:76:41"},"nativeSrc":"6164:96:41","nodeType":"YulIf","src":"6164:96:41"},{"nativeSrc":"6269:47:41","nodeType":"YulVariableDeclaration","src":"6269:47:41","value":{"arguments":[{"name":"base_ref","nativeSrc":"6287:8:41","nodeType":"YulIdentifier","src":"6287:8:41"},{"name":"rel_offset_of_tail","nativeSrc":"6297:18:41","nodeType":"YulIdentifier","src":"6297:18:41"}],"functionName":{"name":"add","nativeSrc":"6283:3:41","nodeType":"YulIdentifier","src":"6283:3:41"},"nativeSrc":"6283:33:41","nodeType":"YulFunctionCall","src":"6283:33:41"},"variables":[{"name":"addr_1","nativeSrc":"6273:6:41","nodeType":"YulTypedName","src":"6273:6:41","type":""}]},{"nativeSrc":"6325:30:41","nodeType":"YulAssignment","src":"6325:30:41","value":{"arguments":[{"name":"addr_1","nativeSrc":"6348:6:41","nodeType":"YulIdentifier","src":"6348:6:41"}],"functionName":{"name":"calldataload","nativeSrc":"6335:12:41","nodeType":"YulIdentifier","src":"6335:12:41"},"nativeSrc":"6335:20:41","nodeType":"YulFunctionCall","src":"6335:20:41"},"variableNames":[{"name":"length","nativeSrc":"6325:6:41","nodeType":"YulIdentifier","src":"6325:6:41"}]},{"body":{"nativeSrc":"6398:16:41","nodeType":"YulBlock","src":"6398:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6407:1:41","nodeType":"YulLiteral","src":"6407:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"6410:1:41","nodeType":"YulLiteral","src":"6410:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6400:6:41","nodeType":"YulIdentifier","src":"6400:6:41"},"nativeSrc":"6400:12:41","nodeType":"YulFunctionCall","src":"6400:12:41"},"nativeSrc":"6400:12:41","nodeType":"YulExpressionStatement","src":"6400:12:41"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"6370:6:41","nodeType":"YulIdentifier","src":"6370:6:41"},{"kind":"number","nativeSrc":"6378:18:41","nodeType":"YulLiteral","src":"6378:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6367:2:41","nodeType":"YulIdentifier","src":"6367:2:41"},"nativeSrc":"6367:30:41","nodeType":"YulFunctionCall","src":"6367:30:41"},"nativeSrc":"6364:50:41","nodeType":"YulIf","src":"6364:50:41"},{"nativeSrc":"6423:25:41","nodeType":"YulAssignment","src":"6423:25:41","value":{"arguments":[{"name":"addr_1","nativeSrc":"6435:6:41","nodeType":"YulIdentifier","src":"6435:6:41"},{"kind":"number","nativeSrc":"6443:4:41","nodeType":"YulLiteral","src":"6443:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6431:3:41","nodeType":"YulIdentifier","src":"6431:3:41"},"nativeSrc":"6431:17:41","nodeType":"YulFunctionCall","src":"6431:17:41"},"variableNames":[{"name":"addr","nativeSrc":"6423:4:41","nodeType":"YulIdentifier","src":"6423:4:41"}]},{"body":{"nativeSrc":"6499:16:41","nodeType":"YulBlock","src":"6499:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6508:1:41","nodeType":"YulLiteral","src":"6508:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"6511:1:41","nodeType":"YulLiteral","src":"6511:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6501:6:41","nodeType":"YulIdentifier","src":"6501:6:41"},"nativeSrc":"6501:12:41","nodeType":"YulFunctionCall","src":"6501:12:41"},"nativeSrc":"6501:12:41","nodeType":"YulExpressionStatement","src":"6501:12:41"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"6464:4:41","nodeType":"YulIdentifier","src":"6464:4:41"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"6474:12:41","nodeType":"YulIdentifier","src":"6474:12:41"},"nativeSrc":"6474:14:41","nodeType":"YulFunctionCall","src":"6474:14:41"},{"name":"length","nativeSrc":"6490:6:41","nodeType":"YulIdentifier","src":"6490:6:41"}],"functionName":{"name":"sub","nativeSrc":"6470:3:41","nodeType":"YulIdentifier","src":"6470:3:41"},"nativeSrc":"6470:27:41","nodeType":"YulFunctionCall","src":"6470:27:41"}],"functionName":{"name":"sgt","nativeSrc":"6460:3:41","nodeType":"YulIdentifier","src":"6460:3:41"},"nativeSrc":"6460:38:41","nodeType":"YulFunctionCall","src":"6460:38:41"},"nativeSrc":"6457:58:41","nodeType":"YulIf","src":"6457:58:41"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"6000:521:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"6051:8:41","nodeType":"YulTypedName","src":"6051:8:41","type":""},{"name":"ptr_to_tail","nativeSrc":"6061:11:41","nodeType":"YulTypedName","src":"6061:11:41","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"6077:4:41","nodeType":"YulTypedName","src":"6077:4:41","type":""},{"name":"length","nativeSrc":"6083:6:41","nodeType":"YulTypedName","src":"6083:6:41","type":""}],"src":"6000:521:41"},{"body":{"nativeSrc":"6701:185:41","nodeType":"YulBlock","src":"6701:185:41","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"6724:3:41","nodeType":"YulIdentifier","src":"6724:3:41"},{"name":"value0","nativeSrc":"6729:6:41","nodeType":"YulIdentifier","src":"6729:6:41"},{"name":"value1","nativeSrc":"6737:6:41","nodeType":"YulIdentifier","src":"6737:6:41"}],"functionName":{"name":"calldatacopy","nativeSrc":"6711:12:41","nodeType":"YulIdentifier","src":"6711:12:41"},"nativeSrc":"6711:33:41","nodeType":"YulFunctionCall","src":"6711:33:41"},"nativeSrc":"6711:33:41","nodeType":"YulExpressionStatement","src":"6711:33:41"},{"nativeSrc":"6753:26:41","nodeType":"YulVariableDeclaration","src":"6753:26:41","value":{"arguments":[{"name":"pos","nativeSrc":"6767:3:41","nodeType":"YulIdentifier","src":"6767:3:41"},{"name":"value1","nativeSrc":"6772:6:41","nodeType":"YulIdentifier","src":"6772:6:41"}],"functionName":{"name":"add","nativeSrc":"6763:3:41","nodeType":"YulIdentifier","src":"6763:3:41"},"nativeSrc":"6763:16:41","nodeType":"YulFunctionCall","src":"6763:16:41"},"variables":[{"name":"_1","nativeSrc":"6757:2:41","nodeType":"YulTypedName","src":"6757:2:41","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"6795:2:41","nodeType":"YulIdentifier","src":"6795:2:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6807:2:41","nodeType":"YulLiteral","src":"6807:2:41","type":"","value":"96"},{"name":"value2","nativeSrc":"6811:6:41","nodeType":"YulIdentifier","src":"6811:6:41"}],"functionName":{"name":"shl","nativeSrc":"6803:3:41","nodeType":"YulIdentifier","src":"6803:3:41"},"nativeSrc":"6803:15:41","nodeType":"YulFunctionCall","src":"6803:15:41"},{"arguments":[{"kind":"number","nativeSrc":"6824:26:41","nodeType":"YulLiteral","src":"6824:26:41","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"6820:3:41","nodeType":"YulIdentifier","src":"6820:3:41"},"nativeSrc":"6820:31:41","nodeType":"YulFunctionCall","src":"6820:31:41"}],"functionName":{"name":"and","nativeSrc":"6799:3:41","nodeType":"YulIdentifier","src":"6799:3:41"},"nativeSrc":"6799:53:41","nodeType":"YulFunctionCall","src":"6799:53:41"}],"functionName":{"name":"mstore","nativeSrc":"6788:6:41","nodeType":"YulIdentifier","src":"6788:6:41"},"nativeSrc":"6788:65:41","nodeType":"YulFunctionCall","src":"6788:65:41"},"nativeSrc":"6788:65:41","nodeType":"YulExpressionStatement","src":"6788:65:41"},{"nativeSrc":"6862:18:41","nodeType":"YulAssignment","src":"6862:18:41","value":{"arguments":[{"name":"_1","nativeSrc":"6873:2:41","nodeType":"YulIdentifier","src":"6873:2:41"},{"kind":"number","nativeSrc":"6877:2:41","nodeType":"YulLiteral","src":"6877:2:41","type":"","value":"20"}],"functionName":{"name":"add","nativeSrc":"6869:3:41","nodeType":"YulIdentifier","src":"6869:3:41"},"nativeSrc":"6869:11:41","nodeType":"YulFunctionCall","src":"6869:11:41"},"variableNames":[{"name":"end","nativeSrc":"6862:3:41","nodeType":"YulIdentifier","src":"6862:3:41"}]}]},"name":"abi_encode_tuple_packed_t_bytes_calldata_ptr_t_address__to_t_bytes_memory_ptr_t_address__nonPadded_inplace_fromStack_reversed","nativeSrc":"6526:360:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"6661:3:41","nodeType":"YulTypedName","src":"6661:3:41","type":""},{"name":"value2","nativeSrc":"6666:6:41","nodeType":"YulTypedName","src":"6666:6:41","type":""},{"name":"value1","nativeSrc":"6674:6:41","nodeType":"YulTypedName","src":"6674:6:41","type":""},{"name":"value0","nativeSrc":"6682:6:41","nodeType":"YulTypedName","src":"6682:6:41","type":""}],"returnVariables":[{"name":"end","nativeSrc":"6693:3:41","nodeType":"YulTypedName","src":"6693:3:41","type":""}],"src":"6526:360:41"},{"body":{"nativeSrc":"7036:145:41","nodeType":"YulBlock","src":"7036:145:41","statements":[{"nativeSrc":"7046:26:41","nodeType":"YulAssignment","src":"7046:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"7058:9:41","nodeType":"YulIdentifier","src":"7058:9:41"},{"kind":"number","nativeSrc":"7069:2:41","nodeType":"YulLiteral","src":"7069:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7054:3:41","nodeType":"YulIdentifier","src":"7054:3:41"},"nativeSrc":"7054:18:41","nodeType":"YulFunctionCall","src":"7054:18:41"},"variableNames":[{"name":"tail","nativeSrc":"7046:4:41","nodeType":"YulIdentifier","src":"7046:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7088:9:41","nodeType":"YulIdentifier","src":"7088:9:41"},{"arguments":[{"name":"value0","nativeSrc":"7103:6:41","nodeType":"YulIdentifier","src":"7103:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7119:3:41","nodeType":"YulLiteral","src":"7119:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"7124:1:41","nodeType":"YulLiteral","src":"7124:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7115:3:41","nodeType":"YulIdentifier","src":"7115:3:41"},"nativeSrc":"7115:11:41","nodeType":"YulFunctionCall","src":"7115:11:41"},{"kind":"number","nativeSrc":"7128:1:41","nodeType":"YulLiteral","src":"7128:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7111:3:41","nodeType":"YulIdentifier","src":"7111:3:41"},"nativeSrc":"7111:19:41","nodeType":"YulFunctionCall","src":"7111:19:41"}],"functionName":{"name":"and","nativeSrc":"7099:3:41","nodeType":"YulIdentifier","src":"7099:3:41"},"nativeSrc":"7099:32:41","nodeType":"YulFunctionCall","src":"7099:32:41"}],"functionName":{"name":"mstore","nativeSrc":"7081:6:41","nodeType":"YulIdentifier","src":"7081:6:41"},"nativeSrc":"7081:51:41","nodeType":"YulFunctionCall","src":"7081:51:41"},"nativeSrc":"7081:51:41","nodeType":"YulExpressionStatement","src":"7081:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7152:9:41","nodeType":"YulIdentifier","src":"7152:9:41"},{"kind":"number","nativeSrc":"7163:2:41","nodeType":"YulLiteral","src":"7163:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7148:3:41","nodeType":"YulIdentifier","src":"7148:3:41"},"nativeSrc":"7148:18:41","nodeType":"YulFunctionCall","src":"7148:18:41"},{"name":"value1","nativeSrc":"7168:6:41","nodeType":"YulIdentifier","src":"7168:6:41"}],"functionName":{"name":"mstore","nativeSrc":"7141:6:41","nodeType":"YulIdentifier","src":"7141:6:41"},"nativeSrc":"7141:34:41","nodeType":"YulFunctionCall","src":"7141:34:41"},"nativeSrc":"7141:34:41","nodeType":"YulExpressionStatement","src":"7141:34:41"}]},"name":"abi_encode_tuple_t_address_payable_t_uint256__to_t_address_payable_t_uint256__fromStack_reversed","nativeSrc":"6891:290:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6997:9:41","nodeType":"YulTypedName","src":"6997:9:41","type":""},{"name":"value1","nativeSrc":"7008:6:41","nodeType":"YulTypedName","src":"7008:6:41","type":""},{"name":"value0","nativeSrc":"7016:6:41","nodeType":"YulTypedName","src":"7016:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7027:4:41","nodeType":"YulTypedName","src":"7027:4:41","type":""}],"src":"6891:290:41"},{"body":{"nativeSrc":"7267:103:41","nodeType":"YulBlock","src":"7267:103:41","statements":[{"body":{"nativeSrc":"7313:16:41","nodeType":"YulBlock","src":"7313:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7322:1:41","nodeType":"YulLiteral","src":"7322:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"7325:1:41","nodeType":"YulLiteral","src":"7325:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7315:6:41","nodeType":"YulIdentifier","src":"7315:6:41"},"nativeSrc":"7315:12:41","nodeType":"YulFunctionCall","src":"7315:12:41"},"nativeSrc":"7315:12:41","nodeType":"YulExpressionStatement","src":"7315:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7288:7:41","nodeType":"YulIdentifier","src":"7288:7:41"},{"name":"headStart","nativeSrc":"7297:9:41","nodeType":"YulIdentifier","src":"7297:9:41"}],"functionName":{"name":"sub","nativeSrc":"7284:3:41","nodeType":"YulIdentifier","src":"7284:3:41"},"nativeSrc":"7284:23:41","nodeType":"YulFunctionCall","src":"7284:23:41"},{"kind":"number","nativeSrc":"7309:2:41","nodeType":"YulLiteral","src":"7309:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"7280:3:41","nodeType":"YulIdentifier","src":"7280:3:41"},"nativeSrc":"7280:32:41","nodeType":"YulFunctionCall","src":"7280:32:41"},"nativeSrc":"7277:52:41","nodeType":"YulIf","src":"7277:52:41"},{"nativeSrc":"7338:26:41","nodeType":"YulAssignment","src":"7338:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"7354:9:41","nodeType":"YulIdentifier","src":"7354:9:41"}],"functionName":{"name":"mload","nativeSrc":"7348:5:41","nodeType":"YulIdentifier","src":"7348:5:41"},"nativeSrc":"7348:16:41","nodeType":"YulFunctionCall","src":"7348:16:41"},"variableNames":[{"name":"value0","nativeSrc":"7338:6:41","nodeType":"YulIdentifier","src":"7338:6:41"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"7186:184:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7233:9:41","nodeType":"YulTypedName","src":"7233:9:41","type":""},{"name":"dataEnd","nativeSrc":"7244:7:41","nodeType":"YulTypedName","src":"7244:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7256:6:41","nodeType":"YulTypedName","src":"7256:6:41","type":""}],"src":"7186:184:41"},{"body":{"nativeSrc":"7512:171:41","nodeType":"YulBlock","src":"7512:171:41","statements":[{"nativeSrc":"7522:26:41","nodeType":"YulAssignment","src":"7522:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"7534:9:41","nodeType":"YulIdentifier","src":"7534:9:41"},{"kind":"number","nativeSrc":"7545:2:41","nodeType":"YulLiteral","src":"7545:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7530:3:41","nodeType":"YulIdentifier","src":"7530:3:41"},"nativeSrc":"7530:18:41","nodeType":"YulFunctionCall","src":"7530:18:41"},"variableNames":[{"name":"tail","nativeSrc":"7522:4:41","nodeType":"YulIdentifier","src":"7522:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7564:9:41","nodeType":"YulIdentifier","src":"7564:9:41"},{"arguments":[{"name":"value0","nativeSrc":"7579:6:41","nodeType":"YulIdentifier","src":"7579:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7595:3:41","nodeType":"YulLiteral","src":"7595:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"7600:1:41","nodeType":"YulLiteral","src":"7600:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7591:3:41","nodeType":"YulIdentifier","src":"7591:3:41"},"nativeSrc":"7591:11:41","nodeType":"YulFunctionCall","src":"7591:11:41"},{"kind":"number","nativeSrc":"7604:1:41","nodeType":"YulLiteral","src":"7604:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7587:3:41","nodeType":"YulIdentifier","src":"7587:3:41"},"nativeSrc":"7587:19:41","nodeType":"YulFunctionCall","src":"7587:19:41"}],"functionName":{"name":"and","nativeSrc":"7575:3:41","nodeType":"YulIdentifier","src":"7575:3:41"},"nativeSrc":"7575:32:41","nodeType":"YulFunctionCall","src":"7575:32:41"}],"functionName":{"name":"mstore","nativeSrc":"7557:6:41","nodeType":"YulIdentifier","src":"7557:6:41"},"nativeSrc":"7557:51:41","nodeType":"YulFunctionCall","src":"7557:51:41"},"nativeSrc":"7557:51:41","nodeType":"YulExpressionStatement","src":"7557:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7628:9:41","nodeType":"YulIdentifier","src":"7628:9:41"},{"kind":"number","nativeSrc":"7639:2:41","nodeType":"YulLiteral","src":"7639:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7624:3:41","nodeType":"YulIdentifier","src":"7624:3:41"},"nativeSrc":"7624:18:41","nodeType":"YulFunctionCall","src":"7624:18:41"},{"arguments":[{"name":"value1","nativeSrc":"7648:6:41","nodeType":"YulIdentifier","src":"7648:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7664:3:41","nodeType":"YulLiteral","src":"7664:3:41","type":"","value":"192"},{"kind":"number","nativeSrc":"7669:1:41","nodeType":"YulLiteral","src":"7669:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7660:3:41","nodeType":"YulIdentifier","src":"7660:3:41"},"nativeSrc":"7660:11:41","nodeType":"YulFunctionCall","src":"7660:11:41"},{"kind":"number","nativeSrc":"7673:1:41","nodeType":"YulLiteral","src":"7673:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7656:3:41","nodeType":"YulIdentifier","src":"7656:3:41"},"nativeSrc":"7656:19:41","nodeType":"YulFunctionCall","src":"7656:19:41"}],"functionName":{"name":"and","nativeSrc":"7644:3:41","nodeType":"YulIdentifier","src":"7644:3:41"},"nativeSrc":"7644:32:41","nodeType":"YulFunctionCall","src":"7644:32:41"}],"functionName":{"name":"mstore","nativeSrc":"7617:6:41","nodeType":"YulIdentifier","src":"7617:6:41"},"nativeSrc":"7617:60:41","nodeType":"YulFunctionCall","src":"7617:60:41"},"nativeSrc":"7617:60:41","nodeType":"YulExpressionStatement","src":"7617:60:41"}]},"name":"abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint192__fromStack_reversed","nativeSrc":"7375:308:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7473:9:41","nodeType":"YulTypedName","src":"7473:9:41","type":""},{"name":"value1","nativeSrc":"7484:6:41","nodeType":"YulTypedName","src":"7484:6:41","type":""},{"name":"value0","nativeSrc":"7492:6:41","nodeType":"YulTypedName","src":"7492:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7503:4:41","nodeType":"YulTypedName","src":"7503:4:41","type":""}],"src":"7375:308:41"},{"body":{"nativeSrc":"7862:178:41","nodeType":"YulBlock","src":"7862:178:41","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7879:9:41","nodeType":"YulIdentifier","src":"7879:9:41"},{"kind":"number","nativeSrc":"7890:2:41","nodeType":"YulLiteral","src":"7890:2:41","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"7872:6:41","nodeType":"YulIdentifier","src":"7872:6:41"},"nativeSrc":"7872:21:41","nodeType":"YulFunctionCall","src":"7872:21:41"},"nativeSrc":"7872:21:41","nodeType":"YulExpressionStatement","src":"7872:21:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7913:9:41","nodeType":"YulIdentifier","src":"7913:9:41"},{"kind":"number","nativeSrc":"7924:2:41","nodeType":"YulLiteral","src":"7924:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7909:3:41","nodeType":"YulIdentifier","src":"7909:3:41"},"nativeSrc":"7909:18:41","nodeType":"YulFunctionCall","src":"7909:18:41"},{"kind":"number","nativeSrc":"7929:2:41","nodeType":"YulLiteral","src":"7929:2:41","type":"","value":"28"}],"functionName":{"name":"mstore","nativeSrc":"7902:6:41","nodeType":"YulIdentifier","src":"7902:6:41"},"nativeSrc":"7902:30:41","nodeType":"YulFunctionCall","src":"7902:30:41"},"nativeSrc":"7902:30:41","nodeType":"YulExpressionStatement","src":"7902:30:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7952:9:41","nodeType":"YulIdentifier","src":"7952:9:41"},{"kind":"number","nativeSrc":"7963:2:41","nodeType":"YulLiteral","src":"7963:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7948:3:41","nodeType":"YulIdentifier","src":"7948:3:41"},"nativeSrc":"7948:18:41","nodeType":"YulFunctionCall","src":"7948:18:41"},{"hexValue":"6163636f756e743a206e6f742066726f6d20456e747279506f696e74","kind":"string","nativeSrc":"7968:30:41","nodeType":"YulLiteral","src":"7968:30:41","type":"","value":"account: not from EntryPoint"}],"functionName":{"name":"mstore","nativeSrc":"7941:6:41","nodeType":"YulIdentifier","src":"7941:6:41"},"nativeSrc":"7941:58:41","nodeType":"YulFunctionCall","src":"7941:58:41"},"nativeSrc":"7941:58:41","nodeType":"YulExpressionStatement","src":"7941:58:41"},{"nativeSrc":"8008:26:41","nodeType":"YulAssignment","src":"8008:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"8020:9:41","nodeType":"YulIdentifier","src":"8020:9:41"},{"kind":"number","nativeSrc":"8031:2:41","nodeType":"YulLiteral","src":"8031:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8016:3:41","nodeType":"YulIdentifier","src":"8016:3:41"},"nativeSrc":"8016:18:41","nodeType":"YulFunctionCall","src":"8016:18:41"},"variableNames":[{"name":"tail","nativeSrc":"8008:4:41","nodeType":"YulIdentifier","src":"8008:4:41"}]}]},"name":"abi_encode_tuple_t_stringliteral_f684c2c0c9ec797849b62669189fe025e9077c00ba7812987ce38c0071ad7a50__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"7688:352:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7839:9:41","nodeType":"YulTypedName","src":"7839:9:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7853:4:41","nodeType":"YulTypedName","src":"7853:4:41","type":""}],"src":"7688:352:41"},{"body":{"nativeSrc":"8236:14:41","nodeType":"YulBlock","src":"8236:14:41","statements":[{"nativeSrc":"8238:10:41","nodeType":"YulAssignment","src":"8238:10:41","value":{"name":"pos","nativeSrc":"8245:3:41","nodeType":"YulIdentifier","src":"8245:3:41"},"variableNames":[{"name":"end","nativeSrc":"8238:3:41","nodeType":"YulIdentifier","src":"8238:3:41"}]}]},"name":"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"8045:205:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"8220:3:41","nodeType":"YulTypedName","src":"8220:3:41","type":""}],"returnVariables":[{"name":"end","nativeSrc":"8228:3:41","nodeType":"YulTypedName","src":"8228:3:41","type":""}],"src":"8045:205:41"},{"body":{"nativeSrc":"8384:119:41","nodeType":"YulBlock","src":"8384:119:41","statements":[{"nativeSrc":"8394:26:41","nodeType":"YulAssignment","src":"8394:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"8406:9:41","nodeType":"YulIdentifier","src":"8406:9:41"},{"kind":"number","nativeSrc":"8417:2:41","nodeType":"YulLiteral","src":"8417:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8402:3:41","nodeType":"YulIdentifier","src":"8402:3:41"},"nativeSrc":"8402:18:41","nodeType":"YulFunctionCall","src":"8402:18:41"},"variableNames":[{"name":"tail","nativeSrc":"8394:4:41","nodeType":"YulIdentifier","src":"8394:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8436:9:41","nodeType":"YulIdentifier","src":"8436:9:41"},{"name":"value0","nativeSrc":"8447:6:41","nodeType":"YulIdentifier","src":"8447:6:41"}],"functionName":{"name":"mstore","nativeSrc":"8429:6:41","nodeType":"YulIdentifier","src":"8429:6:41"},"nativeSrc":"8429:25:41","nodeType":"YulFunctionCall","src":"8429:25:41"},"nativeSrc":"8429:25:41","nodeType":"YulExpressionStatement","src":"8429:25:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8474:9:41","nodeType":"YulIdentifier","src":"8474:9:41"},{"kind":"number","nativeSrc":"8485:2:41","nodeType":"YulLiteral","src":"8485:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8470:3:41","nodeType":"YulIdentifier","src":"8470:3:41"},"nativeSrc":"8470:18:41","nodeType":"YulFunctionCall","src":"8470:18:41"},{"name":"value1","nativeSrc":"8490:6:41","nodeType":"YulIdentifier","src":"8490:6:41"}],"functionName":{"name":"mstore","nativeSrc":"8463:6:41","nodeType":"YulIdentifier","src":"8463:6:41"},"nativeSrc":"8463:34:41","nodeType":"YulFunctionCall","src":"8463:34:41"},"nativeSrc":"8463:34:41","nodeType":"YulExpressionStatement","src":"8463:34:41"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"8255:248:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8345:9:41","nodeType":"YulTypedName","src":"8345:9:41","type":""},{"name":"value1","nativeSrc":"8356:6:41","nodeType":"YulTypedName","src":"8356:6:41","type":""},{"name":"value0","nativeSrc":"8364:6:41","nodeType":"YulTypedName","src":"8364:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8375:4:41","nodeType":"YulTypedName","src":"8375:4:41","type":""}],"src":"8255:248:41"},{"body":{"nativeSrc":"8645:164:41","nodeType":"YulBlock","src":"8645:164:41","statements":[{"nativeSrc":"8655:27:41","nodeType":"YulVariableDeclaration","src":"8655:27:41","value":{"arguments":[{"name":"value0","nativeSrc":"8675:6:41","nodeType":"YulIdentifier","src":"8675:6:41"}],"functionName":{"name":"mload","nativeSrc":"8669:5:41","nodeType":"YulIdentifier","src":"8669:5:41"},"nativeSrc":"8669:13:41","nodeType":"YulFunctionCall","src":"8669:13:41"},"variables":[{"name":"length","nativeSrc":"8659:6:41","nodeType":"YulTypedName","src":"8659:6:41","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"8697:3:41","nodeType":"YulIdentifier","src":"8697:3:41"},{"arguments":[{"name":"value0","nativeSrc":"8706:6:41","nodeType":"YulIdentifier","src":"8706:6:41"},{"kind":"number","nativeSrc":"8714:4:41","nodeType":"YulLiteral","src":"8714:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"8702:3:41","nodeType":"YulIdentifier","src":"8702:3:41"},"nativeSrc":"8702:17:41","nodeType":"YulFunctionCall","src":"8702:17:41"},{"name":"length","nativeSrc":"8721:6:41","nodeType":"YulIdentifier","src":"8721:6:41"}],"functionName":{"name":"mcopy","nativeSrc":"8691:5:41","nodeType":"YulIdentifier","src":"8691:5:41"},"nativeSrc":"8691:37:41","nodeType":"YulFunctionCall","src":"8691:37:41"},"nativeSrc":"8691:37:41","nodeType":"YulExpressionStatement","src":"8691:37:41"},{"nativeSrc":"8737:26:41","nodeType":"YulVariableDeclaration","src":"8737:26:41","value":{"arguments":[{"name":"pos","nativeSrc":"8751:3:41","nodeType":"YulIdentifier","src":"8751:3:41"},{"name":"length","nativeSrc":"8756:6:41","nodeType":"YulIdentifier","src":"8756:6:41"}],"functionName":{"name":"add","nativeSrc":"8747:3:41","nodeType":"YulIdentifier","src":"8747:3:41"},"nativeSrc":"8747:16:41","nodeType":"YulFunctionCall","src":"8747:16:41"},"variables":[{"name":"_1","nativeSrc":"8741:2:41","nodeType":"YulTypedName","src":"8741:2:41","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"8779:2:41","nodeType":"YulIdentifier","src":"8779:2:41"},{"kind":"number","nativeSrc":"8783:1:41","nodeType":"YulLiteral","src":"8783:1:41","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"8772:6:41","nodeType":"YulIdentifier","src":"8772:6:41"},"nativeSrc":"8772:13:41","nodeType":"YulFunctionCall","src":"8772:13:41"},"nativeSrc":"8772:13:41","nodeType":"YulExpressionStatement","src":"8772:13:41"},{"nativeSrc":"8794:9:41","nodeType":"YulAssignment","src":"8794:9:41","value":{"name":"_1","nativeSrc":"8801:2:41","nodeType":"YulIdentifier","src":"8801:2:41"},"variableNames":[{"name":"end","nativeSrc":"8794:3:41","nodeType":"YulIdentifier","src":"8794:3:41"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"8508:301:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"8621:3:41","nodeType":"YulTypedName","src":"8621:3:41","type":""},{"name":"value0","nativeSrc":"8626:6:41","nodeType":"YulTypedName","src":"8626:6:41","type":""}],"returnVariables":[{"name":"end","nativeSrc":"8637:3:41","nodeType":"YulTypedName","src":"8637:3:41","type":""}],"src":"8508:301:41"},{"body":{"nativeSrc":"8943:145:41","nodeType":"YulBlock","src":"8943:145:41","statements":[{"nativeSrc":"8953:26:41","nodeType":"YulAssignment","src":"8953:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"8965:9:41","nodeType":"YulIdentifier","src":"8965:9:41"},{"kind":"number","nativeSrc":"8976:2:41","nodeType":"YulLiteral","src":"8976:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8961:3:41","nodeType":"YulIdentifier","src":"8961:3:41"},"nativeSrc":"8961:18:41","nodeType":"YulFunctionCall","src":"8961:18:41"},"variableNames":[{"name":"tail","nativeSrc":"8953:4:41","nodeType":"YulIdentifier","src":"8953:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8995:9:41","nodeType":"YulIdentifier","src":"8995:9:41"},{"arguments":[{"name":"value0","nativeSrc":"9010:6:41","nodeType":"YulIdentifier","src":"9010:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9026:3:41","nodeType":"YulLiteral","src":"9026:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"9031:1:41","nodeType":"YulLiteral","src":"9031:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"9022:3:41","nodeType":"YulIdentifier","src":"9022:3:41"},"nativeSrc":"9022:11:41","nodeType":"YulFunctionCall","src":"9022:11:41"},{"kind":"number","nativeSrc":"9035:1:41","nodeType":"YulLiteral","src":"9035:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"9018:3:41","nodeType":"YulIdentifier","src":"9018:3:41"},"nativeSrc":"9018:19:41","nodeType":"YulFunctionCall","src":"9018:19:41"}],"functionName":{"name":"and","nativeSrc":"9006:3:41","nodeType":"YulIdentifier","src":"9006:3:41"},"nativeSrc":"9006:32:41","nodeType":"YulFunctionCall","src":"9006:32:41"}],"functionName":{"name":"mstore","nativeSrc":"8988:6:41","nodeType":"YulIdentifier","src":"8988:6:41"},"nativeSrc":"8988:51:41","nodeType":"YulFunctionCall","src":"8988:51:41"},"nativeSrc":"8988:51:41","nodeType":"YulExpressionStatement","src":"8988:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9059:9:41","nodeType":"YulIdentifier","src":"9059:9:41"},{"kind":"number","nativeSrc":"9070:2:41","nodeType":"YulLiteral","src":"9070:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9055:3:41","nodeType":"YulIdentifier","src":"9055:3:41"},"nativeSrc":"9055:18:41","nodeType":"YulFunctionCall","src":"9055:18:41"},{"name":"value1","nativeSrc":"9075:6:41","nodeType":"YulIdentifier","src":"9075:6:41"}],"functionName":{"name":"mstore","nativeSrc":"9048:6:41","nodeType":"YulIdentifier","src":"9048:6:41"},"nativeSrc":"9048:34:41","nodeType":"YulFunctionCall","src":"9048:34:41"},"nativeSrc":"9048:34:41","nodeType":"YulExpressionStatement","src":"9048:34:41"}]},"name":"abi_encode_tuple_t_address_t_bytes32__to_t_address_t_bytes32__fromStack_reversed","nativeSrc":"8814:274:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8904:9:41","nodeType":"YulTypedName","src":"8904:9:41","type":""},{"name":"value1","nativeSrc":"8915:6:41","nodeType":"YulTypedName","src":"8915:6:41","type":""},{"name":"value0","nativeSrc":"8923:6:41","nodeType":"YulTypedName","src":"8923:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8934:4:41","nodeType":"YulTypedName","src":"8934:4:41","type":""}],"src":"8814:274:41"},{"body":{"nativeSrc":"9125:95:41","nodeType":"YulBlock","src":"9125:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9142:1:41","nodeType":"YulLiteral","src":"9142:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"9149:3:41","nodeType":"YulLiteral","src":"9149:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"9154:10:41","nodeType":"YulLiteral","src":"9154:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"9145:3:41","nodeType":"YulIdentifier","src":"9145:3:41"},"nativeSrc":"9145:20:41","nodeType":"YulFunctionCall","src":"9145:20:41"}],"functionName":{"name":"mstore","nativeSrc":"9135:6:41","nodeType":"YulIdentifier","src":"9135:6:41"},"nativeSrc":"9135:31:41","nodeType":"YulFunctionCall","src":"9135:31:41"},"nativeSrc":"9135:31:41","nodeType":"YulExpressionStatement","src":"9135:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9182:1:41","nodeType":"YulLiteral","src":"9182:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"9185:4:41","nodeType":"YulLiteral","src":"9185:4:41","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"9175:6:41","nodeType":"YulIdentifier","src":"9175:6:41"},"nativeSrc":"9175:15:41","nodeType":"YulFunctionCall","src":"9175:15:41"},"nativeSrc":"9175:15:41","nodeType":"YulExpressionStatement","src":"9175:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9206:1:41","nodeType":"YulLiteral","src":"9206:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"9209:4:41","nodeType":"YulLiteral","src":"9209:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"9199:6:41","nodeType":"YulIdentifier","src":"9199:6:41"},"nativeSrc":"9199:15:41","nodeType":"YulFunctionCall","src":"9199:15:41"},"nativeSrc":"9199:15:41","nodeType":"YulExpressionStatement","src":"9199:15:41"}]},"name":"panic_error_0x21","nativeSrc":"9093:127:41","nodeType":"YulFunctionDefinition","src":"9093:127:41"},{"body":{"nativeSrc":"9406:217:41","nodeType":"YulBlock","src":"9406:217:41","statements":[{"nativeSrc":"9416:27:41","nodeType":"YulAssignment","src":"9416:27:41","value":{"arguments":[{"name":"headStart","nativeSrc":"9428:9:41","nodeType":"YulIdentifier","src":"9428:9:41"},{"kind":"number","nativeSrc":"9439:3:41","nodeType":"YulLiteral","src":"9439:3:41","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"9424:3:41","nodeType":"YulIdentifier","src":"9424:3:41"},"nativeSrc":"9424:19:41","nodeType":"YulFunctionCall","src":"9424:19:41"},"variableNames":[{"name":"tail","nativeSrc":"9416:4:41","nodeType":"YulIdentifier","src":"9416:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9459:9:41","nodeType":"YulIdentifier","src":"9459:9:41"},{"name":"value0","nativeSrc":"9470:6:41","nodeType":"YulIdentifier","src":"9470:6:41"}],"functionName":{"name":"mstore","nativeSrc":"9452:6:41","nodeType":"YulIdentifier","src":"9452:6:41"},"nativeSrc":"9452:25:41","nodeType":"YulFunctionCall","src":"9452:25:41"},"nativeSrc":"9452:25:41","nodeType":"YulExpressionStatement","src":"9452:25:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9497:9:41","nodeType":"YulIdentifier","src":"9497:9:41"},{"kind":"number","nativeSrc":"9508:2:41","nodeType":"YulLiteral","src":"9508:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9493:3:41","nodeType":"YulIdentifier","src":"9493:3:41"},"nativeSrc":"9493:18:41","nodeType":"YulFunctionCall","src":"9493:18:41"},{"arguments":[{"name":"value1","nativeSrc":"9517:6:41","nodeType":"YulIdentifier","src":"9517:6:41"},{"kind":"number","nativeSrc":"9525:4:41","nodeType":"YulLiteral","src":"9525:4:41","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"9513:3:41","nodeType":"YulIdentifier","src":"9513:3:41"},"nativeSrc":"9513:17:41","nodeType":"YulFunctionCall","src":"9513:17:41"}],"functionName":{"name":"mstore","nativeSrc":"9486:6:41","nodeType":"YulIdentifier","src":"9486:6:41"},"nativeSrc":"9486:45:41","nodeType":"YulFunctionCall","src":"9486:45:41"},"nativeSrc":"9486:45:41","nodeType":"YulExpressionStatement","src":"9486:45:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9551:9:41","nodeType":"YulIdentifier","src":"9551:9:41"},{"kind":"number","nativeSrc":"9562:2:41","nodeType":"YulLiteral","src":"9562:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9547:3:41","nodeType":"YulIdentifier","src":"9547:3:41"},"nativeSrc":"9547:18:41","nodeType":"YulFunctionCall","src":"9547:18:41"},{"name":"value2","nativeSrc":"9567:6:41","nodeType":"YulIdentifier","src":"9567:6:41"}],"functionName":{"name":"mstore","nativeSrc":"9540:6:41","nodeType":"YulIdentifier","src":"9540:6:41"},"nativeSrc":"9540:34:41","nodeType":"YulFunctionCall","src":"9540:34:41"},"nativeSrc":"9540:34:41","nodeType":"YulExpressionStatement","src":"9540:34:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9594:9:41","nodeType":"YulIdentifier","src":"9594:9:41"},{"kind":"number","nativeSrc":"9605:2:41","nodeType":"YulLiteral","src":"9605:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"9590:3:41","nodeType":"YulIdentifier","src":"9590:3:41"},"nativeSrc":"9590:18:41","nodeType":"YulFunctionCall","src":"9590:18:41"},{"name":"value3","nativeSrc":"9610:6:41","nodeType":"YulIdentifier","src":"9610:6:41"}],"functionName":{"name":"mstore","nativeSrc":"9583:6:41","nodeType":"YulIdentifier","src":"9583:6:41"},"nativeSrc":"9583:34:41","nodeType":"YulFunctionCall","src":"9583:34:41"},"nativeSrc":"9583:34:41","nodeType":"YulExpressionStatement","src":"9583:34:41"}]},"name":"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"9225:398:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9351:9:41","nodeType":"YulTypedName","src":"9351:9:41","type":""},{"name":"value3","nativeSrc":"9362:6:41","nodeType":"YulTypedName","src":"9362:6:41","type":""},{"name":"value2","nativeSrc":"9370:6:41","nodeType":"YulTypedName","src":"9370:6:41","type":""},{"name":"value1","nativeSrc":"9378:6:41","nodeType":"YulTypedName","src":"9378:6:41","type":""},{"name":"value0","nativeSrc":"9386:6:41","nodeType":"YulTypedName","src":"9386:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9397:4:41","nodeType":"YulTypedName","src":"9397:4:41","type":""}],"src":"9225:398:41"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_struct$_PackedUserOperation_$1054_calldata_ptrt_bytes32t_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if slt(sub(dataEnd, _1), 288) { revert(0, 0) }\n        value0 := _1\n        let value := 0\n        value := calldataload(add(headStart, 32))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 64))\n        value2 := value_1\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_bytes32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_bytes32t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_decode_array_address_dyn_calldata(offset, end) -> arrayPos, length\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        length := calldataload(offset)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        arrayPos := add(offset, 0x20)\n        if gt(add(add(offset, shl(5, length)), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_uint256_$dyn_calldata_ptrt_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_array_address_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        let value2_1, value3_1 := abi_decode_array_address_dyn_calldata(add(headStart, offset_1), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\n        let offset_2 := calldataload(add(headStart, 64))\n        if gt(offset_2, 0xffffffffffffffff) { revert(0, 0) }\n        let value4_1, value5_1 := abi_decode_array_address_dyn_calldata(add(headStart, offset_2), dataEnd)\n        value4 := value4_1\n        value5 := value5_1\n    }\n    function abi_decode_tuple_t_address_payablet_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_contract$_IEntryPoint_$909__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let offset := calldataload(add(headStart, 64))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        value2 := add(_1, 32)\n        value3 := length\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function access_calldata_tail_t_bytes_calldata_ptr(base_ref, ptr_to_tail) -> addr, length\n    {\n        let rel_offset_of_tail := calldataload(ptr_to_tail)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(30)))) { revert(0, 0) }\n        let addr_1 := add(base_ref, rel_offset_of_tail)\n        length := calldataload(addr_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        addr := add(addr_1, 0x20)\n        if sgt(addr, sub(calldatasize(), length)) { revert(0, 0) }\n    }\n    function abi_encode_tuple_packed_t_bytes_calldata_ptr_t_address__to_t_bytes_memory_ptr_t_address__nonPadded_inplace_fromStack_reversed(pos, value2, value1, value0) -> end\n    {\n        calldatacopy(pos, value0, value1)\n        let _1 := add(pos, value1)\n        mstore(_1, and(shl(96, value2), not(0xffffffffffffffffffffffff)))\n        end := add(_1, 20)\n    }\n    function abi_encode_tuple_t_address_payable_t_uint256__to_t_address_payable_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint192__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(192, 1), 1)))\n    }\n    function abi_encode_tuple_t_stringliteral_f684c2c0c9ec797849b62669189fe025e9077c00ba7812987ce38c0071ad7a50__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"account: not from EntryPoint\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos) -> end\n    { end := pos }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        mcopy(pos, add(value0, 0x20), length)\n        let _1 := add(pos, length)\n        mstore(_1, 0)\n        end := _1\n    }\n    function abi_encode_tuple_t_address_t_bytes32__to_t_address_t_bytes32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n}","id":41,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"9484":[{"length":32,"start":667},{"length":32,"start":1582},{"length":32,"start":1748},{"length":32,"start":2068},{"length":32,"start":2217},{"length":32,"start":2311},{"length":32,"start":2978}]},"linkReferences":{},"object":"6080604052600436106100fd575f3560e01c80634d44560d11610092578063b61d27f611610062578063b61d27f6146102c5578063c399ec88146102e4578063d087d288146102f8578063d547741f1461030c578063e02023a11461032b575f5ffd5b80634d44560d1461023157806391d1485414610250578063a217fddf1461026f578063b0d691fe14610282575f5ffd5b80632f2ff15d116100cd5780632f2ff15d146101ca57806336568abe146101eb57806347e1da2a1461020a5780634a58db1914610229575f5ffd5b806301ffc9a71461010857806307bd02651461013c57806319822f7c1461017d578063248a9ca31461019c575f5ffd5b3661010457005b5f5ffd5b348015610113575f5ffd5b50610127610122366004611036565b61035e565b60405190151581526020015b60405180910390f35b348015610147575f5ffd5b5061016f7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b604051908152602001610133565b348015610188575f5ffd5b5061016f61019736600461105d565b610394565b3480156101a7575f5ffd5b5061016f6101b63660046110ac565b5f9081526020819052604090206001015490565b3480156101d5575f5ffd5b506101e96101e43660046110d7565b6103b9565b005b3480156101f6575f5ffd5b506101e96102053660046110d7565b6103e3565b348015610215575f5ffd5b506101e961022436600461114d565b61041b565b6101e961062c565b34801561023c575f5ffd5b506101e961024b3660046111ec565b6106a8565b34801561025b575f5ffd5b5061012761026a3660046110d7565b610757565b34801561027a575f5ffd5b5061016f5f81565b34801561028d575f5ffd5b506040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602001610133565b3480156102d0575f5ffd5b506101e96102df366004611216565b61077f565b3480156102ef575f5ffd5b5061016f6107f5565b348015610303575f5ffd5b5061016f610883565b348015610317575f5ffd5b506101e96103263660046110d7565b6108d8565b348015610336575f5ffd5b5061016f7f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec81565b5f6001600160e01b03198216637965db0b60e01b148061038e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b5f61039d6108fc565b6103a78484610976565b90506103b282610a54565b9392505050565b5f828152602081905260409020600101546103d381610a9d565b6103dd8383610aa7565b50505050565b6001600160a01b038116331461040c5760405163334bd91960e11b815260040160405180910390fd5b6104168282610b36565b505050565b5f610424610b9f565b9050858214158061043f5750831580159061043f5750838214155b1561045d5760405163150072e360e11b815260040160405180910390fd5b5f5b868110156106225780156105125787878281811061047f5761047f61129b565b905060200201602081019061049491906112af565b6001600160a01b031688886104aa6001856112ca565b8181106104b9576104b961129b565b90506020020160208101906104ce91906112af565b6001600160a01b0316148061050d575061050d8888838181106104f3576104f361129b565b905060200201602081019061050891906112af565b610c74565b610527565b61052788885f8181106104f3576104f361129b565b8888838181106105395761053961129b565b905060200201602081019061054e91906112af565b9061057d57604051636d4e141560e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b506106198888838181106105935761059361129b565b90506020020160208101906105a891906112af565b8585848181106105ba576105ba61129b565b90506020028101906105cc91906112e9565b856040516020016105df9392919061132c565b60408051601f198184030181529190528715610613578888858181106106075761060761129b565b90506020020135610ced565b5f610ced565b5060010161045f565b5050505050505050565b7f000000000000000000000000000000000000000000000000000000000000000060405163b760faf960e01b81523060048201526001600160a01b03919091169063b760faf99034906024015f604051808303818588803b15801561068f575f5ffd5b505af11580156106a1573d5f5f3e3d5ffd5b5050505050565b7f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec6106d281610a9d565b7f000000000000000000000000000000000000000000000000000000000000000060405163040b850f60e31b81526001600160a01b03858116600483015260248201859052919091169063205c2878906044015f604051808303815f87803b15801561073c575f5ffd5b505af115801561074e573d5f5f3e3d5ffd5b50505050505050565b5f918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b5f610788610b9f565b905061079385610c74565b85906107be57604051636d4e141560e01b81526001600160a01b039091166004820152602401610574565b506107ed858484846040516020016107d89392919061132c565b60405160208183030381529060405286610ced565b505050505050565b6040516370a0823160e01b81523060048201525f906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a08231906024015b602060405180830381865afa15801561085a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061087e9190611352565b905090565b604051631aab3f0d60e11b81523060048201525f60248201819052906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906335567e1a9060440161083f565b5f828152602081905260409020600101546108f281610a9d565b6103dd8383610b36565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146109745760405162461bcd60e51b815260206004820152601c60248201527f6163636f756e743a206e6f742066726f6d20456e747279506f696e74000000006044820152606401610574565b565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c829052603c81205f6109f0826109b76101008801886112e9565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250610d8392505050565b9050610a1c7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6382610757565b610a2b5760019250505061038e565b805f805c6001600160a01b0319166001600160a01b03831617905d505f95945050505050565b50565b8015610a51576040515f9033905f1990849084818181858888f193505050503d805f81146106a1576040519150601f19603f3d011682016040523d82523d5f602084013e6106a1565b610a518133610dab565b5f610ab28383610757565b610b2f575f838152602081815260408083206001600160a01b03861684529091529020805460ff19166001179055610ae73390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600161038e565b505f61038e565b5f610b418383610757565b15610b2f575f838152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a450600161038e565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163303610c18575f5c6001600160a01b0316610bf857604051636ca7ff7d60e01b815260040160405180910390fd5b506001600160a01b035f805c918216916001600160a01b031916815d5090565b610c427fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6333610757565b3390610c6d57604051633c687f6b60e21b81526001600160a01b039091166004820152602401610574565b5033905090565b6040513060248201525f90819060440160408051601f19818403018152919052602080820180516001600160e01b031663572b6c0560e01b17815282519293505f928392839290918391895afa92503d91505f519050828015610cd8575060208210155b8015610ce357505f81115b9695505050505050565b606081471015610d195760405163cf47918160e01b815247600482015260248101839052604401610574565b5f5f856001600160a01b03168486604051610d349190611369565b5f6040518083038185875af1925050503d805f8114610d6e576040519150601f19603f3d011682016040523d82523d5f602084013e610d73565b606091505b5091509150610ce3868383610de8565b5f5f5f5f610d918686610e44565b925092509250610da18282610e8d565b5090949350505050565b610db58282610757565b610de45760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610574565b5050565b606082610dfd57610df882610f45565b6103b2565b8151158015610e1457506001600160a01b0384163b155b15610e3d57604051639996b31560e01b81526001600160a01b0385166004820152602401610574565b50806103b2565b5f5f5f8351604103610e7b576020840151604085015160608601515f1a610e6d88828585610f6e565b955095509550505050610e86565b505081515f91506002905b9250925092565b5f826003811115610ea057610ea061137f565b03610ea9575050565b6001826003811115610ebd57610ebd61137f565b03610edb5760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610eef57610eef61137f565b03610f105760405163fce698f760e01b815260048101829052602401610574565b6003826003811115610f2457610f2461137f565b03610de4576040516335e2f38360e21b815260048101829052602401610574565b805115610f555780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610fa757505f9150600390508261102c565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610ff8573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b03811661102357505f92506001915082905061102c565b92505f91508190505b9450945094915050565b5f60208284031215611046575f5ffd5b81356001600160e01b0319811681146103b2575f5ffd5b5f5f5f6060848603121561106f575f5ffd5b833567ffffffffffffffff811115611085575f5ffd5b84016101208187031215611097575f5ffd5b95602085013595506040909401359392505050565b5f602082840312156110bc575f5ffd5b5035919050565b6001600160a01b0381168114610a51575f5ffd5b5f5f604083850312156110e8575f5ffd5b8235915060208301356110fa816110c3565b809150509250929050565b5f5f83601f840112611115575f5ffd5b50813567ffffffffffffffff81111561112c575f5ffd5b6020830191508360208260051b8501011115611146575f5ffd5b9250929050565b5f5f5f5f5f5f60608789031215611162575f5ffd5b863567ffffffffffffffff811115611178575f5ffd5b61118489828a01611105565b909750955050602087013567ffffffffffffffff8111156111a3575f5ffd5b6111af89828a01611105565b909550935050604087013567ffffffffffffffff8111156111ce575f5ffd5b6111da89828a01611105565b979a9699509497509295939492505050565b5f5f604083850312156111fd575f5ffd5b8235611208816110c3565b946020939093013593505050565b5f5f5f5f60608587031215611229575f5ffd5b8435611234816110c3565b935060208501359250604085013567ffffffffffffffff811115611256575f5ffd5b8501601f81018713611266575f5ffd5b803567ffffffffffffffff81111561127c575f5ffd5b87602082840101111561128d575f5ffd5b949793965060200194505050565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156112bf575f5ffd5b81356103b2816110c3565b8181038181111561038e57634e487b7160e01b5f52601160045260245ffd5b5f5f8335601e198436030181126112fe575f5ffd5b83018035915067ffffffffffffffff821115611318575f5ffd5b602001915036819003821315611146575f5ffd5b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b5f60208284031215611362575f5ffd5b5051919050565b5f82518060208501845e5f920191825250919050565b634e487b7160e01b5f52602160045260245ffdfea2646970667358221220cf6d6774046d911eedd4b122e3b68e3c2d17e5cb16737010985b91448ef8ab5e64736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xFD JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4D44560D GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xB61D27F6 GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xB61D27F6 EQ PUSH2 0x2C5 JUMPI DUP1 PUSH4 0xC399EC88 EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0xD087D288 EQ PUSH2 0x2F8 JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x30C JUMPI DUP1 PUSH4 0xE02023A1 EQ PUSH2 0x32B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D44560D EQ PUSH2 0x231 JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x250 JUMPI DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x26F JUMPI DUP1 PUSH4 0xB0D691FE EQ PUSH2 0x282 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x2F2FF15D GT PUSH2 0xCD JUMPI DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x1EB JUMPI DUP1 PUSH4 0x47E1DA2A EQ PUSH2 0x20A JUMPI DUP1 PUSH4 0x4A58DB19 EQ PUSH2 0x229 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x108 JUMPI DUP1 PUSH4 0x7BD0265 EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x19822F7C EQ PUSH2 0x17D JUMPI DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x19C JUMPI PUSH0 PUSH0 REVERT JUMPDEST CALLDATASIZE PUSH2 0x104 JUMPI STOP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x113 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x127 PUSH2 0x122 CALLDATASIZE PUSH1 0x4 PUSH2 0x1036 JUMP JUMPDEST PUSH2 0x35E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x147 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x133 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x188 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x197 CALLDATASIZE PUSH1 0x4 PUSH2 0x105D JUMP JUMPDEST PUSH2 0x394 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x1B6 CALLDATASIZE PUSH1 0x4 PUSH2 0x10AC JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x3B9 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x205 CALLDATASIZE PUSH1 0x4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x3E3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x215 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x224 CALLDATASIZE PUSH1 0x4 PUSH2 0x114D JUMP JUMPDEST PUSH2 0x41B JUMP JUMPDEST PUSH2 0x1E9 PUSH2 0x62C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x23C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x24B CALLDATASIZE PUSH1 0x4 PUSH2 0x11EC JUMP JUMPDEST PUSH2 0x6A8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x127 PUSH2 0x26A CALLDATASIZE PUSH1 0x4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x757 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x27A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x133 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x2DF CALLDATASIZE PUSH1 0x4 PUSH2 0x1216 JUMP JUMPDEST PUSH2 0x77F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x7F5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x303 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x883 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x317 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x326 CALLDATASIZE PUSH1 0x4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x8D8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x336 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH32 0x5D8E12C39142FF96D79D04D15D1BA1269E4FE57BB9D26F43523628B34BA108EC DUP2 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x7965DB0B PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x38E JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x39D PUSH2 0x8FC JUMP JUMPDEST PUSH2 0x3A7 DUP5 DUP5 PUSH2 0x976 JUMP JUMPDEST SWAP1 POP PUSH2 0x3B2 DUP3 PUSH2 0xA54 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x3D3 DUP2 PUSH2 0xA9D JUMP JUMPDEST PUSH2 0x3DD DUP4 DUP4 PUSH2 0xAA7 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ PUSH2 0x40C JUMPI PUSH1 0x40 MLOAD PUSH4 0x334BD919 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x416 DUP3 DUP3 PUSH2 0xB36 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x424 PUSH2 0xB9F JUMP JUMPDEST SWAP1 POP DUP6 DUP3 EQ ISZERO DUP1 PUSH2 0x43F JUMPI POP DUP4 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x43F JUMPI POP DUP4 DUP3 EQ ISZERO JUMPDEST ISZERO PUSH2 0x45D JUMPI PUSH1 0x40 MLOAD PUSH4 0x150072E3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x622 JUMPI DUP1 ISZERO PUSH2 0x512 JUMPI DUP8 DUP8 DUP3 DUP2 DUP2 LT PUSH2 0x47F JUMPI PUSH2 0x47F PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x494 SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 DUP9 PUSH2 0x4AA PUSH1 0x1 DUP6 PUSH2 0x12CA JUMP JUMPDEST DUP2 DUP2 LT PUSH2 0x4B9 JUMPI PUSH2 0x4B9 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x4CE SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x50D JUMPI POP PUSH2 0x50D DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x4F3 JUMPI PUSH2 0x4F3 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x508 SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST PUSH2 0xC74 JUMP JUMPDEST PUSH2 0x527 JUMP JUMPDEST PUSH2 0x527 DUP9 DUP9 PUSH0 DUP2 DUP2 LT PUSH2 0x4F3 JUMPI PUSH2 0x4F3 PUSH2 0x129B JUMP JUMPDEST DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x539 JUMPI PUSH2 0x539 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x54E SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST SWAP1 PUSH2 0x57D JUMPI PUSH1 0x40 MLOAD PUSH4 0x6D4E1415 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH2 0x619 DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x593 JUMPI PUSH2 0x593 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x5A8 SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x5BA JUMPI PUSH2 0x5BA PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x5CC SWAP2 SWAP1 PUSH2 0x12E9 JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x5DF SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x132C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE DUP8 ISZERO PUSH2 0x613 JUMPI DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x607 JUMPI PUSH2 0x607 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH2 0xCED JUMP JUMPDEST PUSH0 PUSH2 0xCED JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x45F JUMP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0xB760FAF9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xB760FAF9 SWAP1 CALLVALUE SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x68F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x6A1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH32 0x5D8E12C39142FF96D79D04D15D1BA1269E4FE57BB9D26F43523628B34BA108EC PUSH2 0x6D2 DUP2 PUSH2 0xA9D JUMP JUMPDEST PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0x40B850F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x205C2878 SWAP1 PUSH1 0x44 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x73C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x74E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP5 MSTORE SWAP2 SWAP1 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x788 PUSH2 0xB9F JUMP JUMPDEST SWAP1 POP PUSH2 0x793 DUP6 PUSH2 0xC74 JUMP JUMPDEST DUP6 SWAP1 PUSH2 0x7BE JUMPI PUSH1 0x40 MLOAD PUSH4 0x6D4E1415 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST POP PUSH2 0x7ED DUP6 DUP5 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x7D8 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x132C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP7 PUSH2 0xCED JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x85A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x87E SWAP2 SWAP1 PUSH2 0x1352 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1AAB3F0D PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x35567E1A SWAP1 PUSH1 0x44 ADD PUSH2 0x83F JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x8F2 DUP2 PUSH2 0xA9D JUMP JUMPDEST PUSH2 0x3DD DUP4 DUP4 PUSH2 0xB36 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x974 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6163636F756E743A206E6F742066726F6D20456E747279506F696E7400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x574 JUMP JUMPDEST JUMP JUMPDEST PUSH32 0x19457468657265756D205369676E6564204D6573736167653A0A333200000000 PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1C DUP3 SWAP1 MSTORE PUSH1 0x3C DUP2 KECCAK256 PUSH0 PUSH2 0x9F0 DUP3 PUSH2 0x9B7 PUSH2 0x100 DUP9 ADD DUP9 PUSH2 0x12E9 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0xD83 SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH2 0xA1C PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 DUP3 PUSH2 0x757 JUMP JUMPDEST PUSH2 0xA2B JUMPI PUSH1 0x1 SWAP3 POP POP POP PUSH2 0x38E JUMP JUMPDEST DUP1 PUSH0 DUP1 TLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND OR SWAP1 TSTORE POP PUSH0 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST POP JUMP JUMPDEST DUP1 ISZERO PUSH2 0xA51 JUMPI PUSH1 0x40 MLOAD PUSH0 SWAP1 CALLER SWAP1 PUSH0 NOT SWAP1 DUP5 SWAP1 DUP5 DUP2 DUP2 DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x6A1 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x6A1 JUMP JUMPDEST PUSH2 0xA51 DUP2 CALLER PUSH2 0xDAB JUMP JUMPDEST PUSH0 PUSH2 0xAB2 DUP4 DUP4 PUSH2 0x757 JUMP JUMPDEST PUSH2 0xB2F JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH2 0xAE7 CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x38E JUMP JUMPDEST POP PUSH0 PUSH2 0x38E JUMP JUMPDEST PUSH0 PUSH2 0xB41 DUP4 DUP4 PUSH2 0x757 JUMP JUMPDEST ISZERO PUSH2 0xB2F JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP1 DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE MLOAD CALLER SWAP3 DUP7 SWAP2 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B SWAP2 SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x38E JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER SUB PUSH2 0xC18 JUMPI PUSH0 TLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xBF8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6CA7FF7D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH0 DUP1 TLOAD SWAP2 DUP3 AND SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND DUP2 TSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0xC42 PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 CALLER PUSH2 0x757 JUMP JUMPDEST CALLER SWAP1 PUSH2 0xC6D JUMPI PUSH1 0x40 MLOAD PUSH4 0x3C687F6B PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST POP CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x44 ADD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP1 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x572B6C05 PUSH1 0xE0 SHL OR DUP2 MSTORE DUP3 MLOAD SWAP3 SWAP4 POP PUSH0 SWAP3 DUP4 SWAP3 DUP4 SWAP3 SWAP1 SWAP2 DUP4 SWAP2 DUP10 GAS STATICCALL SWAP3 POP RETURNDATASIZE SWAP2 POP PUSH0 MLOAD SWAP1 POP DUP3 DUP1 ISZERO PUSH2 0xCD8 JUMPI POP PUSH1 0x20 DUP3 LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0xCE3 JUMPI POP PUSH0 DUP2 GT JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0xD19 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x574 JUMP JUMPDEST PUSH0 PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0xD34 SWAP2 SWAP1 PUSH2 0x1369 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xD6E JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xD73 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0xCE3 DUP7 DUP4 DUP4 PUSH2 0xDE8 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0xD91 DUP7 DUP7 PUSH2 0xE44 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0xDA1 DUP3 DUP3 PUSH2 0xE8D JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0xDB5 DUP3 DUP3 PUSH2 0x757 JUMP JUMPDEST PUSH2 0xDE4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x574 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0xDFD JUMPI PUSH2 0xDF8 DUP3 PUSH2 0xF45 JUMP JUMPDEST PUSH2 0x3B2 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0xE14 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0xE3D JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST POP DUP1 PUSH2 0x3B2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x41 SUB PUSH2 0xE7B JUMPI PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH0 BYTE PUSH2 0xE6D DUP9 DUP3 DUP6 DUP6 PUSH2 0xF6E JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP PUSH2 0xE86 JUMP JUMPDEST POP POP DUP2 MLOAD PUSH0 SWAP2 POP PUSH1 0x2 SWAP1 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xEA0 JUMPI PUSH2 0xEA0 PUSH2 0x137F JUMP JUMPDEST SUB PUSH2 0xEA9 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xEBD JUMPI PUSH2 0xEBD PUSH2 0x137F JUMP JUMPDEST SUB PUSH2 0xEDB JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xEEF JUMPI PUSH2 0xEEF PUSH2 0x137F JUMP JUMPDEST SUB PUSH2 0xF10 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xF24 JUMPI PUSH2 0xF24 PUSH2 0x137F JUMP JUMPDEST SUB PUSH2 0xDE4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST DUP1 MLOAD ISZERO PUSH2 0xF55 JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0xFA7 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x102C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xFF8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1023 JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x102C JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1046 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x3B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x106F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1085 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH2 0x120 DUP2 DUP8 SUB SLT ISZERO PUSH2 0x1097 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xA51 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x10E8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x10FA DUP2 PUSH2 0x10C3 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x1115 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x112C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1146 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x1162 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1178 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1184 DUP10 DUP3 DUP11 ADD PUSH2 0x1105 JUMP JUMPDEST SWAP1 SWAP8 POP SWAP6 POP POP PUSH1 0x20 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x11A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x11AF DUP10 DUP3 DUP11 ADD PUSH2 0x1105 JUMP JUMPDEST SWAP1 SWAP6 POP SWAP4 POP POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x11CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x11DA DUP10 DUP3 DUP11 ADD PUSH2 0x1105 JUMP JUMPDEST SWAP8 SWAP11 SWAP7 SWAP10 POP SWAP5 SWAP8 POP SWAP3 SWAP6 SWAP4 SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x11FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1208 DUP2 PUSH2 0x10C3 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1229 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x1234 DUP2 PUSH2 0x10C3 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1256 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x1266 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x127C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x128D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP5 SWAP8 SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x12BF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3B2 DUP2 PUSH2 0x10C3 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x38E JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x12FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1318 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x1146 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH1 0x60 SWAP2 SWAP1 SWAP2 SHL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP2 ADD SWAP1 DUP2 MSTORE PUSH1 0x14 ADD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1362 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP6 ADD DUP5 MCOPY PUSH0 SWAP3 ADD SWAP2 DUP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCF PUSH14 0x6774046D911EEDD4B122E3B68E3C 0x2D OR 0xE5 0xCB AND PUSH20 0x7010985B91448EF8AB5E64736F6C634300081C00 CALLER ","sourceMap":"1158:5897:35:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2565:202:9;;;;;;;;;;-1:-1:-1;2565:202:9;;;;;:::i;:::-;;:::i;:::-;;;470:14:41;;463:22;445:41;;433:2;418:18;2565:202:9;;;;;;;;1295:66:35;;;;;;;;;;;;1335:26;1295:66;;;;;643:25:41;;;631:2;616:18;1295:66:35;497:177:41;1139:385:0;;;;;;;;;;-1:-1:-1;1139:385:0;;;;;:::i;:::-;;:::i;3810:120:9:-;;;;;;;;;;-1:-1:-1;3810:120:9;;;;;:::i;:::-;3875:7;3901:12;;;;;;;;;;:22;;;;3810:120;4226:136;;;;;;;;;;-1:-1:-1;4226:136:9;;;;;:::i;:::-;;:::i;:::-;;5328:245;;;;;;;;;;-1:-1:-1;5328:245:9;;;;;:::i;:::-;;:::i;3868:628:35:-;;;;;;;;;;-1:-1:-1;3868:628:35;;;;;:::i;:::-;;:::i;6644:103::-;;;:::i;6887:166::-;;;;;;;;;;-1:-1:-1;6887:166:35;;;;;:::i;:::-;;:::i;2854:136:9:-;;;;;;;;;;-1:-1:-1;2854:136:9;;;;;:::i;:::-;;:::i;2187:49::-;;;;;;;;;;-1:-1:-1;2187:49:9;2232:4;2187:49;;1654:102:35;;;;;;;;;;-1:-1:-1;1654:102:35;;-1:-1:-1;;;;;1740:11:35;4288:32:41;4270:51;;4258:2;4243:18;1654:102:35;4105:222:41;3203:294:35;;;;;;;;;;-1:-1:-1;3203:294:35;;;;;:::i;:::-;;:::i;6462:107::-;;;;;;;;;;;;;:::i;771:121:0:-;;;;;;;;;;;;;:::i;4642:138:9:-;;;;;;;;;;-1:-1:-1;4642:138:9;;;;;:::i;:::-;;:::i;1225:66:35:-;;;;;;;;;;;;1265:26;1225:66;;2565:202:9;2650:4;-1:-1:-1;;;;;;2673:47:9;;-1:-1:-1;;;2673:47:9;;:87;;-1:-1:-1;;;;;;;;;;862:40:27;;;2724:36:9;2666:94;2565:202;-1:-1:-1;;2565:202:9:o;1139:385:0:-;1314:22;1348:24;:22;:24::i;:::-;1399:38;1418:6;1426:10;1399:18;:38::i;:::-;1382:55;;1485:32;1497:19;1485:11;:32::i;:::-;1139:385;;;;;:::o;4226:136:9:-;3875:7;3901:12;;;;;;;;;;:22;;;2464:16;2475:4;2464:10;:16::i;:::-;4330:25:::1;4341:4;4347:7;4330:10;:25::i;:::-;;4226:136:::0;;;:::o;5328:245::-;-1:-1:-1;;;;;5421:34:9;;735:10:20;5421:34:9;5417:102;;5478:30;;-1:-1:-1;;;5478:30:9;;;;;;;;;;;5417:102;5529:37;5541:4;5547:18;5529:11;:37::i;:::-;;5328:245;;:::o;3868:628:35:-;3979:14;3996:34;:32;:34::i;:::-;3979:51;-1:-1:-1;4040:26:35;;;;;:80;;-1:-1:-1;4071:17:35;;;;;:48;;-1:-1:-1;4092:27:35;;;;4071:48;4036:111;;;4129:18;;-1:-1:-1;;;4129:18:35;;;;;;;;;;;4036:111;4158:9;4153:339;4173:15;;;4153:339;;;4220:6;;:94;;4275:4;;4280:1;4275:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;4260:22:35;:4;;4265:5;4269:1;4265;:5;:::i;:::-;4260:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;4260:22:35;;:53;;;;4286:27;4305:4;;4310:1;4305:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4286:18;:27::i;:::-;4220:94;;;4229:27;4248:4;;4253:1;4248:7;;;;;;;:::i;4229:27::-;4354:4;;4359:1;4354:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4203:167;;;;;-1:-1:-1;;;4203:167:35;;-1:-1:-1;;;;;4288:32:41;;;4203:167:35;;;4270:51:41;4243:18;;4203:167:35;;;;;;;;;;4378:107;4408:4;;4413:1;4408:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4434:4;;4439:1;4434:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;4443:6;4417:33;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;4417:33:35;;;;;;;;;4452:17;;:32;;4476:5;;4482:1;4476:8;;;;;;;:::i;:::-;;;;;;;4378:29;:107::i;4452:32::-;4472:1;4378:29;:107::i;:::-;-1:-1:-1;4190:3:35;;4153:339;;;;3973:523;3868:628;;;;;;:::o;6644:103::-;1740:11;6687:55;;-1:-1:-1;;;6687:55:35;;6736:4;6687:55;;;4270:51:41;-1:-1:-1;;;;;6687:22:35;;;;;;;6717:9;;4243:18:41;;6687:55:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6644:103::o;6887:166::-;1265:26;2464:16:9;2475:4;2464:10;:16::i;:::-;1740:11:35;7000:48:::1;::::0;-1:-1:-1;;;7000:48:35;;-1:-1:-1;;;;;7099:32:41;;;7000:48:35::1;::::0;::::1;7081:51:41::0;7148:18;;;7141:34;;;7000:23:35;;;::::1;::::0;::::1;::::0;7054:18:41;;7000:48:35::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6887:166:::0;;;:::o;2854:136:9:-;2931:4;2954:12;;;;;;;;;;;-1:-1:-1;;;;;2954:29:9;;;;;;;;;;;;;;;2854:136::o;3203:294:35:-;3285:14;3302:34;:32;:34::i;:::-;3285:51;;3350:24;3369:4;3350:18;:24::i;:::-;3406:4;3342:70;;;;;-1:-1:-1;;;3342:70:35;;-1:-1:-1;;;;;4288:32:41;;;3342:70:35;;;4270:51:41;4243:18;;3342:70:35;4105:222:41;3342:70:35;;3418:74;3448:4;3471;;3477:6;3454:30;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3486:5;3418:29;:74::i;:::-;;3279:218;3203:294;;;;:::o;6462:107::-;6527:37;;-1:-1:-1;;;6527:37:35;;6558:4;6527:37;;;4270:51:41;6505:7:35;;-1:-1:-1;;;;;1740:11:35;6527:22;;;;4243:18:41;;6527:37:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6520:44;;6462:107;:::o;771:121:0:-;846:39;;-1:-1:-1;;;846:39:0;;876:4;846:39;;;7557:51:41;820:7:0;7624:18:41;;;7617:60;;;820:7:0;-1:-1:-1;;;;;1740:11:35;846:21:0;;;;7530:18:41;;846:39:0;7375:308:41;4642:138:9;3875:7;3901:12;;;;;;;;;;:22;;;2464:16;2475:4;2464:10;:16::i;:::-;4747:26:::1;4759:4;4765:7;4747:11;:26::i;1605:183:0:-:0;1692:10;-1:-1:-1;;;;;1740:11:35;1692:35:0;;1671:110;;;;-1:-1:-1;;;1671:110:0;;7890:2:41;1671:110:0;;;7872:21:41;7929:2;7909:18;;;7902:30;7968;7948:18;;;7941:58;8016:18;;1671:110:0;7688:352:41;1671:110:0;1605:183::o;4547:527:35:-;1376:34:26;4679:22:35;1363:48:26;;;1472:4;1465:25;;;1570:4;1554:21;;4781:17:35;4801:37;4709:66;4821:16;;;;:6;:16;:::i;:::-;4801:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4801:13:35;;-1:-1:-1;;;4801:37:35:i;:::-;4781:57;;4849:33;1335:26;4872:9;4849:7;:33::i;:::-;4844:68;;305:1:1;4884:28:35;;;;;;4844:68;5025:9;5009:13;:25;;-1:-1:-1;;;;;;5009:25:35;-1:-1:-1;;;;;5009:25:35;;;;;-1:-1:-1;465:1:1;;4547:527:35;-1:-1:-1;;;;;4547:527:35:o;3713:68:0:-;;:::o;4356:382::-;4437:24;;4433:299;;4496:126;;4478:12;;4504:10;;-1:-1:-1;;4587:17:0;4545:19;;4478:12;4496:126;4478:12;4496:126;4545:19;4504:10;4587:17;4496:126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3199:103:9;3265:30;3276:4;735:10:20;3265::9;:30::i;6179:316::-;6256:4;6277:22;6285:4;6291:7;6277;:22::i;:::-;6272:217;;6315:6;:12;;;;;;;;;;;-1:-1:-1;;;;;6315:29:9;;;;;;;;;:36;;-1:-1:-1;;6315:36:9;6347:4;6315:36;;;6397:12;735:10:20;;656:96;6397:12:9;-1:-1:-1;;;;;6370:40:9;6388:7;-1:-1:-1;;;;;6370:40:9;6382:4;6370:40;;;;;;;;;;-1:-1:-1;6431:4:9;6424:11;;6272:217;-1:-1:-1;6473:5:9;6466:12;;6730:317;6808:4;6828:22;6836:4;6842:7;6828;:22::i;:::-;6824:217;;;6898:5;6866:12;;;;;;;;;;;-1:-1:-1;;;;;6866:29:9;;;;;;;;;;:37;;-1:-1:-1;;6866:37:9;;;6922:40;735:10:20;;6866:12:9;;6922:40;;6898:5;6922:40;-1:-1:-1;6983:4:9;6976:11;;2185:783:35;2247:14;1740:11;-1:-1:-1;;;;;2273:35:35;:10;:35;2269:581;;2351:1;2326:13;-1:-1:-1;;;;;2326:13:35;2318:58;;;;-1:-1:-1;;;2318:58:35;;;;;;;;;;;;-1:-1:-1;;;;;;2393:13:35;;;;;;;-1:-1:-1;;;;;;2796:26:35;2393:13;2796:26;;2185:783;:::o;2269:581::-;2863:34;1335:26;2886:10;2863:7;:34::i;:::-;2928:10;2855:85;;;;;-1:-1:-1;;;2855:85:35;;-1:-1:-1;;;;;4288:32:41;;;2855:85:35;;;4270:51:41;4243:18;;2855:85:35;4105:222:41;2855:85:35;;2953:10;2946:17;;2185:783;:::o;5341:1052::-;5448:66;;5507:4;5448:66;;;4270:51:41;5407:4:35;;;;4243:18:41;;5448:66:35;;;-1:-1:-1;;5448:66:35;;;;;;;;;;;;;;;-1:-1:-1;;;;;5448:66:35;-1:-1:-1;;;5448:66:35;;;6224:20;;5448:66;;-1:-1:-1;;;;;;;5448:66:35;;-1:-1:-1;;6190:6:35;6183:5;6172:82;6161:93;;6275:16;6261:30;;6319:1;6313:8;6298:23;;6340:7;:29;;;;;6365:4;6351:10;:18;;6340:29;:48;;;;;6387:1;6373:11;:15;6340:48;6333:55;5341:1052;-1:-1:-1;;;;;;5341:1052:35:o;2975:407:19:-;3074:12;3126:5;3102:21;:29;3098:123;;;3154:56;;-1:-1:-1;;;3154:56:19;;3181:21;3154:56;;;8429:25:41;8470:18;;;8463:34;;;8402:18;;3154:56:19;8255:248:41;3098:123:19;3231:12;3245:23;3272:6;-1:-1:-1;;;;;3272:11:19;3291:5;3298:4;3272:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3230:73;;;;3320:55;3347:6;3355:7;3364:10;3320:26;:55::i;3714:255:25:-;3792:7;3812:17;3831:18;3851:16;3871:27;3882:4;3888:9;3871:10;:27::i;:::-;3811:87;;;;;;3908:28;3920:5;3927:8;3908:11;:28::i;:::-;-1:-1:-1;3953:9:25;;3714:255;-1:-1:-1;;;;3714:255:25:o;3432:197:9:-;3520:22;3528:4;3534:7;3520;:22::i;:::-;3515:108;;3565:47;;-1:-1:-1;;;3565:47:9;;-1:-1:-1;;;;;7099:32:41;;3565:47:9;;;7081:51:41;7148:18;;;7141:34;;;7054:18;;3565:47:9;6891:290:41;3515:108:9;3432:197;;:::o;4437:582:19:-;4581:12;4610:7;4605:408;;4633:19;4641:10;4633:7;:19::i;:::-;4605:408;;;4857:17;;:22;:49;;;;-1:-1:-1;;;;;;4883:18:19;;;:23;4857:49;4853:119;;;4933:24;;-1:-1:-1;;;4933:24:19;;-1:-1:-1;;;;;4288:32:41;;4933:24:19;;;4270:51:41;4243:18;;4933:24:19;4105:222:41;4853:119:19;-1:-1:-1;4992:10:19;4985:17;;2129:778:25;2232:17;2251:16;2269:14;2299:9;:16;2319:2;2299:22;2295:606;;2604:4;2589:20;;2583:27;2653:4;2638:20;;2632:27;2710:4;2695:20;;2689:27;2337:9;2681:36;2751:25;2762:4;2681:36;2583:27;2632;2751:10;:25::i;:::-;2744:32;;;;;;;;;;;2295:606;-1:-1:-1;;2872:16:25;;2823:1;;-1:-1:-1;2827:35:25;;2295:606;2129:778;;;;;:::o;7280:532::-;7375:20;7366:5;:29;;;;;;;;:::i;:::-;;7362:444;;7280:532;;:::o;7362:444::-;7471:29;7462:5;:38;;;;;;;;:::i;:::-;;7458:348;;7523:23;;-1:-1:-1;;;7523:23:25;;;;;;;;;;;7458:348;7576:35;7567:5;:44;;;;;;;;:::i;:::-;;7563:243;;7634:46;;-1:-1:-1;;;7634:46:25;;;;;643:25:41;;;616:18;;7634:46:25;497:177:41;7563:243:25;7710:30;7701:5;:39;;;;;;;;:::i;:::-;;7697:109;;7763:32;;-1:-1:-1;;;7763:32:25;;;;;643:25:41;;;616:18;;7763:32:25;497:177:41;5559:487:19;5690:17;;:21;5686:354;;5887:10;5881:17;5943:15;5930:10;5926:2;5922:19;5915:44;5686:354;6010:19;;-1:-1:-1;;;6010:19:19;;;;;;;;;;;5203:1551:25;5329:17;;;6283:66;6270:79;;6266:164;;;-1:-1:-1;6381:1:25;;-1:-1:-1;6385:30:25;;-1:-1:-1;6417:1:25;6365:54;;6266:164;6541:24;;;6524:14;6541:24;;;;;;;;;9452:25:41;;;9525:4;9513:17;;9493:18;;;9486:45;;;;9547:18;;;9540:34;;;9590:18;;;9583:34;;;6541:24:25;;9424:19:41;;6541:24:25;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6541:24:25;;-1:-1:-1;;6541:24:25;;;-1:-1:-1;;;;;;;6579:20:25;;6575:113;;-1:-1:-1;6631:1:25;;-1:-1:-1;6635:29:25;;-1:-1:-1;6631:1:25;;-1:-1:-1;6615:62:25;;6575:113;6706:6;-1:-1:-1;6714:20:25;;-1:-1:-1;6714:20:25;;-1:-1:-1;5203:1551:25;;;;;;;;;:::o;14:286:41:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:41;;209:43;;199:71;;266:1;263;256:12;679:633;795:6;803;811;864:2;852:9;843:7;839:23;835:32;832:52;;;880:1;877;870:12;832:52;920:9;907:23;953:18;945:6;942:30;939:50;;;985:1;982;975:12;939:50;1008:22;;1064:3;1046:16;;;1042:26;1039:46;;;1081:1;1078;1071:12;1039:46;1104:2;1175;1160:18;;1147:32;;-1:-1:-1;1276:2:41;1261:18;;;1248:32;;679:633;-1:-1:-1;;;679:633:41:o;1499:226::-;1558:6;1611:2;1599:9;1590:7;1586:23;1582:32;1579:52;;;1627:1;1624;1617:12;1579:52;-1:-1:-1;1672:23:41;;1499:226;-1:-1:-1;1499:226:41:o;1730:131::-;-1:-1:-1;;;;;1805:31:41;;1795:42;;1785:70;;1851:1;1848;1841:12;1866:367;1934:6;1942;1995:2;1983:9;1974:7;1970:23;1966:32;1963:52;;;2011:1;2008;2001:12;1963:52;2056:23;;;-1:-1:-1;2155:2:41;2140:18;;2127:32;2168:33;2127:32;2168:33;:::i;:::-;2220:7;2210:17;;;1866:367;;;;;:::o;2238:::-;2301:8;2311:6;2365:3;2358:4;2350:6;2346:17;2342:27;2332:55;;2383:1;2380;2373:12;2332:55;-1:-1:-1;2406:20:41;;2449:18;2438:30;;2435:50;;;2481:1;2478;2471:12;2435:50;2518:4;2510:6;2506:17;2494:29;;2578:3;2571:4;2561:6;2558:1;2554:14;2546:6;2542:27;2538:38;2535:47;2532:67;;;2595:1;2592;2585:12;2532:67;2238:367;;;;;:::o;2610:1110::-;2779:6;2787;2795;2803;2811;2819;2872:2;2860:9;2851:7;2847:23;2843:32;2840:52;;;2888:1;2885;2878:12;2840:52;2928:9;2915:23;2961:18;2953:6;2950:30;2947:50;;;2993:1;2990;2983:12;2947:50;3032:70;3094:7;3085:6;3074:9;3070:22;3032:70;:::i;:::-;3121:8;;-1:-1:-1;3006:96:41;-1:-1:-1;;3209:2:41;3194:18;;3181:32;3238:18;3225:32;;3222:52;;;3270:1;3267;3260:12;3222:52;3309:72;3373:7;3362:8;3351:9;3347:24;3309:72;:::i;:::-;3400:8;;-1:-1:-1;3283:98:41;-1:-1:-1;;3488:2:41;3473:18;;3460:32;3517:18;3504:32;;3501:52;;;3549:1;3546;3539:12;3501:52;3588:72;3652:7;3641:8;3630:9;3626:24;3588:72;:::i;:::-;2610:1110;;;;-1:-1:-1;2610:1110:41;;-1:-1:-1;2610:1110:41;;3679:8;;2610:1110;-1:-1:-1;;;2610:1110:41:o;3725:375::-;3801:6;3809;3862:2;3850:9;3841:7;3837:23;3833:32;3830:52;;;3878:1;3875;3868:12;3830:52;3917:9;3904:23;3936:31;3961:5;3936:31;:::i;:::-;3986:5;4064:2;4049:18;;;;4036:32;;-1:-1:-1;;;3725:375:41:o;4332:841::-;4420:6;4428;4436;4444;4497:2;4485:9;4476:7;4472:23;4468:32;4465:52;;;4513:1;4510;4503:12;4465:52;4552:9;4539:23;4571:31;4596:5;4571:31;:::i;:::-;4621:5;-1:-1:-1;4699:2:41;4684:18;;4671:32;;-1:-1:-1;4780:2:41;4765:18;;4752:32;4807:18;4796:30;;4793:50;;;4839:1;4836;4829:12;4793:50;4862:22;;4915:4;4907:13;;4903:27;-1:-1:-1;4893:55:41;;4944:1;4941;4934:12;4893:55;4984:2;4971:16;5010:18;5002:6;4999:30;4996:50;;;5042:1;5039;5032:12;4996:50;5087:7;5082:2;5073:6;5069:2;5065:15;5061:24;5058:37;5055:57;;;5108:1;5105;5098:12;5055:57;4332:841;;;;-1:-1:-1;5139:2:41;5131:11;;-1:-1:-1;;;4332:841:41:o;5178:127::-;5239:10;5234:3;5230:20;5227:1;5220:31;5270:4;5267:1;5260:15;5294:4;5291:1;5284:15;5310:247;5369:6;5422:2;5410:9;5401:7;5397:23;5393:32;5390:52;;;5438:1;5435;5428:12;5390:52;5477:9;5464:23;5496:31;5521:5;5496:31;:::i;5562:225::-;5629:9;;;5650:11;;;5647:134;;;5703:10;5698:3;5694:20;5691:1;5684:31;5738:4;5735:1;5728:15;5766:4;5763:1;5756:15;6000:521;6077:4;6083:6;6143:11;6130:25;6237:2;6233:7;6222:8;6206:14;6202:29;6198:43;6178:18;6174:68;6164:96;;6256:1;6253;6246:12;6164:96;6283:33;;6335:20;;;-1:-1:-1;6378:18:41;6367:30;;6364:50;;;6410:1;6407;6400:12;6364:50;6443:4;6431:17;;-1:-1:-1;6474:14:41;6470:27;;;6460:38;;6457:58;;;6511:1;6508;6501:12;6526:360;6737:6;6729;6724:3;6711:33;6807:2;6803:15;;;;-1:-1:-1;;6799:53:41;6763:16;;6788:65;;;6877:2;6869:11;;6526:360;-1:-1:-1;6526:360:41:o;7186:184::-;7256:6;7309:2;7297:9;7288:7;7284:23;7280:32;7277:52;;;7325:1;7322;7315:12;7277:52;-1:-1:-1;7348:16:41;;7186:184;-1:-1:-1;7186:184:41:o;8508:301::-;8637:3;8675:6;8669:13;8721:6;8714:4;8706:6;8702:17;8697:3;8691:37;8783:1;8747:16;;8772:13;;;-1:-1:-1;8747:16:41;8508:301;-1:-1:-1;8508:301:41:o;9093:127::-;9154:10;9149:3;9145:20;9142:1;9135:31;9185:4;9182:1;9175:15;9209:4;9206:1;9199:15"},"methodIdentifiers":{"DEFAULT_ADMIN_ROLE()":"a217fddf","EXECUTOR_ROLE()":"07bd0265","WITHDRAW_ROLE()":"e02023a1","addDeposit()":"4a58db19","entryPoint()":"b0d691fe","execute(address,uint256,bytes)":"b61d27f6","executeBatch(address[],uint256[],bytes[])":"47e1da2a","getDeposit()":"c399ec88","getNonce()":"d087d288","getRoleAdmin(bytes32)":"248a9ca3","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f","supportsInterface(bytes4)":"01ffc9a7","validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)":"19822f7c","withdrawDepositTo(address,uint256)":"4d44560d"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IEntryPoint\",\"name\":\"anEntryPoint\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"admin\",\"type\":\"address\"},{\"internalType\":\"address[]\",\"name\":\"executors\",\"type\":\"address[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"CanCallOnlyIfTrustedForwarder\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RequiredEntryPointOrExecutor\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UserOpSignerNotSet\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"WrongArrayLength\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DEFAULT_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXECUTOR_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"WITHDRAW_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"addDeposit\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"entryPoint\",\"outputs\":[{\"internalType\":\"contract IEntryPoint\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"dest\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"func\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"dest\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"value\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"func\",\"type\":\"bytes[]\"}],\"name\":\"executeBatch\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation\",\"name\":\"userOp\",\"type\":\"tuple\"},{\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"missingAccountFunds\",\"type\":\"uint256\"}],\"name\":\"validateUserOp\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"validationData\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawDepositTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"Smart Account that acts as an ERC2771 Trusted Forwarder, forwarding calls to other contract(s) where      the account is the trusted forwarder, on behalf of the signer of the userOp.\",\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}],\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InsufficientBalance(uint256,uint256)\":[{\"details\":\"The ETH balance of the account is not enough to perform the operation.\"}]},\"events\":{\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted signaling this.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call:   - if using `revokeRole`, it is the admin role bearer   - if using `renounceRole`, it is the role bearer (i.e. `account`)\"}},\"kind\":\"dev\",\"methods\":{\"execute(address,uint256,bytes)\":{\"params\":{\"dest\":\"destination address to call\",\"func\":\"the calldata to pass in this call\",\"value\":\"the value to pass in this call\"}},\"executeBatch(address[],uint256[],bytes[])\":{\"details\":\"to reduce gas consumption for trivial case (no value), use a zero-length array to mean zero value\",\"params\":{\"dest\":\"an array of destination addresses\",\"func\":\"an array of calldata to pass to each call\",\"value\":\"an array of values to pass to each call. can be zero-length for no-value calls\"}},\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {_setRoleAdmin}.\"},\"grantRole(bytes32,address)\":{\"details\":\"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleGranted} event.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been revoked `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`. May emit a {RoleRevoked} event.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleRevoked} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"details\":\"Must validate caller is the entryPoint.      Must validate the signature and nonce\",\"params\":{\"missingAccountFunds\":\"- Missing funds on the account's deposit in the entrypoint.                              This is the minimum amount to transfer to the sender(entryPoint) to be                              able to make the call. The excess is left as a deposit in the entrypoint                              for future calls. Can be withdrawn anytime using \\\"entryPoint.withdrawTo()\\\".                              In case there is a paymaster in the request (or the current deposit is high                              enough), this value will be zero.\",\"userOp\":\"- The operation that is about to be executed.\",\"userOpHash\":\"- Hash of the user's request data. can be used as the basis for signature.\"},\"returns\":{\"validationData\":\"      - Packaged ValidationData structure. use `_packValidationData` and                              `_unpackValidationData` to encode and decode.                              <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,                                 otherwise, an address of an \\\"authorizer\\\" contract.                              <6-byte> validUntil - Last timestamp this operation is valid. 0 for \\\"indefinite\\\"                              <6-byte> validAfter - First timestamp this operation is valid                                                    If an account doesn't use time-range, it is enough to                                                    return SIG_VALIDATION_FAILED value (1) for signature failure.                              Note that the validation code cannot use block.timestamp (or block.number) directly.\"}},\"withdrawDepositTo(address,uint256)\":{\"params\":{\"amount\":\"to withdraw\",\"withdrawAddress\":\"target to send to\"}}},\"title\":\"ERC2771ForwarderAccount\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"addDeposit()\":{\"notice\":\"deposit more funds for this account in the entryPoint\"},\"entryPoint()\":{\"notice\":\"Return the entryPoint used by this account. Subclass should return the current entryPoint used by this account.\"},\"execute(address,uint256,bytes)\":{\"notice\":\"execute a transaction (called directly from owner, or by entryPoint)\"},\"executeBatch(address[],uint256[],bytes[])\":{\"notice\":\"execute a sequence of transactions\"},\"getDeposit()\":{\"notice\":\"check current account deposit in the entryPoint\"},\"getNonce()\":{\"notice\":\"Return the account nonce. This method returns the next sequential nonce. For a nonce of a specific key, use `entrypoint.getNonce(account, key)`\"},\"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"notice\":\"Validate user's signature and nonce the entryPoint will make the call to the recipient only if this validation call returns successfully. signature failure should be reported by returning SIG_VALIDATION_FAILED (1). This allows making a \\\"simulation call\\\" without a valid signature Other failures (e.g. nonce mismatch, or invalid signature format) should still revert to signal failure.\"},\"withdrawDepositTo(address,uint256)\":{\"notice\":\"withdraw value from the account's deposit\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/ERC2771ForwarderAccount.sol\":\"ERC2771ForwarderAccount\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/core/BaseAccount.sol\":{\"keccak256\":\"0x2736272f077d1699b8b8bf8be18d1c20e506668fc52b3293da70d17e63794358\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://35744475cf48405d7fd6edf6a96c84ef9da3ce844d8dfe3e2e1ffc30edf21d07\",\"dweb:/ipfs/QmUdau9VjVQ7iuRbdTmFSrXP7Hcasd9Cc57LP9thK78bwj\"]},\"@account-abstraction/contracts/core/Helpers.sol\":{\"keccak256\":\"0x6247e011a6cb0b263b3aa098822977181674d91b62e5bdfe04c6e66f72da25d6\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://ca829a69b3fbc74fec8e140d42a2bf93bc3512609272f031c846470f61f0ab7e\",\"dweb:/ipfs/QmP3r3MBgAN39KeVB1rCGJWwcBcotNt26ALtAR54poQ1Jc\"]},\"@account-abstraction/contracts/core/UserOperationLib.sol\":{\"keccak256\":\"0x9d50ece985d35f82e33e5da417595c86fac10449e3d10895d08363d33aad454b\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://b1d11cc364c8bf7ed5388268c895b5ffed16e87dfbcb320ddeeba5e7974315dc\",\"dweb:/ipfs/QmYSpvjxEjweietQrYZagwQ52ipy7eXx4rwvnTzXKeGeMS\"]},\"@account-abstraction/contracts/interfaces/IAccount.sol\":{\"keccak256\":\"0x38710bec0cb20ff4ceef46a80475b5bdabc27b7efd2687fd473db68332f61b78\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://dea7a723e1ef852e8764e69914a345d2e8bc5e13facfc9d5c29d791cb4ab0020\",\"dweb:/ipfs/QmU8dYgyF4DBJXFqjwLAtnE3q8q259ChfoEk9a6wyhHzEP\"]},\"@account-abstraction/contracts/interfaces/IAggregator.sol\":{\"keccak256\":\"0xf100d6fcc0c3b450b13e979b6a42c628c292a1bc340eccc2e7796b80e3975588\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://192938b5b27234d35c8098a319e879363c79f750eea4d0e409dc889a8ce5b155\",\"dweb:/ipfs/QmURpaJFPqEtkKP2ngBsgZhAGN8wAWh5XQpYmCkiz4Urz5\"]},\"@account-abstraction/contracts/interfaces/IEntryPoint.sol\":{\"keccak256\":\"0x1972a5fcb3a808b58c85af5741949ef6af11ab0debd3ae8c708171ae1ae0d0c4\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://baa9837ae73b9e2362a47d42d081d7c0f3d8e878e5edb381117d94a6968949c9\",\"dweb:/ipfs/QmUmo6FUE7fv5z1WzW1YFjxp8PqaeN2JrEee9au59w3Xhe\"]},\"@account-abstraction/contracts/interfaces/INonceManager.sol\":{\"keccak256\":\"0xd575af0f6ebbd5f0b2933307d44cd7b4e03a69f4b817a67db5409bd3c89aeecb\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://3b1e2dea9b05cfba9d13339ed16d96457dc861013cc4f3f35b71a80f82448db3\",\"dweb:/ipfs/QmVaGy5uGDMSiU2SzyokTjoHFyb39VVG5wtaM9KTnHyZSk\"]},\"@account-abstraction/contracts/interfaces/IStakeManager.sol\":{\"keccak256\":\"0xbe5ca9e7f254d031687419e7b96ef48c9c63e9398bbe992dc72ffc6dc14e0a04\",\"license\":\"GPL-3.0-only\",\"urls\":[\"bzz-raw://1fffec71c38627a26fabb423350148009579f092623fb02b471a12d973763a00\",\"dweb:/ipfs/QmRBi31QEYXHj3x1AnQ2jKa2eziZH1b9av396P3b4dw6bj\"]},\"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\":{\"keccak256\":\"0x1129b46381db68eddbc5cb49e50664667b66b03c480453858e7b25eabe444359\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://499a948aba60480dba6e25c763b8d918f1c246eb7a3302e04f493e080f3295be\",\"dweb:/ipfs/QmeRhhswf4NACcBKam2PyjpTP2ddSm648kah5kkQJsvwz3\"]},\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80\",\"dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]},\"@openzeppelin/contracts/metatx/ERC2771Context.sol\":{\"keccak256\":\"0x0b030a33274bde015419d99e54c9164f876a7d10eb590317b79b1d5e4ab23d99\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://68e5f96988198e8efd25ddef0d89750b4daebb7fd1204fa7f5eaccdfcb3398c8\",\"dweb:/ipfs/QmaM6nNkf9UmEtQraopuZamEWCdTWp7GvuN3pjMQrNCHxm\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"contracts/ERC2771ForwarderAccount.sol\":{\"keccak256\":\"0x3bec3493a4264d9719dae3e8860f27588a1392093df08bb9c78dd6129423776b\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://90e8da7c925379074bb90a1082e77fde950409cad62d31ace9704cf7cf0e8da2\",\"dweb:/ipfs/QmVYeHEeMYAYn25mg2ZHucausePwHpPsxjZDVsxp5HYssC\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":1081,"contract":"contracts/ERC2771ForwarderAccount.sol:ERC2771ForwarderAccount","label":"_roles","offset":0,"slot":"0","type":"t_mapping(t_bytes32,t_struct(RoleData)1076_storage)"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_mapping(t_address,t_bool)":{"encoding":"mapping","key":"t_address","label":"mapping(address => bool)","numberOfBytes":"32","value":"t_bool"},"t_mapping(t_bytes32,t_struct(RoleData)1076_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct AccessControl.RoleData)","numberOfBytes":"32","value":"t_struct(RoleData)1076_storage"},"t_struct(RoleData)1076_storage":{"encoding":"inplace","label":"struct AccessControl.RoleData","members":[{"astId":1073,"contract":"contracts/ERC2771ForwarderAccount.sol:ERC2771ForwarderAccount","label":"hasRole","offset":0,"slot":"0","type":"t_mapping(t_address,t_bool)"},{"astId":1075,"contract":"contracts/ERC2771ForwarderAccount.sol:ERC2771ForwarderAccount","label":"adminRole","offset":0,"slot":"1","type":"t_bytes32"}],"numberOfBytes":"64"}}}}},"contracts/dependencies/AccessManager.sol":{"AccessManager":{"abi":[{"inputs":[{"internalType":"address","name":"initialAdmin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerAlreadyScheduled","type":"error"},{"inputs":[],"name":"AccessManagerBadConfirmation","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerExpired","type":"error"},{"inputs":[{"internalType":"address","name":"initialAdmin","type":"address"}],"name":"AccessManagerInvalidInitialAdmin","type":"error"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"AccessManagerLockedRole","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerNotReady","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerNotScheduled","type":"error"},{"inputs":[{"internalType":"address","name":"msgsender","type":"address"},{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"AccessManagerUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"AccessManagerUnauthorizedCall","type":"error"},{"inputs":[{"internalType":"address","name":"msgsender","type":"address"},{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"AccessManagerUnauthorizedCancel","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AccessManagerUnauthorizedConsume","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"}],"name":"OperationCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"}],"name":"OperationExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"schedule","type":"uint48"},{"indexed":false,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"OperationScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"uint64","name":"admin","type":"uint64"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"}],"name":"RoleGrantDelayChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"},{"indexed":false,"internalType":"bool","name":"newMember","type":"bool"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"uint64","name":"guardian","type":"uint64"}],"name":"RoleGuardianChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":false,"internalType":"string","name":"label","type":"string"}],"name":"RoleLabel","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"}],"name":"TargetAdminDelayUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bool","name":"closed","type":"bool"}],"name":"TargetClosed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes4","name":"selector","type":"bytes4"},{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"TargetFunctionRoleUpdated","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_ROLE","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"canCall","outputs":[{"internalType":"bool","name":"immediate","type":"bool"},{"internalType":"uint32","name":"delay","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"cancel","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"consumeScheduledOp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"execute","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"expiration","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"getAccess","outputs":[{"internalType":"uint48","name":"since","type":"uint48"},{"internalType":"uint32","name":"currentDelay","type":"uint32"},{"internalType":"uint32","name":"pendingDelay","type":"uint32"},{"internalType":"uint48","name":"effect","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getNonce","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleAdmin","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleGrantDelay","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleGuardian","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getSchedule","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"getTargetAdminDelay","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"getTargetFunctionRole","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"executionDelay","type":"uint32"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"isMember","type":"bool"},{"internalType":"uint32","name":"executionDelay","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"hashOperation","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"isTargetClosed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"string","name":"label","type":"string"}],"name":"labelRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minSetback","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint48","name":"when","type":"uint48"}],"name":"schedule","outputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"},{"internalType":"uint32","name":"nonce","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint32","name":"newDelay","type":"uint32"}],"name":"setGrantDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint64","name":"admin","type":"uint64"}],"name":"setRoleAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint64","name":"guardian","type":"uint64"}],"name":"setRoleGuardian","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"newDelay","type":"uint32"}],"name":"setTargetAdminDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"closed","type":"bool"}],"name":"setTargetClosed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4[]","name":"selectors","type":"bytes4[]"},{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"setTargetFunctionRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"address","name":"newAuthority","type":"address"}],"name":"updateAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_10037":{"entryPoint":null,"id":10037,"parameterSlots":1,"returnSlots":0},"@_getFullAt_8522":{"entryPoint":1016,"id":8522,"parameterSlots":2,"returnSlots":3},"@_grantRole_10567":{"entryPoint":111,"id":10567,"parameterSlots":4,"returnSlots":1},"@getFull_8542":{"entryPoint":983,"id":8542,"parameterSlots":1,"returnSlots":3},"@get_8560":{"entryPoint":937,"id":8560,"parameterSlots":1,"returnSlots":1},"@max_5133":{"entryPoint":967,"id":5133,"parameterSlots":2,"returnSlots":1},"@pack_8705":{"entryPoint":null,"id":8705,"parameterSlots":3,"returnSlots":1},"@ternary_5114":{"entryPoint":null,"id":5114,"parameterSlots":3,"returnSlots":1},"@timestamp_8454":{"entryPoint":693,"id":8454,"parameterSlots":0,"returnSlots":1},"@toDelay_8484":{"entryPoint":708,"id":8484,"parameterSlots":1,"returnSlots":1},"@toUint48_7278":{"entryPoint":883,"id":7278,"parameterSlots":1,"returnSlots":1},"@toUint_8287":{"entryPoint":null,"id":8287,"parameterSlots":1,"returnSlots":1},"@unpack_8667":{"entryPoint":null,"id":8667,"parameterSlots":1,"returnSlots":3},"@withUpdate_8616":{"entryPoint":717,"id":8616,"parameterSlots":3,"returnSlots":2},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":1089,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint48":{"entryPoint":1154,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint32":{"entryPoint":1184,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":1134,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:1849:41","nodeType":"YulBlock","src":"0:1849:41","statements":[{"nativeSrc":"6:3:41","nodeType":"YulBlock","src":"6:3:41","statements":[]},{"body":{"nativeSrc":"95:209:41","nodeType":"YulBlock","src":"95:209:41","statements":[{"body":{"nativeSrc":"141:16:41","nodeType":"YulBlock","src":"141:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"150:1:41","nodeType":"YulLiteral","src":"150:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"153:1:41","nodeType":"YulLiteral","src":"153:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"143:6:41","nodeType":"YulIdentifier","src":"143:6:41"},"nativeSrc":"143:12:41","nodeType":"YulFunctionCall","src":"143:12:41"},"nativeSrc":"143:12:41","nodeType":"YulExpressionStatement","src":"143:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"116:7:41","nodeType":"YulIdentifier","src":"116:7:41"},{"name":"headStart","nativeSrc":"125:9:41","nodeType":"YulIdentifier","src":"125:9:41"}],"functionName":{"name":"sub","nativeSrc":"112:3:41","nodeType":"YulIdentifier","src":"112:3:41"},"nativeSrc":"112:23:41","nodeType":"YulFunctionCall","src":"112:23:41"},{"kind":"number","nativeSrc":"137:2:41","nodeType":"YulLiteral","src":"137:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"108:3:41","nodeType":"YulIdentifier","src":"108:3:41"},"nativeSrc":"108:32:41","nodeType":"YulFunctionCall","src":"108:32:41"},"nativeSrc":"105:52:41","nodeType":"YulIf","src":"105:52:41"},{"nativeSrc":"166:29:41","nodeType":"YulVariableDeclaration","src":"166:29:41","value":{"arguments":[{"name":"headStart","nativeSrc":"185:9:41","nodeType":"YulIdentifier","src":"185:9:41"}],"functionName":{"name":"mload","nativeSrc":"179:5:41","nodeType":"YulIdentifier","src":"179:5:41"},"nativeSrc":"179:16:41","nodeType":"YulFunctionCall","src":"179:16:41"},"variables":[{"name":"value","nativeSrc":"170:5:41","nodeType":"YulTypedName","src":"170:5:41","type":""}]},{"body":{"nativeSrc":"258:16:41","nodeType":"YulBlock","src":"258:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"267:1:41","nodeType":"YulLiteral","src":"267:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"270:1:41","nodeType":"YulLiteral","src":"270:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"260:6:41","nodeType":"YulIdentifier","src":"260:6:41"},"nativeSrc":"260:12:41","nodeType":"YulFunctionCall","src":"260:12:41"},"nativeSrc":"260:12:41","nodeType":"YulExpressionStatement","src":"260:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"217:5:41","nodeType":"YulIdentifier","src":"217:5:41"},{"arguments":[{"name":"value","nativeSrc":"228:5:41","nodeType":"YulIdentifier","src":"228:5:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"243:3:41","nodeType":"YulLiteral","src":"243:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"248:1:41","nodeType":"YulLiteral","src":"248:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"239:3:41","nodeType":"YulIdentifier","src":"239:3:41"},"nativeSrc":"239:11:41","nodeType":"YulFunctionCall","src":"239:11:41"},{"kind":"number","nativeSrc":"252:1:41","nodeType":"YulLiteral","src":"252:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"235:3:41","nodeType":"YulIdentifier","src":"235:3:41"},"nativeSrc":"235:19:41","nodeType":"YulFunctionCall","src":"235:19:41"}],"functionName":{"name":"and","nativeSrc":"224:3:41","nodeType":"YulIdentifier","src":"224:3:41"},"nativeSrc":"224:31:41","nodeType":"YulFunctionCall","src":"224:31:41"}],"functionName":{"name":"eq","nativeSrc":"214:2:41","nodeType":"YulIdentifier","src":"214:2:41"},"nativeSrc":"214:42:41","nodeType":"YulFunctionCall","src":"214:42:41"}],"functionName":{"name":"iszero","nativeSrc":"207:6:41","nodeType":"YulIdentifier","src":"207:6:41"},"nativeSrc":"207:50:41","nodeType":"YulFunctionCall","src":"207:50:41"},"nativeSrc":"204:70:41","nodeType":"YulIf","src":"204:70:41"},{"nativeSrc":"283:15:41","nodeType":"YulAssignment","src":"283:15:41","value":{"name":"value","nativeSrc":"293:5:41","nodeType":"YulIdentifier","src":"293:5:41"},"variableNames":[{"name":"value0","nativeSrc":"283:6:41","nodeType":"YulIdentifier","src":"283:6:41"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"14:290:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"61:9:41","nodeType":"YulTypedName","src":"61:9:41","type":""},{"name":"dataEnd","nativeSrc":"72:7:41","nodeType":"YulTypedName","src":"72:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"84:6:41","nodeType":"YulTypedName","src":"84:6:41","type":""}],"src":"14:290:41"},{"body":{"nativeSrc":"410:102:41","nodeType":"YulBlock","src":"410:102:41","statements":[{"nativeSrc":"420:26:41","nodeType":"YulAssignment","src":"420:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"432:9:41","nodeType":"YulIdentifier","src":"432:9:41"},{"kind":"number","nativeSrc":"443:2:41","nodeType":"YulLiteral","src":"443:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"428:3:41","nodeType":"YulIdentifier","src":"428:3:41"},"nativeSrc":"428:18:41","nodeType":"YulFunctionCall","src":"428:18:41"},"variableNames":[{"name":"tail","nativeSrc":"420:4:41","nodeType":"YulIdentifier","src":"420:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"462:9:41","nodeType":"YulIdentifier","src":"462:9:41"},{"arguments":[{"name":"value0","nativeSrc":"477:6:41","nodeType":"YulIdentifier","src":"477:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"493:3:41","nodeType":"YulLiteral","src":"493:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"498:1:41","nodeType":"YulLiteral","src":"498:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"489:3:41","nodeType":"YulIdentifier","src":"489:3:41"},"nativeSrc":"489:11:41","nodeType":"YulFunctionCall","src":"489:11:41"},{"kind":"number","nativeSrc":"502:1:41","nodeType":"YulLiteral","src":"502:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"485:3:41","nodeType":"YulIdentifier","src":"485:3:41"},"nativeSrc":"485:19:41","nodeType":"YulFunctionCall","src":"485:19:41"}],"functionName":{"name":"and","nativeSrc":"473:3:41","nodeType":"YulIdentifier","src":"473:3:41"},"nativeSrc":"473:32:41","nodeType":"YulFunctionCall","src":"473:32:41"}],"functionName":{"name":"mstore","nativeSrc":"455:6:41","nodeType":"YulIdentifier","src":"455:6:41"},"nativeSrc":"455:51:41","nodeType":"YulFunctionCall","src":"455:51:41"},"nativeSrc":"455:51:41","nodeType":"YulExpressionStatement","src":"455:51:41"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"309:203:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"379:9:41","nodeType":"YulTypedName","src":"379:9:41","type":""},{"name":"value0","nativeSrc":"390:6:41","nodeType":"YulTypedName","src":"390:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"401:4:41","nodeType":"YulTypedName","src":"401:4:41","type":""}],"src":"309:203:41"},{"body":{"nativeSrc":"616:101:41","nodeType":"YulBlock","src":"616:101:41","statements":[{"nativeSrc":"626:26:41","nodeType":"YulAssignment","src":"626:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"638:9:41","nodeType":"YulIdentifier","src":"638:9:41"},{"kind":"number","nativeSrc":"649:2:41","nodeType":"YulLiteral","src":"649:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"634:3:41","nodeType":"YulIdentifier","src":"634:3:41"},"nativeSrc":"634:18:41","nodeType":"YulFunctionCall","src":"634:18:41"},"variableNames":[{"name":"tail","nativeSrc":"626:4:41","nodeType":"YulIdentifier","src":"626:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"668:9:41","nodeType":"YulIdentifier","src":"668:9:41"},{"arguments":[{"name":"value0","nativeSrc":"683:6:41","nodeType":"YulIdentifier","src":"683:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"699:2:41","nodeType":"YulLiteral","src":"699:2:41","type":"","value":"64"},{"kind":"number","nativeSrc":"703:1:41","nodeType":"YulLiteral","src":"703:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"695:3:41","nodeType":"YulIdentifier","src":"695:3:41"},"nativeSrc":"695:10:41","nodeType":"YulFunctionCall","src":"695:10:41"},{"kind":"number","nativeSrc":"707:1:41","nodeType":"YulLiteral","src":"707:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"691:3:41","nodeType":"YulIdentifier","src":"691:3:41"},"nativeSrc":"691:18:41","nodeType":"YulFunctionCall","src":"691:18:41"}],"functionName":{"name":"and","nativeSrc":"679:3:41","nodeType":"YulIdentifier","src":"679:3:41"},"nativeSrc":"679:31:41","nodeType":"YulFunctionCall","src":"679:31:41"}],"functionName":{"name":"mstore","nativeSrc":"661:6:41","nodeType":"YulIdentifier","src":"661:6:41"},"nativeSrc":"661:50:41","nodeType":"YulFunctionCall","src":"661:50:41"},"nativeSrc":"661:50:41","nodeType":"YulExpressionStatement","src":"661:50:41"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"517:200:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"585:9:41","nodeType":"YulTypedName","src":"585:9:41","type":""},{"name":"value0","nativeSrc":"596:6:41","nodeType":"YulTypedName","src":"596:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"607:4:41","nodeType":"YulTypedName","src":"607:4:41","type":""}],"src":"517:200:41"},{"body":{"nativeSrc":"754:95:41","nodeType":"YulBlock","src":"754:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"771:1:41","nodeType":"YulLiteral","src":"771:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"778:3:41","nodeType":"YulLiteral","src":"778:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"783:10:41","nodeType":"YulLiteral","src":"783:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"774:3:41","nodeType":"YulIdentifier","src":"774:3:41"},"nativeSrc":"774:20:41","nodeType":"YulFunctionCall","src":"774:20:41"}],"functionName":{"name":"mstore","nativeSrc":"764:6:41","nodeType":"YulIdentifier","src":"764:6:41"},"nativeSrc":"764:31:41","nodeType":"YulFunctionCall","src":"764:31:41"},"nativeSrc":"764:31:41","nodeType":"YulExpressionStatement","src":"764:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"811:1:41","nodeType":"YulLiteral","src":"811:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"814:4:41","nodeType":"YulLiteral","src":"814:4:41","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"804:6:41","nodeType":"YulIdentifier","src":"804:6:41"},"nativeSrc":"804:15:41","nodeType":"YulFunctionCall","src":"804:15:41"},"nativeSrc":"804:15:41","nodeType":"YulExpressionStatement","src":"804:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"835:1:41","nodeType":"YulLiteral","src":"835:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"838:4:41","nodeType":"YulLiteral","src":"838:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"828:6:41","nodeType":"YulIdentifier","src":"828:6:41"},"nativeSrc":"828:15:41","nodeType":"YulFunctionCall","src":"828:15:41"},"nativeSrc":"828:15:41","nodeType":"YulExpressionStatement","src":"828:15:41"}]},"name":"panic_error_0x11","nativeSrc":"722:127:41","nodeType":"YulFunctionDefinition","src":"722:127:41"},{"body":{"nativeSrc":"901:132:41","nodeType":"YulBlock","src":"901:132:41","statements":[{"nativeSrc":"911:58:41","nodeType":"YulAssignment","src":"911:58:41","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"926:1:41","nodeType":"YulIdentifier","src":"926:1:41"},{"kind":"number","nativeSrc":"929:14:41","nodeType":"YulLiteral","src":"929:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"922:3:41","nodeType":"YulIdentifier","src":"922:3:41"},"nativeSrc":"922:22:41","nodeType":"YulFunctionCall","src":"922:22:41"},{"arguments":[{"name":"y","nativeSrc":"950:1:41","nodeType":"YulIdentifier","src":"950:1:41"},{"kind":"number","nativeSrc":"953:14:41","nodeType":"YulLiteral","src":"953:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"946:3:41","nodeType":"YulIdentifier","src":"946:3:41"},"nativeSrc":"946:22:41","nodeType":"YulFunctionCall","src":"946:22:41"}],"functionName":{"name":"add","nativeSrc":"918:3:41","nodeType":"YulIdentifier","src":"918:3:41"},"nativeSrc":"918:51:41","nodeType":"YulFunctionCall","src":"918:51:41"},"variableNames":[{"name":"sum","nativeSrc":"911:3:41","nodeType":"YulIdentifier","src":"911:3:41"}]},{"body":{"nativeSrc":"1005:22:41","nodeType":"YulBlock","src":"1005:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"1007:16:41","nodeType":"YulIdentifier","src":"1007:16:41"},"nativeSrc":"1007:18:41","nodeType":"YulFunctionCall","src":"1007:18:41"},"nativeSrc":"1007:18:41","nodeType":"YulExpressionStatement","src":"1007:18:41"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"984:3:41","nodeType":"YulIdentifier","src":"984:3:41"},{"kind":"number","nativeSrc":"989:14:41","nodeType":"YulLiteral","src":"989:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"981:2:41","nodeType":"YulIdentifier","src":"981:2:41"},"nativeSrc":"981:23:41","nodeType":"YulFunctionCall","src":"981:23:41"},"nativeSrc":"978:49:41","nodeType":"YulIf","src":"978:49:41"}]},"name":"checked_add_t_uint48","nativeSrc":"854:179:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"884:1:41","nodeType":"YulTypedName","src":"884:1:41","type":""},{"name":"y","nativeSrc":"887:1:41","nodeType":"YulTypedName","src":"887:1:41","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"893:3:41","nodeType":"YulTypedName","src":"893:3:41","type":""}],"src":"854:179:41"},{"body":{"nativeSrc":"1185:216:41","nodeType":"YulBlock","src":"1185:216:41","statements":[{"nativeSrc":"1195:26:41","nodeType":"YulAssignment","src":"1195:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1207:9:41","nodeType":"YulIdentifier","src":"1207:9:41"},{"kind":"number","nativeSrc":"1218:2:41","nodeType":"YulLiteral","src":"1218:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1203:3:41","nodeType":"YulIdentifier","src":"1203:3:41"},"nativeSrc":"1203:18:41","nodeType":"YulFunctionCall","src":"1203:18:41"},"variableNames":[{"name":"tail","nativeSrc":"1195:4:41","nodeType":"YulIdentifier","src":"1195:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1237:9:41","nodeType":"YulIdentifier","src":"1237:9:41"},{"arguments":[{"name":"value0","nativeSrc":"1252:6:41","nodeType":"YulIdentifier","src":"1252:6:41"},{"kind":"number","nativeSrc":"1260:10:41","nodeType":"YulLiteral","src":"1260:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1248:3:41","nodeType":"YulIdentifier","src":"1248:3:41"},"nativeSrc":"1248:23:41","nodeType":"YulFunctionCall","src":"1248:23:41"}],"functionName":{"name":"mstore","nativeSrc":"1230:6:41","nodeType":"YulIdentifier","src":"1230:6:41"},"nativeSrc":"1230:42:41","nodeType":"YulFunctionCall","src":"1230:42:41"},"nativeSrc":"1230:42:41","nodeType":"YulExpressionStatement","src":"1230:42:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1292:9:41","nodeType":"YulIdentifier","src":"1292:9:41"},{"kind":"number","nativeSrc":"1303:2:41","nodeType":"YulLiteral","src":"1303:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1288:3:41","nodeType":"YulIdentifier","src":"1288:3:41"},"nativeSrc":"1288:18:41","nodeType":"YulFunctionCall","src":"1288:18:41"},{"arguments":[{"name":"value1","nativeSrc":"1312:6:41","nodeType":"YulIdentifier","src":"1312:6:41"},{"kind":"number","nativeSrc":"1320:14:41","nodeType":"YulLiteral","src":"1320:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"1308:3:41","nodeType":"YulIdentifier","src":"1308:3:41"},"nativeSrc":"1308:27:41","nodeType":"YulFunctionCall","src":"1308:27:41"}],"functionName":{"name":"mstore","nativeSrc":"1281:6:41","nodeType":"YulIdentifier","src":"1281:6:41"},"nativeSrc":"1281:55:41","nodeType":"YulFunctionCall","src":"1281:55:41"},"nativeSrc":"1281:55:41","nodeType":"YulExpressionStatement","src":"1281:55:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1356:9:41","nodeType":"YulIdentifier","src":"1356:9:41"},{"kind":"number","nativeSrc":"1367:2:41","nodeType":"YulLiteral","src":"1367:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1352:3:41","nodeType":"YulIdentifier","src":"1352:3:41"},"nativeSrc":"1352:18:41","nodeType":"YulFunctionCall","src":"1352:18:41"},{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"1386:6:41","nodeType":"YulIdentifier","src":"1386:6:41"}],"functionName":{"name":"iszero","nativeSrc":"1379:6:41","nodeType":"YulIdentifier","src":"1379:6:41"},"nativeSrc":"1379:14:41","nodeType":"YulFunctionCall","src":"1379:14:41"}],"functionName":{"name":"iszero","nativeSrc":"1372:6:41","nodeType":"YulIdentifier","src":"1372:6:41"},"nativeSrc":"1372:22:41","nodeType":"YulFunctionCall","src":"1372:22:41"}],"functionName":{"name":"mstore","nativeSrc":"1345:6:41","nodeType":"YulIdentifier","src":"1345:6:41"},"nativeSrc":"1345:50:41","nodeType":"YulFunctionCall","src":"1345:50:41"},"nativeSrc":"1345:50:41","nodeType":"YulExpressionStatement","src":"1345:50:41"}]},"name":"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed","nativeSrc":"1038:363:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1138:9:41","nodeType":"YulTypedName","src":"1138:9:41","type":""},{"name":"value2","nativeSrc":"1149:6:41","nodeType":"YulTypedName","src":"1149:6:41","type":""},{"name":"value1","nativeSrc":"1157:6:41","nodeType":"YulTypedName","src":"1157:6:41","type":""},{"name":"value0","nativeSrc":"1165:6:41","nodeType":"YulTypedName","src":"1165:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1176:4:41","nodeType":"YulTypedName","src":"1176:4:41","type":""}],"src":"1038:363:41"},{"body":{"nativeSrc":"1454:122:41","nodeType":"YulBlock","src":"1454:122:41","statements":[{"nativeSrc":"1464:51:41","nodeType":"YulAssignment","src":"1464:51:41","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"1480:1:41","nodeType":"YulIdentifier","src":"1480:1:41"},{"kind":"number","nativeSrc":"1483:10:41","nodeType":"YulLiteral","src":"1483:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1476:3:41","nodeType":"YulIdentifier","src":"1476:3:41"},"nativeSrc":"1476:18:41","nodeType":"YulFunctionCall","src":"1476:18:41"},{"arguments":[{"name":"y","nativeSrc":"1500:1:41","nodeType":"YulIdentifier","src":"1500:1:41"},{"kind":"number","nativeSrc":"1503:10:41","nodeType":"YulLiteral","src":"1503:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1496:3:41","nodeType":"YulIdentifier","src":"1496:3:41"},"nativeSrc":"1496:18:41","nodeType":"YulFunctionCall","src":"1496:18:41"}],"functionName":{"name":"sub","nativeSrc":"1472:3:41","nodeType":"YulIdentifier","src":"1472:3:41"},"nativeSrc":"1472:43:41","nodeType":"YulFunctionCall","src":"1472:43:41"},"variableNames":[{"name":"diff","nativeSrc":"1464:4:41","nodeType":"YulIdentifier","src":"1464:4:41"}]},{"body":{"nativeSrc":"1548:22:41","nodeType":"YulBlock","src":"1548:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"1550:16:41","nodeType":"YulIdentifier","src":"1550:16:41"},"nativeSrc":"1550:18:41","nodeType":"YulFunctionCall","src":"1550:18:41"},"nativeSrc":"1550:18:41","nodeType":"YulExpressionStatement","src":"1550:18:41"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"1530:4:41","nodeType":"YulIdentifier","src":"1530:4:41"},{"kind":"number","nativeSrc":"1536:10:41","nodeType":"YulLiteral","src":"1536:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"gt","nativeSrc":"1527:2:41","nodeType":"YulIdentifier","src":"1527:2:41"},"nativeSrc":"1527:20:41","nodeType":"YulFunctionCall","src":"1527:20:41"},"nativeSrc":"1524:46:41","nodeType":"YulIf","src":"1524:46:41"}]},"name":"checked_sub_t_uint32","nativeSrc":"1406:170:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"1436:1:41","nodeType":"YulTypedName","src":"1436:1:41","type":""},{"name":"y","nativeSrc":"1439:1:41","nodeType":"YulTypedName","src":"1439:1:41","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"1445:4:41","nodeType":"YulTypedName","src":"1445:4:41","type":""}],"src":"1406:170:41"},{"body":{"nativeSrc":"1717:130:41","nodeType":"YulBlock","src":"1717:130:41","statements":[{"nativeSrc":"1727:26:41","nodeType":"YulAssignment","src":"1727:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1739:9:41","nodeType":"YulIdentifier","src":"1739:9:41"},{"kind":"number","nativeSrc":"1750:2:41","nodeType":"YulLiteral","src":"1750:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1735:3:41","nodeType":"YulIdentifier","src":"1735:3:41"},"nativeSrc":"1735:18:41","nodeType":"YulFunctionCall","src":"1735:18:41"},"variableNames":[{"name":"tail","nativeSrc":"1727:4:41","nodeType":"YulIdentifier","src":"1727:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1769:9:41","nodeType":"YulIdentifier","src":"1769:9:41"},{"arguments":[{"name":"value0","nativeSrc":"1784:6:41","nodeType":"YulIdentifier","src":"1784:6:41"},{"kind":"number","nativeSrc":"1792:4:41","nodeType":"YulLiteral","src":"1792:4:41","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"1780:3:41","nodeType":"YulIdentifier","src":"1780:3:41"},"nativeSrc":"1780:17:41","nodeType":"YulFunctionCall","src":"1780:17:41"}],"functionName":{"name":"mstore","nativeSrc":"1762:6:41","nodeType":"YulIdentifier","src":"1762:6:41"},"nativeSrc":"1762:36:41","nodeType":"YulFunctionCall","src":"1762:36:41"},"nativeSrc":"1762:36:41","nodeType":"YulExpressionStatement","src":"1762:36:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1818:9:41","nodeType":"YulIdentifier","src":"1818:9:41"},{"kind":"number","nativeSrc":"1829:2:41","nodeType":"YulLiteral","src":"1829:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1814:3:41","nodeType":"YulIdentifier","src":"1814:3:41"},"nativeSrc":"1814:18:41","nodeType":"YulFunctionCall","src":"1814:18:41"},{"name":"value1","nativeSrc":"1834:6:41","nodeType":"YulIdentifier","src":"1834:6:41"}],"functionName":{"name":"mstore","nativeSrc":"1807:6:41","nodeType":"YulIdentifier","src":"1807:6:41"},"nativeSrc":"1807:34:41","nodeType":"YulFunctionCall","src":"1807:34:41"},"nativeSrc":"1807:34:41","nodeType":"YulExpressionStatement","src":"1807:34:41"}]},"name":"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"1581:266:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1678:9:41","nodeType":"YulTypedName","src":"1678:9:41","type":""},{"name":"value1","nativeSrc":"1689:6:41","nodeType":"YulTypedName","src":"1689:6:41","type":""},{"name":"value0","nativeSrc":"1697:6:41","nodeType":"YulTypedName","src":"1697:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1708:4:41","nodeType":"YulTypedName","src":"1708:4:41","type":""}],"src":"1581:266:41"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(64, 1), 1)))\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_add_t_uint48(x, y) -> sum\n    {\n        sum := add(and(x, 0xffffffffffff), and(y, 0xffffffffffff))\n        if gt(sum, 0xffffffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffff))\n        mstore(add(headStart, 64), iszero(iszero(value2)))\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffff), and(y, 0xffffffff))\n        if gt(diff, 0xffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), value1)\n    }\n}","id":41,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"608060405234801561000f575f5ffd5b50604051612d7e380380612d7e83398101604081905261002e91610441565b6001600160a01b03811661005c57604051630409d6d160e11b81525f60048201526024015b60405180910390fd5b6100685f82818061006f565b50506104bc565b5f6002600160401b03196001600160401b038616016100ac5760405163061c6a4360e21b81526001600160401b0386166004820152602401610053565b6001600160401b0385165f9081526001602090815260408083206001600160a01b038816845290915281205465ffffffffffff16159081156101a15763ffffffff85166100f76102b5565b6101019190610482565b905060405180604001604052808265ffffffffffff1681526020016101318663ffffffff166102c460201b60201c565b6001600160701b039081169091526001600160401b0389165f9081526001602090815260408083206001600160a01b038c16845282529091208351815494909201519092166601000000000000026001600160a01b031990931665ffffffffffff90911617919091179055610247565b6001600160401b0387165f9081526001602090815260408083206001600160a01b038a1684529091528120546101ed9166010000000000009091046001600160701b03169086906102cd565b6001600160401b0389165f9081526001602090815260408083206001600160a01b038c168452909152902080546001600160701b03909316660100000000000002600160301b600160a01b03199093169290921790915590505b6040805163ffffffff8616815265ffffffffffff831660208201528315158183015290516001600160a01b038816916001600160401b038a16917ff98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf9181900360600190a35095945050505050565b5f6102bf42610373565b905090565b63ffffffff1690565b5f80806102e26001600160701b0387166103a9565b90505f61031d8563ffffffff168763ffffffff168463ffffffff1611610308575f610312565b61031288856104a0565b63ffffffff166103c7565b905063ffffffff811661032e6102b5565b6103389190610482565b925063ffffffff8616602083901b67ffffffff0000000016604085901b6dffffffffffff000000000000000016171793505050935093915050565b5f65ffffffffffff8211156103a5576040516306dfcc6560e41b81526030600482015260248101839052604401610053565b5090565b5f806103bd6001600160701b0384166103d7565b5090949350505050565b8082118183180281185b92915050565b5f80806103eb846103e66102b5565b6103f8565b9250925092509193909250565b6001600160501b03602083901c166001600160701b03831665ffffffffffff604085901c811690841681111561043057828282610434565b815f5f5b9250925092509250925092565b5f60208284031215610451575f5ffd5b81516001600160a01b0381168114610467575f5ffd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b65ffffffffffff81811683821601908111156103d1576103d161046e565b63ffffffff82811682821603908111156103d1576103d161046e565b6128b5806104c95f395ff3fe6080604052600436106101db575f3560e01c80636d5115bd116100fd578063b700961311610092578063d22b598911610062578063d22b598914610636578063d6bb62c614610655578063f801a69814610674578063fe0776f5146106ad575f5ffd5b8063b7009613146105a8578063b7d2b162146105e3578063cc1b6c8114610602578063d1f856ee14610617575f5ffd5b8063a166aa89116100cd578063a166aa8914610501578063a64d95ce14610530578063abd9bd2a1461054f578063ac9650d81461057c575f5ffd5b80636d5115bd1461049157806375b238fc146104b0578063853551b8146104c357806394c7d7ee146104e2575f5ffd5b806330cae187116101735780634665096d116101435780634665096d146104035780634c1da1e2146104185780635296295214610437578063530dd45614610456575f5ffd5b806330cae1871461035c5780633adc277a1461037b5780633ca7c02a146103b15780634136a33c146103cb575f5ffd5b806318ff183c116101ae57806318ff183c146102b25780631cff79cd146102d157806325c471a0146102e45780633078f11414610303575f5ffd5b806308d6122d146101df5780630b0a93ba1461020057806312be87271461025f578063167bd39514610293575b5f5ffd5b3480156101ea575f5ffd5b506101fe6101f936600461218f565b6106cc565b005b34801561020b575f5ffd5b5061024261021a3660046121f1565b6001600160401b039081165f9081526001602081905260409091200154600160401b90041690565b6040516001600160401b0390911681526020015b60405180910390f35b34801561026a575f5ffd5b5061027e6102793660046121f1565b61071e565b60405163ffffffff9091168152602001610256565b34801561029e575f5ffd5b506101fe6102ad36600461220a565b610758565b3480156102bd575f5ffd5b506101fe6102cc366004612245565b61076e565b61027e6102df3660046122ae565b6107d0565b3480156102ef575f5ffd5b506101fe6102fe366004612311565b6108fc565b34801561030e575f5ffd5b5061032261031d366004612353565b61091e565b604051610256949392919065ffffffffffff948516815263ffffffff93841660208201529190921660408201529116606082015260800190565b348015610367575f5ffd5b506101fe61037636600461236d565b6109b7565b348015610386575f5ffd5b5061039a61039536600461239e565b6109c9565b60405165ffffffffffff9091168152602001610256565b3480156103bc575f5ffd5b506102426001600160401b0381565b3480156103d6575f5ffd5b5061027e6103e536600461239e565b5f90815260026020526040902054600160301b900463ffffffff1690565b34801561040e575f5ffd5b5062093a8061027e565b348015610423575f5ffd5b5061027e6104323660046123b5565b6109fa565b348015610442575f5ffd5b506101fe61045136600461236d565b610a27565b348015610461575f5ffd5b506102426104703660046121f1565b6001600160401b039081165f90815260016020819052604090912001541690565b34801561049c575f5ffd5b506102426104ab3660046123e5565b610a39565b3480156104bb575f5ffd5b506102425f81565b3480156104ce575f5ffd5b506101fe6104dd366004612411565b610a73565b3480156104ed575f5ffd5b506101fe6104fc3660046122ae565b610b0a565b34801561050c575f5ffd5b5061052061051b3660046123b5565b610bb4565b6040519015158152602001610256565b34801561053b575f5ffd5b506101fe61054a36600461242c565b610bdb565b34801561055a575f5ffd5b5061056e610569366004612454565b610bed565b604051908152602001610256565b348015610587575f5ffd5b5061059b6105963660046124b4565b610c25565b60405161025691906124f2565b3480156105b3575f5ffd5b506105c76105c2366004612576565b610d0a565b60408051921515835263ffffffff909116602083015201610256565b3480156105ee575f5ffd5b506101fe6105fd366004612353565b610d8b565b34801561060d575f5ffd5b506206978061027e565b348015610622575f5ffd5b506105c7610631366004612353565b610da2565b348015610641575f5ffd5b506101fe6106503660046125be565b610e26565b348015610660575f5ffd5b5061027e61066f366004612454565b610e38565b34801561067f575f5ffd5b5061069361068e3660046125da565b610f8b565b6040805192835263ffffffff909116602083015201610256565b3480156106b8575f5ffd5b506101fe6106c7366004612353565b6110cc565b6106d46110f5565b5f5b828110156107175761070f858585848181106106f4576106f4612647565b9050602002016020810190610709919061265b565b8461116c565b6001016106d6565b5050505050565b6001600160401b0381165f9081526001602081905260408220015461075290600160801b90046001600160701b03166111ed565b92915050565b6107606110f5565b61076a828261120b565b5050565b6107766110f5565b604051637a9e5e4b60e01b81526001600160a01b038281166004830152831690637a9e5e4b906024015f604051808303815f87803b1580156107b6575f5ffd5b505af11580156107c8573d5f5f3e3d5ffd5b505050505050565b5f3381806107e08388888861127c565b91509150811580156107f6575063ffffffff8116155b1561084957828761080788886112cd565b6040516381c6f24b60e01b81526001600160a01b0393841660048201529290911660248301526001600160e01b03191660448201526064015b60405180910390fd5b5f61085684898989610bed565b90505f63ffffffff831615158061087c5750610871826109c9565b65ffffffffffff1615155b1561088d5761088a826112e4565b90505b6003546108a38a61089e8b8b6112cd565b6113e2565b6003819055506108ea8a8a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250349250611424915050565b506003559450505050505b9392505050565b6109046110f5565b61091883836109128661071e565b846114c4565b50505050565b6001600160401b0382165f9081526001602090815260408083206001600160a01b03851684529091528120805465ffffffffffff1691908190819060ff825c161561098a57805461097e90600160301b90046001600160701b031661170a565b919550935091506109ad565b80546109a590600160301b90046001600160701b031661172b565b919550935091505b5092959194509250565b6109bf6110f5565b61076a828261173f565b5f8181526002602052604081205465ffffffffffff166109e8816117e2565b6109f257806108f5565b5f9392505050565b6001600160a01b0381165f90815260208190526040812060010154610752906001600160701b03166111ed565b610a2f6110f5565b61076a8282611810565b6001600160a01b0382165f908152602081815260408083206001600160e01b0319851684529091529020546001600160401b031692915050565b610a7b6110f5565b6001600160401b0383161580610a9957506001600160401b03838116145b15610ac25760405163061c6a4360e21b81526001600160401b0384166004820152602401610840565b826001600160401b03167f1256f5b5ecb89caec12db449738f2fbcd1ba5806cf38f35413f4e5c15bf6a4508383604051610afd92919061269e565b60405180910390a2505050565b60408051638fb3603760e01b80825291513392918391638fb36037916004808201926020929091908290030181865afa158015610b49573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b6d91906126b9565b6001600160e01b03191614610ba057604051630641fee960e31b81526001600160a01b0382166004820152602401610840565b610717610baf85838686610bed565b6112e4565b6001600160a01b03165f90815260208190526040902060010154600160701b900460ff1690565b610be36110f5565b61076a82826118c1565b5f84848484604051602001610c0594939291906126d4565b604051602081830303815290604052805190602001209050949350505050565b604080515f815260208101909152606090826001600160401b03811115610c4e57610c4e61273b565b604051908082528060200260200182016040528015610c8157816020015b6060815260200190600190039081610c6c5790505b5091505f5b83811015610d0257610cdd30868684818110610ca457610ca4612647565b9050602002810190610cb6919061274f565b85604051602001610cc9939291906127a8565b6040516020818303038152906040526119d0565b838281518110610cef57610cef612647565b6020908102919091010152600101610c86565b505092915050565b5f5f610d1584610bb4565b15610d2457505f905080610d83565b306001600160a01b03861603610d4857610d3e8484611a42565b5f91509150610d83565b5f610d538585610a39565b90505f5f610d618389610da2565b9150915081610d71575f5f610d7b565b63ffffffff811615815b945094505050505b935093915050565b610d936110f5565b610d9d8282611a58565b505050565b5f8067fffffffffffffffe196001600160401b03851601610dc85750600190505f610e1f565b5f5f610dd4868661091e565b5050915091508165ffffffffffff165f14158015610e14575060ff5f5c1680610e145750610e00611b41565b65ffffffffffff168265ffffffffffff1611155b93509150610e1f9050565b9250929050565b610e2e6110f5565b61076a8282611b50565b5f3381610e4585856112cd565b90505f610e5488888888610bed565b5f8181526002602052604081205491925065ffffffffffff9091169003610e915760405163060a299b60e41b815260048101829052602401610840565b826001600160a01b0316886001600160a01b031614610f2a575f610eb55f85610da2565b5090505f610ecf610ec961021a8b87610a39565b86610da2565b50905081158015610ede575080155b15610f2757604051630ff89d4760e21b81526001600160a01b038087166004830152808c1660248301528a1660448201526001600160e01b031985166064820152608401610840565b50505b5f81815260026020526040808220805465ffffffffffff1916908190559051600160301b90910463ffffffff1691829184917fbd9ac67a6e2f6463b80927326310338bcbb4bdb7936ce1365ea3e01067e7b9f791a398975050505050505050565b5f803381610f9b8289898961127c565b9150505f8163ffffffff16610fae611b41565b610fb891906127bd565b905063ffffffff82161580610fee57505f8665ffffffffffff16118015610fee57508065ffffffffffff168665ffffffffffff16105b15610fff5782896108078a8a6112cd565b6110198665ffffffffffff168265ffffffffffff16611c0b565b9550611027838a8a8a610bed565b945061103285611c1a565b5f8581526002602052604090819020805465ffffffffffff891669ffffffffffffffffffff19821617600160301b9182900463ffffffff90811660010190811692830291909117909255915190955086907f82a2da5dee54ea8021c6545b4444620291e07ee83be6dd57edb175062715f3b4906110b8908a9088908f908f908f906127db565b60405180910390a350505094509492505050565b6001600160a01b0381163314610d9357604051635f159e6360e01b815260040160405180910390fd5b335f80611103838236611c66565b9150915081610d9d578063ffffffff165f0361115d575f6111248136611d29565b5060405163f07e038f60e01b81526001600160a01b03871660048201526001600160401b03821660248201529092506044019050610840565b610918610baf84305f36610bed565b6001600160a01b0383165f818152602081815260408083206001600160e01b0319871680855290835292819020805467ffffffffffffffff19166001600160401b038716908117909155905192835292917f9ea6790c7dadfd01c9f8b9762b3682607af2c7e79e05a9f9fdf5580dde949151910160405180910390a3505050565b5f5f611201836001600160701b031661172b565b5090949350505050565b6001600160a01b0382165f81815260208190526040908190206001018054841515600160701b0260ff60701b19909116179055517f90d4e7bb7e5d933792b3562e1741306f8be94837e1348dacef9b6f1df56eb1389061127090841515815260200190565b60405180910390a25050565b5f80306001600160a01b038616036112a257611299868585611c66565b915091506112c4565b600483106112be576112b986866105c287876112cd565b611299565b505f9050805b94509492505050565b5f6112db6004828486612714565b6108f591612820565b5f8181526002602052604081205465ffffffffffff811690600160301b900463ffffffff1681830361132c5760405163060a299b60e41b815260048101859052602401610840565b611334611b41565b65ffffffffffff168265ffffffffffff16111561136757604051630c65b5bd60e11b815260048101859052602401610840565b611370826117e2565b1561139157604051631e2975b960e21b815260048101859052602401610840565b5f84815260026020526040808220805465ffffffffffff191690555163ffffffff83169186917f76a2a46953689d4861a5d3f6ed883ad7e6af674a21f8e162707159fc9dde614d9190a39392505050565b604080516001600160a01b03939093166020808501919091526001600160e01b0319929092168382015280518084038201815260609093019052815191012090565b6060814710156114505760405163cf47918160e01b815247600482015260248101839052604401610840565b5f5f856001600160a01b0316848660405161146b9190612858565b5f6040518083038185875af1925050503d805f81146114a5576040519150601f19603f3d011682016040523d82523d5f602084013e6114aa565b606091505b50915091506114ba868383611f0f565b9695505050505050565b5f67fffffffffffffffe196001600160401b038616016115025760405163061c6a4360e21b81526001600160401b0386166004820152602401610840565b6001600160401b0385165f9081526001602090815260408083206001600160a01b038816845290915281205465ffffffffffff16159081156115f2578463ffffffff1661154d611b41565b61155791906127bd565b905060405180604001604052808265ffffffffffff1681526020016115858663ffffffff1663ffffffff1690565b6001600160701b039081169091526001600160401b0389165f9081526001602090815260408083206001600160a01b038c1684528252909120835181549490920151909216600160301b026001600160a01b031990931665ffffffffffff9091161791909117905561169c565b6001600160401b0387165f9081526001602090815260408083206001600160a01b038a16845290915281205461163b91600160301b9091046001600160701b0316908690611f6b565b6001600160401b0389165f9081526001602090815260408083206001600160a01b038c168452909152902080546001600160701b03909316600160301b0273ffffffffffffffffffffffffffff000000000000199093169290921790915590505b6040805163ffffffff8616815265ffffffffffff831660208201528315158183015290516001600160a01b038816916001600160401b038a16917ff98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf9181900360600190a35095945050505050565b5f5f5f61171e84611719612011565b612020565b9250925092509193909250565b5f5f5f61171e8461173a611b41565b612072565b6001600160401b038216158061175d57506001600160401b03828116145b156117865760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b038281165f818152600160208190526040808320909101805467ffffffffffffffff19169486169485179055517f1fd6dd7631312dfac2205b52913f99de03b4d7e381d5d27d3dbfe0713e6e63409190a35050565b5f6117eb611b41565b65ffffffffffff1661180062093a80846127bd565b65ffffffffffff16111592915050565b6001600160401b038216158061182e57506001600160401b03828116145b156118575760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b038281165f81815260016020819052604080832090910180546fffffffffffffffff00000000000000001916600160401b958716958602179055517f7a8059630b897b5de4c08ade69f8b90c3ead1f8596d62d10b6c4d14a0afb4ae29190a35050565b67fffffffffffffffe196001600160401b038316016118fe5760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b0382165f9081526001602081905260408220015461193790600160801b90046001600160701b03168362069780611f6b565b6001600160401b0385165f818152600160208190526040918290200180546001600160701b03909516600160801b026dffffffffffffffffffffffffffff60801b199095169490941790935591519092507ffeb69018ee8b8fd50ea86348f1267d07673379f72cffdeccec63853ee8ce8b4890610afd908590859063ffffffff92909216825265ffffffffffff16602082015260400190565b60605f5f846001600160a01b0316846040516119ec9190612858565b5f60405180830381855af49150503d805f8114611a24576040519150601f19603f3d011682016040523d82523d5f602084013e611a29565b606091505b5091509150611a39858383611f0f565b95945050505050565b5f611a4d83836113e2565b600354149392505050565b5f67fffffffffffffffe196001600160401b03841601611a965760405163061c6a4360e21b81526001600160401b0384166004820152602401610840565b6001600160401b0383165f9081526001602090815260408083206001600160a01b038616845290915281205465ffffffffffff169003611ad757505f610752565b6001600160401b0383165f8181526001602090815260408083206001600160a01b038716808552925280832080546001600160a01b0319169055519092917ff229baa593af28c41b1d16b748cd7688f0c83aaf92d4be41c44005defe84c16691a350600192915050565b5f611b4b426120be565b905090565b6001600160a01b0382165f90815260208190526040812060010154611b82906001600160701b03168362069780611f6b565b6001600160a01b0385165f818152602081815260409182902060010180546dffffffffffffffffffffffffffff19166001600160701b039690961695909517909455805163ffffffff8716815265ffffffffffff841694810194909452919350917fa56b76017453f399ec2327ba00375dbfb1fd070ff854341ad6191e6a2e2de19c9101610afd565b5f8282188284110282186108f5565b5f8181526002602052604090205465ffffffffffff168015801590611c455750611c43816117e2565b155b1561076a5760405163813e945960e01b815260048101839052602401610840565b5f806004831015611c7b57505f905080610d83565b306001600160a01b03861603611c9e57610d3e30611c9986866112cd565b611a42565b5f5f5f611cab8787611d29565b92509250925082158015611cc35750611cc330610bb4565b15611cd6575f5f94509450505050610d83565b5f5f611ce2848b610da2565b9150915081611cfb575f5f965096505050505050610d83565b611d118363ffffffff168263ffffffff16611c0b565b63ffffffff8116159b909a5098505050505050505050565b5f80806004841015611d4257505f915081905080611f08565b5f611d4d86866112cd565b90506001600160e01b031981166310a6aa3760e31b1480611d7e57506001600160e01b031981166330cae18760e01b145b80611d9957506001600160e01b0319811663294b14a960e11b145b80611db457506001600160e01b03198116635326cae760e11b145b80611dcf57506001600160e01b0319811663d22b598960e01b145b15611de45760015f5f93509350935050611f08565b6001600160e01b0319811663063fc60f60e21b1480611e1357506001600160e01b0319811663167bd39560e01b145b80611e2e57506001600160e01b031981166308d6122d60e01b145b15611e6d575f611e4260246004888a612714565b810190611e4f91906123b5565b90505f611e5b826109fa565b600196505f95509350611f0892505050565b6001600160e01b0319811663012e238d60e51b1480611e9c57506001600160e01b03198116635be958b160e11b145b15611ef4575f611eb060246004888a612714565b810190611ebd91906121f1565b90506001611ee6826001600160401b039081165f90815260016020819052604090912001541690565b5f9450945094505050611f08565b5f611eff3083610a39565b5f935093509350505b9250925092565b606082611f2457611f1f826120f4565b6108f5565b8151158015611f3b57506001600160a01b0384163b155b15611f6457604051639996b31560e01b81526001600160a01b0385166004820152602401610840565b50806108f5565b5f5f5f611f80866001600160701b03166111ed565b90505f611fbb8563ffffffff168763ffffffff168463ffffffff1611611fa6575f611fb0565b611fb08885612863565b63ffffffff16611c0b565b90508063ffffffff16611fcc611b41565b611fd691906127bd565b925063ffffffff8616602083901b67ffffffff0000000016604085901b6dffffffffffff000000000000000016171793505050935093915050565b5f611b4b6407915ecc006120be565b5f808069ffffffffffffffffffff602086901c166001600160701b03861665ffffffffffff604088901c811690871681111561205e57828282612062565b815f5f5b9550955095505050509250925092565b69ffffffffffffffffffff602083901c166001600160701b03831665ffffffffffff604085901c81169084168111156120ad578282826120b1565b815f5f5b9250925092509250925092565b5f65ffffffffffff8211156120f0576040516306dfcc6560e41b81526030600482015260248101839052604401610840565b5090565b8051156121045780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b50565b6001600160a01b038116811461211d575f5ffd5b5f5f83601f840112612144575f5ffd5b5081356001600160401b0381111561215a575f5ffd5b6020830191508360208260051b8501011115610e1f575f5ffd5b80356001600160401b038116811461218a575f5ffd5b919050565b5f5f5f5f606085870312156121a2575f5ffd5b84356121ad81612120565b935060208501356001600160401b038111156121c7575f5ffd5b6121d387828801612134565b90945092506121e6905060408601612174565b905092959194509250565b5f60208284031215612201575f5ffd5b6108f582612174565b5f5f6040838503121561221b575f5ffd5b823561222681612120565b91506020830135801515811461223a575f5ffd5b809150509250929050565b5f5f60408385031215612256575f5ffd5b823561226181612120565b9150602083013561223a81612120565b5f5f83601f840112612281575f5ffd5b5081356001600160401b03811115612297575f5ffd5b602083019150836020828501011115610e1f575f5ffd5b5f5f5f604084860312156122c0575f5ffd5b83356122cb81612120565b925060208401356001600160401b038111156122e5575f5ffd5b6122f186828701612271565b9497909650939450505050565b803563ffffffff8116811461218a575f5ffd5b5f5f5f60608486031215612323575f5ffd5b61232c84612174565b9250602084013561233c81612120565b915061234a604085016122fe565b90509250925092565b5f5f60408385031215612364575f5ffd5b61226183612174565b5f5f6040838503121561237e575f5ffd5b61238783612174565b915061239560208401612174565b90509250929050565b5f602082840312156123ae575f5ffd5b5035919050565b5f602082840312156123c5575f5ffd5b81356108f581612120565b6001600160e01b03198116811461211d575f5ffd5b5f5f604083850312156123f6575f5ffd5b823561240181612120565b9150602083013561223a816123d0565b5f5f5f60408486031215612423575f5ffd5b6122cb84612174565b5f5f6040838503121561243d575f5ffd5b61244683612174565b9150612395602084016122fe565b5f5f5f5f60608587031215612467575f5ffd5b843561247281612120565b9350602085013561248281612120565b925060408501356001600160401b0381111561249c575f5ffd5b6124a887828801612271565b95989497509550505050565b5f5f602083850312156124c5575f5ffd5b82356001600160401b038111156124da575f5ffd5b6124e685828601612134565b90969095509350505050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b8281101561256a57603f19878603018452815180518087528060208301602089015e5f602082890101526020601f19601f83011688010196505050602082019150602084019350600181019050612518565b50929695505050505050565b5f5f5f60608486031215612588575f5ffd5b833561259381612120565b925060208401356125a381612120565b915060408401356125b3816123d0565b809150509250925092565b5f5f604083850312156125cf575f5ffd5b823561244681612120565b5f5f5f5f606085870312156125ed575f5ffd5b84356125f881612120565b935060208501356001600160401b03811115612612575f5ffd5b61261e87828801612271565b909450925050604085013565ffffffffffff8116811461263c575f5ffd5b939692955090935050565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561266b575f5ffd5b81356108f5816123d0565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b602081525f6126b1602083018486612676565b949350505050565b5f602082840312156126c9575f5ffd5b81516108f5816123d0565b6001600160a01b038581168252841660208201526060604082018190525f906114ba9083018486612676565b634e487b7160e01b5f52601160045260245ffd5b5f5f85851115612722575f5ffd5b8386111561272e575f5ffd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f5f8335601e19843603018112612764575f5ffd5b8301803591506001600160401b0382111561277d575f5ffd5b602001915036819003821315610e1f575f5ffd5b5f81518060208401855e5f93019283525090919050565b828482375f8382015f81526114ba8185612791565b65ffffffffffff818116838216019081111561075257610752612700565b65ffffffffffff861681526001600160a01b038581166020830152841660408201526080606082018190525f906128159083018486612676565b979650505050505050565b80356001600160e01b03198116906004841015612851576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f6108f58284612791565b63ffffffff82811682821603908111156107525761075261270056fea2646970667358221220e5651ef5cf3ba574508e0f1368da9c614b1c943795416bdf235ce37eaf23841164736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x2D7E CODESIZE SUB DUP1 PUSH2 0x2D7E DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2E SWAP2 PUSH2 0x441 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x5C JUMPI PUSH1 0x40 MLOAD PUSH4 0x409D6D1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x68 PUSH0 DUP3 DUP2 DUP1 PUSH2 0x6F JUMP JUMPDEST POP POP PUSH2 0x4BC JUMP JUMPDEST PUSH0 PUSH1 0x2 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND ADD PUSH2 0xAC JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x53 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND ISZERO SWAP1 DUP2 ISZERO PUSH2 0x1A1 JUMPI PUSH4 0xFFFFFFFF DUP6 AND PUSH2 0xF7 PUSH2 0x2B5 JUMP JUMPDEST PUSH2 0x101 SWAP2 SWAP1 PUSH2 0x482 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH6 0xFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x131 DUP7 PUSH4 0xFFFFFFFF AND PUSH2 0x2C4 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 DUP2 AND SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE DUP3 MSTORE SWAP1 SWAP2 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP5 SWAP1 SWAP3 ADD MLOAD SWAP1 SWAP3 AND PUSH7 0x1000000000000 MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x247 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH2 0x1ED SWAP2 PUSH7 0x1000000000000 SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 DUP7 SWAP1 PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP4 AND PUSH7 0x1000000000000 MUL PUSH1 0x1 PUSH1 0x30 SHL PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE SWAP1 POP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP7 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE DUP4 ISZERO ISZERO DUP2 DUP4 ADD MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP11 AND SWAP2 PUSH32 0xF98448B987F1428E0E230E1F3C6E2CE15B5693EAF31827FBD0B1EC4B424AE7CF SWAP2 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG3 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2BF TIMESTAMP PUSH2 0x373 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0x2E2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP8 AND PUSH2 0x3A9 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x31D DUP6 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x308 JUMPI PUSH0 PUSH2 0x312 JUMP JUMPDEST PUSH2 0x312 DUP9 DUP6 PUSH2 0x4A0 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x3C7 JUMP JUMPDEST SWAP1 POP PUSH4 0xFFFFFFFF DUP2 AND PUSH2 0x32E PUSH2 0x2B5 JUMP JUMPDEST PUSH2 0x338 SWAP2 SWAP1 PUSH2 0x482 JUMP JUMPDEST SWAP3 POP PUSH4 0xFFFFFFFF DUP7 AND PUSH1 0x20 DUP4 SWAP1 SHL PUSH8 0xFFFFFFFF00000000 AND PUSH1 0x40 DUP6 SWAP1 SHL PUSH14 0xFFFFFFFFFFFF0000000000000000 AND OR OR SWAP4 POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH6 0xFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3A5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x30 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x53 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x3BD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP5 AND PUSH2 0x3D7 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 DUP3 GT DUP2 DUP4 XOR MUL DUP2 XOR JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0x3EB DUP5 PUSH2 0x3E6 PUSH2 0x2B5 JUMP JUMPDEST PUSH2 0x3F8 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x50 SHL SUB PUSH1 0x20 DUP4 SWAP1 SHR AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP4 AND PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 DUP6 SWAP1 SHR DUP2 AND SWAP1 DUP5 AND DUP2 GT ISZERO PUSH2 0x430 JUMPI DUP3 DUP3 DUP3 PUSH2 0x434 JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x451 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x467 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x3D1 JUMPI PUSH2 0x3D1 PUSH2 0x46E JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x3D1 JUMPI PUSH2 0x3D1 PUSH2 0x46E JUMP JUMPDEST PUSH2 0x28B5 DUP1 PUSH2 0x4C9 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1DB JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6D5115BD GT PUSH2 0xFD JUMPI DUP1 PUSH4 0xB7009613 GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xD22B5989 GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xD22B5989 EQ PUSH2 0x636 JUMPI DUP1 PUSH4 0xD6BB62C6 EQ PUSH2 0x655 JUMPI DUP1 PUSH4 0xF801A698 EQ PUSH2 0x674 JUMPI DUP1 PUSH4 0xFE0776F5 EQ PUSH2 0x6AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB7009613 EQ PUSH2 0x5A8 JUMPI DUP1 PUSH4 0xB7D2B162 EQ PUSH2 0x5E3 JUMPI DUP1 PUSH4 0xCC1B6C81 EQ PUSH2 0x602 JUMPI DUP1 PUSH4 0xD1F856EE EQ PUSH2 0x617 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA166AA89 GT PUSH2 0xCD JUMPI DUP1 PUSH4 0xA166AA89 EQ PUSH2 0x501 JUMPI DUP1 PUSH4 0xA64D95CE EQ PUSH2 0x530 JUMPI DUP1 PUSH4 0xABD9BD2A EQ PUSH2 0x54F JUMPI DUP1 PUSH4 0xAC9650D8 EQ PUSH2 0x57C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6D5115BD EQ PUSH2 0x491 JUMPI DUP1 PUSH4 0x75B238FC EQ PUSH2 0x4B0 JUMPI DUP1 PUSH4 0x853551B8 EQ PUSH2 0x4C3 JUMPI DUP1 PUSH4 0x94C7D7EE EQ PUSH2 0x4E2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x30CAE187 GT PUSH2 0x173 JUMPI DUP1 PUSH4 0x4665096D GT PUSH2 0x143 JUMPI DUP1 PUSH4 0x4665096D EQ PUSH2 0x403 JUMPI DUP1 PUSH4 0x4C1DA1E2 EQ PUSH2 0x418 JUMPI DUP1 PUSH4 0x52962952 EQ PUSH2 0x437 JUMPI DUP1 PUSH4 0x530DD456 EQ PUSH2 0x456 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x30CAE187 EQ PUSH2 0x35C JUMPI DUP1 PUSH4 0x3ADC277A EQ PUSH2 0x37B JUMPI DUP1 PUSH4 0x3CA7C02A EQ PUSH2 0x3B1 JUMPI DUP1 PUSH4 0x4136A33C EQ PUSH2 0x3CB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18FF183C GT PUSH2 0x1AE JUMPI DUP1 PUSH4 0x18FF183C EQ PUSH2 0x2B2 JUMPI DUP1 PUSH4 0x1CFF79CD EQ PUSH2 0x2D1 JUMPI DUP1 PUSH4 0x25C471A0 EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0x3078F114 EQ PUSH2 0x303 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8D6122D EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0xB0A93BA EQ PUSH2 0x200 JUMPI DUP1 PUSH4 0x12BE8727 EQ PUSH2 0x25F JUMPI DUP1 PUSH4 0x167BD395 EQ PUSH2 0x293 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x1F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x218F JUMP JUMPDEST PUSH2 0x6CC JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x20B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x21A CALLDATASIZE PUSH1 0x4 PUSH2 0x21F1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x26A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x279 CALLDATASIZE PUSH1 0x4 PUSH2 0x21F1 JUMP JUMPDEST PUSH2 0x71E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x29E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2AD CALLDATASIZE PUSH1 0x4 PUSH2 0x220A JUMP JUMPDEST PUSH2 0x758 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2CC CALLDATASIZE PUSH1 0x4 PUSH2 0x2245 JUMP JUMPDEST PUSH2 0x76E JUMP JUMPDEST PUSH2 0x27E PUSH2 0x2DF CALLDATASIZE PUSH1 0x4 PUSH2 0x22AE JUMP JUMPDEST PUSH2 0x7D0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2FE CALLDATASIZE PUSH1 0x4 PUSH2 0x2311 JUMP JUMPDEST PUSH2 0x8FC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x30E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x322 PUSH2 0x31D CALLDATASIZE PUSH1 0x4 PUSH2 0x2353 JUMP JUMPDEST PUSH2 0x91E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x256 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH6 0xFFFFFFFFFFFF SWAP5 DUP6 AND DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP4 DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x40 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x367 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x376 CALLDATASIZE PUSH1 0x4 PUSH2 0x236D JUMP JUMPDEST PUSH2 0x9B7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x386 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x39A PUSH2 0x395 CALLDATASIZE PUSH1 0x4 PUSH2 0x239E JUMP JUMPDEST PUSH2 0x9C9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x3E5 CALLDATASIZE PUSH1 0x4 PUSH2 0x239E JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x40E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x93A80 PUSH2 0x27E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x423 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x432 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B5 JUMP JUMPDEST PUSH2 0x9FA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x442 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x451 CALLDATASIZE PUSH1 0x4 PUSH2 0x236D JUMP JUMPDEST PUSH2 0xA27 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x461 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x470 CALLDATASIZE PUSH1 0x4 PUSH2 0x21F1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x49C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x4AB CALLDATASIZE PUSH1 0x4 PUSH2 0x23E5 JUMP JUMPDEST PUSH2 0xA39 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x4DD CALLDATASIZE PUSH1 0x4 PUSH2 0x2411 JUMP JUMPDEST PUSH2 0xA73 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x4FC CALLDATASIZE PUSH1 0x4 PUSH2 0x22AE JUMP JUMPDEST PUSH2 0xB0A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x520 PUSH2 0x51B CALLDATASIZE PUSH1 0x4 PUSH2 0x23B5 JUMP JUMPDEST PUSH2 0xBB4 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x54A CALLDATASIZE PUSH1 0x4 PUSH2 0x242C JUMP JUMPDEST PUSH2 0xBDB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x55A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x56E PUSH2 0x569 CALLDATASIZE PUSH1 0x4 PUSH2 0x2454 JUMP JUMPDEST PUSH2 0xBED JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x587 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x59B PUSH2 0x596 CALLDATASIZE PUSH1 0x4 PUSH2 0x24B4 JUMP JUMPDEST PUSH2 0xC25 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x256 SWAP2 SWAP1 PUSH2 0x24F2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5C7 PUSH2 0x5C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x2576 JUMP JUMPDEST PUSH2 0xD0A JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 ISZERO ISZERO DUP4 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x5FD CALLDATASIZE PUSH1 0x4 PUSH2 0x2353 JUMP JUMPDEST PUSH2 0xD8B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x60D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x69780 PUSH2 0x27E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x622 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5C7 PUSH2 0x631 CALLDATASIZE PUSH1 0x4 PUSH2 0x2353 JUMP JUMPDEST PUSH2 0xDA2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x641 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x650 CALLDATASIZE PUSH1 0x4 PUSH2 0x25BE JUMP JUMPDEST PUSH2 0xE26 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x660 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x66F CALLDATASIZE PUSH1 0x4 PUSH2 0x2454 JUMP JUMPDEST PUSH2 0xE38 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x67F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x693 PUSH2 0x68E CALLDATASIZE PUSH1 0x4 PUSH2 0x25DA JUMP JUMPDEST PUSH2 0xF8B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x6C7 CALLDATASIZE PUSH1 0x4 PUSH2 0x2353 JUMP JUMPDEST PUSH2 0x10CC JUMP JUMPDEST PUSH2 0x6D4 PUSH2 0x10F5 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x717 JUMPI PUSH2 0x70F DUP6 DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x6F4 JUMPI PUSH2 0x6F4 PUSH2 0x2647 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x709 SWAP2 SWAP1 PUSH2 0x265B JUMP JUMPDEST DUP5 PUSH2 0x116C JUMP JUMPDEST PUSH1 0x1 ADD PUSH2 0x6D6 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 KECCAK256 ADD SLOAD PUSH2 0x752 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11ED JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x760 PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x120B JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x776 PUSH2 0x10F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x7A9E5E4B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x7A9E5E4B SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x7B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x7C8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 CALLER DUP2 DUP1 PUSH2 0x7E0 DUP4 DUP9 DUP9 DUP9 PUSH2 0x127C JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x7F6 JUMPI POP PUSH4 0xFFFFFFFF DUP2 AND ISZERO JUMPDEST ISZERO PUSH2 0x849 JUMPI DUP3 DUP8 PUSH2 0x807 DUP9 DUP9 PUSH2 0x12CD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x81C6F24B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x856 DUP5 DUP10 DUP10 DUP10 PUSH2 0xBED JUMP JUMPDEST SWAP1 POP PUSH0 PUSH4 0xFFFFFFFF DUP4 AND ISZERO ISZERO DUP1 PUSH2 0x87C JUMPI POP PUSH2 0x871 DUP3 PUSH2 0x9C9 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x88D JUMPI PUSH2 0x88A DUP3 PUSH2 0x12E4 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x8A3 DUP11 PUSH2 0x89E DUP12 DUP12 PUSH2 0x12CD JUMP JUMPDEST PUSH2 0x13E2 JUMP JUMPDEST PUSH1 0x3 DUP2 SWAP1 SSTORE POP PUSH2 0x8EA DUP11 DUP11 DUP11 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP CALLVALUE SWAP3 POP PUSH2 0x1424 SWAP2 POP POP JUMP JUMPDEST POP PUSH1 0x3 SSTORE SWAP5 POP POP POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x904 PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0x918 DUP4 DUP4 PUSH2 0x912 DUP7 PUSH2 0x71E JUMP JUMPDEST DUP5 PUSH2 0x14C4 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP2 SWAP1 DUP2 SWAP1 DUP2 SWAP1 PUSH1 0xFF DUP3 TLOAD AND ISZERO PUSH2 0x98A JUMPI DUP1 SLOAD PUSH2 0x97E SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x170A JUMP JUMPDEST SWAP2 SWAP6 POP SWAP4 POP SWAP2 POP PUSH2 0x9AD JUMP JUMPDEST DUP1 SLOAD PUSH2 0x9A5 SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x172B JUMP JUMPDEST SWAP2 SWAP6 POP SWAP4 POP SWAP2 POP JUMPDEST POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH2 0x9BF PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x173F JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x9E8 DUP2 PUSH2 0x17E2 JUMP JUMPDEST PUSH2 0x9F2 JUMPI DUP1 PUSH2 0x8F5 JUMP JUMPDEST PUSH0 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x752 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11ED JUMP JUMPDEST PUSH2 0xA2F PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x1810 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xA7B PUSH2 0x10F5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ISZERO DUP1 PUSH2 0xA99 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0xAC2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH32 0x1256F5B5ECB89CAEC12DB449738F2FBCD1BA5806CF38F35413F4E5C15BF6A450 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0xAFD SWAP3 SWAP2 SWAP1 PUSH2 0x269E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0x8FB36037 PUSH1 0xE0 SHL DUP1 DUP3 MSTORE SWAP2 MLOAD CALLER SWAP3 SWAP2 DUP4 SWAP2 PUSH4 0x8FB36037 SWAP2 PUSH1 0x4 DUP1 DUP3 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP1 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB49 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xB6D SWAP2 SWAP1 PUSH2 0x26B9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND EQ PUSH2 0xBA0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x641FEE9 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x717 PUSH2 0xBAF DUP6 DUP4 DUP7 DUP7 PUSH2 0xBED JUMP JUMPDEST PUSH2 0x12E4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x70 SHL SWAP1 DIV PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0xBE3 PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x18C1 JUMP JUMPDEST PUSH0 DUP5 DUP5 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xC05 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 SWAP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xC4E JUMPI PUSH2 0xC4E PUSH2 0x273B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xC81 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xC6C JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xD02 JUMPI PUSH2 0xCDD ADDRESS DUP7 DUP7 DUP5 DUP2 DUP2 LT PUSH2 0xCA4 JUMPI PUSH2 0xCA4 PUSH2 0x2647 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xCB6 SWAP2 SWAP1 PUSH2 0x274F JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xCC9 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x27A8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x19D0 JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xCEF JUMPI PUSH2 0xCEF PUSH2 0x2647 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0xC86 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xD15 DUP5 PUSH2 0xBB4 JUMP JUMPDEST ISZERO PUSH2 0xD24 JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xD83 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0xD48 JUMPI PUSH2 0xD3E DUP5 DUP5 PUSH2 0x1A42 JUMP JUMPDEST PUSH0 SWAP2 POP SWAP2 POP PUSH2 0xD83 JUMP JUMPDEST PUSH0 PUSH2 0xD53 DUP6 DUP6 PUSH2 0xA39 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH0 PUSH2 0xD61 DUP4 DUP10 PUSH2 0xDA2 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xD71 JUMPI PUSH0 PUSH0 PUSH2 0xD7B JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO DUP2 JUMPDEST SWAP5 POP SWAP5 POP POP POP POP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD93 PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0xD9D DUP3 DUP3 PUSH2 0x1A58 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND ADD PUSH2 0xDC8 JUMPI POP PUSH1 0x1 SWAP1 POP PUSH0 PUSH2 0xE1F JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xDD4 DUP7 DUP7 PUSH2 0x91E JUMP JUMPDEST POP POP SWAP2 POP SWAP2 POP DUP2 PUSH6 0xFFFFFFFFFFFF AND PUSH0 EQ ISZERO DUP1 ISZERO PUSH2 0xE14 JUMPI POP PUSH1 0xFF PUSH0 TLOAD AND DUP1 PUSH2 0xE14 JUMPI POP PUSH2 0xE00 PUSH2 0x1B41 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO JUMPDEST SWAP4 POP SWAP2 POP PUSH2 0xE1F SWAP1 POP JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xE2E PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x1B50 JUMP JUMPDEST PUSH0 CALLER DUP2 PUSH2 0xE45 DUP6 DUP6 PUSH2 0x12CD JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0xE54 DUP9 DUP9 DUP9 DUP9 PUSH2 0xBED JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP2 SWAP3 POP PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 SUB PUSH2 0xE91 JUMPI PUSH1 0x40 MLOAD PUSH4 0x60A299B PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF2A JUMPI PUSH0 PUSH2 0xEB5 PUSH0 DUP6 PUSH2 0xDA2 JUMP JUMPDEST POP SWAP1 POP PUSH0 PUSH2 0xECF PUSH2 0xEC9 PUSH2 0x21A DUP12 DUP8 PUSH2 0xA39 JUMP JUMPDEST DUP7 PUSH2 0xDA2 JUMP JUMPDEST POP SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xEDE JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xF27 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFF89D47 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND PUSH1 0x4 DUP4 ADD MSTORE DUP1 DUP13 AND PUSH1 0x24 DUP4 ADD MSTORE DUP11 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP6 AND PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x840 JUMP JUMPDEST POP POP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND SWAP1 DUP2 SWAP1 SSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP2 DUP3 SWAP2 DUP5 SWAP2 PUSH32 0xBD9AC67A6E2F6463B80927326310338BCBB4BDB7936CE1365EA3E01067E7B9F7 SWAP2 LOG3 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 CALLER DUP2 PUSH2 0xF9B DUP3 DUP10 DUP10 DUP10 PUSH2 0x127C JUMP JUMPDEST SWAP2 POP POP PUSH0 DUP2 PUSH4 0xFFFFFFFF AND PUSH2 0xFAE PUSH2 0x1B41 JUMP JUMPDEST PUSH2 0xFB8 SWAP2 SWAP1 PUSH2 0x27BD JUMP JUMPDEST SWAP1 POP PUSH4 0xFFFFFFFF DUP3 AND ISZERO DUP1 PUSH2 0xFEE JUMPI POP PUSH0 DUP7 PUSH6 0xFFFFFFFFFFFF AND GT DUP1 ISZERO PUSH2 0xFEE JUMPI POP DUP1 PUSH6 0xFFFFFFFFFFFF AND DUP7 PUSH6 0xFFFFFFFFFFFF AND LT JUMPDEST ISZERO PUSH2 0xFFF JUMPI DUP3 DUP10 PUSH2 0x807 DUP11 DUP11 PUSH2 0x12CD JUMP JUMPDEST PUSH2 0x1019 DUP7 PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x1C0B JUMP JUMPDEST SWAP6 POP PUSH2 0x1027 DUP4 DUP11 DUP11 DUP11 PUSH2 0xBED JUMP JUMPDEST SWAP5 POP PUSH2 0x1032 DUP6 PUSH2 0x1C1A JUMP JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF DUP10 AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF NOT DUP3 AND OR PUSH1 0x1 PUSH1 0x30 SHL SWAP2 DUP3 SWAP1 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH1 0x1 ADD SWAP1 DUP2 AND SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD SWAP1 SWAP6 POP DUP7 SWAP1 PUSH32 0x82A2DA5DEE54EA8021C6545B4444620291E07EE83BE6DD57EDB175062715F3B4 SWAP1 PUSH2 0x10B8 SWAP1 DUP11 SWAP1 DUP9 SWAP1 DUP16 SWAP1 DUP16 SWAP1 DUP16 SWAP1 PUSH2 0x27DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ PUSH2 0xD93 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5F159E63 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH0 DUP1 PUSH2 0x1103 DUP4 DUP3 CALLDATASIZE PUSH2 0x1C66 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xD9D JUMPI DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x115D JUMPI PUSH0 PUSH2 0x1124 DUP2 CALLDATASIZE PUSH2 0x1D29 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0xF07E038F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE SWAP1 SWAP3 POP PUSH1 0x44 ADD SWAP1 POP PUSH2 0x840 JUMP JUMPDEST PUSH2 0x918 PUSH2 0xBAF DUP5 ADDRESS PUSH0 CALLDATASIZE PUSH2 0xBED JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP3 DUP4 MSTORE SWAP3 SWAP2 PUSH32 0x9EA6790C7DADFD01C9F8B9762B3682607AF2C7E79E05A9F9FDF5580DDE949151 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1201 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x172B JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x1 ADD DUP1 SLOAD DUP5 ISZERO ISZERO PUSH1 0x1 PUSH1 0x70 SHL MUL PUSH1 0xFF PUSH1 0x70 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE MLOAD PUSH32 0x90D4E7BB7E5D933792B3562E1741306F8BE94837E1348DACEF9B6F1DF56EB138 SWAP1 PUSH2 0x1270 SWAP1 DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 DUP1 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x12A2 JUMPI PUSH2 0x1299 DUP7 DUP6 DUP6 PUSH2 0x1C66 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x12C4 JUMP JUMPDEST PUSH1 0x4 DUP4 LT PUSH2 0x12BE JUMPI PUSH2 0x12B9 DUP7 DUP7 PUSH2 0x5C2 DUP8 DUP8 PUSH2 0x12CD JUMP JUMPDEST PUSH2 0x1299 JUMP JUMPDEST POP PUSH0 SWAP1 POP DUP1 JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x12DB PUSH1 0x4 DUP3 DUP5 DUP7 PUSH2 0x2714 JUMP JUMPDEST PUSH2 0x8F5 SWAP2 PUSH2 0x2820 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP2 DUP4 SUB PUSH2 0x132C JUMPI PUSH1 0x40 MLOAD PUSH4 0x60A299B PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x1334 PUSH2 0x1B41 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO PUSH2 0x1367 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC65B5BD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x1370 DUP3 PUSH2 0x17E2 JUMP JUMPDEST ISZERO PUSH2 0x1391 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1E2975B9 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND SWAP1 SSTORE MLOAD PUSH4 0xFFFFFFFF DUP4 AND SWAP2 DUP7 SWAP2 PUSH32 0x76A2A46953689D4861A5D3F6ED883AD7E6AF674A21F8E162707159FC9DDE614D SWAP2 SWAP1 LOG3 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP3 SWAP1 SWAP3 AND DUP4 DUP3 ADD MSTORE DUP1 MLOAD DUP1 DUP5 SUB DUP3 ADD DUP2 MSTORE PUSH1 0x60 SWAP1 SWAP4 ADD SWAP1 MSTORE DUP2 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x1450 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0x146B SWAP2 SWAP1 PUSH2 0x2858 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x14A5 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x14AA JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x14BA DUP7 DUP4 DUP4 PUSH2 0x1F0F JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND ADD PUSH2 0x1502 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND ISZERO SWAP1 DUP2 ISZERO PUSH2 0x15F2 JUMPI DUP5 PUSH4 0xFFFFFFFF AND PUSH2 0x154D PUSH2 0x1B41 JUMP JUMPDEST PUSH2 0x1557 SWAP2 SWAP1 PUSH2 0x27BD JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH6 0xFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1585 DUP7 PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 DUP2 AND SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE DUP3 MSTORE SWAP1 SWAP2 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP5 SWAP1 SWAP3 ADD MLOAD SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x169C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH2 0x163B SWAP2 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 DUP7 SWAP1 PUSH2 0x1F6B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000 NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE SWAP1 POP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP7 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE DUP4 ISZERO ISZERO DUP2 DUP4 ADD MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP11 AND SWAP2 PUSH32 0xF98448B987F1428E0E230E1F3C6E2CE15B5693EAF31827FBD0B1EC4B424AE7CF SWAP2 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG3 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x171E DUP5 PUSH2 0x1719 PUSH2 0x2011 JUMP JUMPDEST PUSH2 0x2020 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x171E DUP5 PUSH2 0x173A PUSH2 0x1B41 JUMP JUMPDEST PUSH2 0x2072 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x175D JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1786 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND SWAP5 DUP7 AND SWAP5 DUP6 OR SWAP1 SSTORE MLOAD PUSH32 0x1FD6DD7631312DFAC2205B52913F99DE03B4D7E381D5D27D3DBFE0713E6E6340 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x17EB PUSH2 0x1B41 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x1800 PUSH3 0x93A80 DUP5 PUSH2 0x27BD JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND GT ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x182E JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1857 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH16 0xFFFFFFFFFFFFFFFF0000000000000000 NOT AND PUSH1 0x1 PUSH1 0x40 SHL SWAP6 DUP8 AND SWAP6 DUP7 MUL OR SWAP1 SSTORE MLOAD PUSH32 0x7A8059630B897B5DE4C08ADE69F8B90C3EAD1F8596D62D10B6C4D14A0AFB4AE2 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ADD PUSH2 0x18FE JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 KECCAK256 ADD SLOAD PUSH2 0x1937 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x1F6B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x80 SHL NOT SWAP1 SWAP6 AND SWAP5 SWAP1 SWAP5 OR SWAP1 SWAP4 SSTORE SWAP2 MLOAD SWAP1 SWAP3 POP PUSH32 0xFEB69018EE8B8FD50EA86348F1267D07673379F72CFFDECCEC63853EE8CE8B48 SWAP1 PUSH2 0xAFD SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x19EC SWAP2 SWAP1 PUSH2 0x2858 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1A24 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1A29 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1A39 DUP6 DUP4 DUP4 PUSH2 0x1F0F JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A4D DUP4 DUP4 PUSH2 0x13E2 JUMP JUMPDEST PUSH1 0x3 SLOAD EQ SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND ADD PUSH2 0x1A96 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP1 SUB PUSH2 0x1AD7 JUMPI POP PUSH0 PUSH2 0x752 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE MLOAD SWAP1 SWAP3 SWAP2 PUSH32 0xF229BAA593AF28C41B1D16B748CD7688F0C83AAF92D4BE41C44005DEFE84C166 SWAP2 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1B4B TIMESTAMP PUSH2 0x20BE JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x1B82 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x1F6B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x1 ADD DUP1 SLOAD PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP7 SWAP1 SWAP7 AND SWAP6 SWAP1 SWAP6 OR SWAP1 SWAP5 SSTORE DUP1 MLOAD PUSH4 0xFFFFFFFF DUP8 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP5 AND SWAP5 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE SWAP2 SWAP4 POP SWAP2 PUSH32 0xA56B76017453F399EC2327BA00375DBFB1FD070FF854341AD6191E6A2E2DE19C SWAP2 ADD PUSH2 0xAFD JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 GT MUL DUP3 XOR PUSH2 0x8F5 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x1C45 JUMPI POP PUSH2 0x1C43 DUP2 PUSH2 0x17E2 JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x76A JUMPI PUSH1 0x40 MLOAD PUSH4 0x813E9459 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x4 DUP4 LT ISZERO PUSH2 0x1C7B JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xD83 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x1C9E JUMPI PUSH2 0xD3E ADDRESS PUSH2 0x1C99 DUP7 DUP7 PUSH2 0x12CD JUMP JUMPDEST PUSH2 0x1A42 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1CAB DUP8 DUP8 PUSH2 0x1D29 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP DUP3 ISZERO DUP1 ISZERO PUSH2 0x1CC3 JUMPI POP PUSH2 0x1CC3 ADDRESS PUSH2 0xBB4 JUMP JUMPDEST ISZERO PUSH2 0x1CD6 JUMPI PUSH0 PUSH0 SWAP5 POP SWAP5 POP POP POP POP PUSH2 0xD83 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1CE2 DUP5 DUP12 PUSH2 0xDA2 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x1CFB JUMPI PUSH0 PUSH0 SWAP7 POP SWAP7 POP POP POP POP POP POP PUSH2 0xD83 JUMP JUMPDEST PUSH2 0x1D11 DUP4 PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x1C0B JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO SWAP12 SWAP1 SWAP11 POP SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x1D42 JUMPI POP PUSH0 SWAP2 POP DUP2 SWAP1 POP DUP1 PUSH2 0x1F08 JUMP JUMPDEST PUSH0 PUSH2 0x1D4D DUP7 DUP7 PUSH2 0x12CD JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x10A6AA37 PUSH1 0xE3 SHL EQ DUP1 PUSH2 0x1D7E JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x30CAE187 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1D99 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x294B14A9 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x1DB4 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5326CAE7 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x1DCF JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xD22B5989 PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x1DE4 JUMPI PUSH1 0x1 PUSH0 PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x63FC60F PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x1E13 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x167BD395 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1E2E JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x8D6122D PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x1E6D JUMPI PUSH0 PUSH2 0x1E42 PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x2714 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1E4F SWAP2 SWAP1 PUSH2 0x23B5 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1E5B DUP3 PUSH2 0x9FA JUMP JUMPDEST PUSH1 0x1 SWAP7 POP PUSH0 SWAP6 POP SWAP4 POP PUSH2 0x1F08 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x12E238D PUSH1 0xE5 SHL EQ DUP1 PUSH2 0x1E9C JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5BE958B1 PUSH1 0xE1 SHL EQ JUMPDEST ISZERO PUSH2 0x1EF4 JUMPI PUSH0 PUSH2 0x1EB0 PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x2714 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1EBD SWAP2 SWAP1 PUSH2 0x21F1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH2 0x1EE6 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD AND SWAP1 JUMP JUMPDEST PUSH0 SWAP5 POP SWAP5 POP SWAP5 POP POP POP PUSH2 0x1F08 JUMP JUMPDEST PUSH0 PUSH2 0x1EFF ADDRESS DUP4 PUSH2 0xA39 JUMP JUMPDEST PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0x1F24 JUMPI PUSH2 0x1F1F DUP3 PUSH2 0x20F4 JUMP JUMPDEST PUSH2 0x8F5 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0x1F3B JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x1F64 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST POP DUP1 PUSH2 0x8F5 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1F80 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11ED JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1FBB DUP6 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1FA6 JUMPI PUSH0 PUSH2 0x1FB0 JUMP JUMPDEST PUSH2 0x1FB0 DUP9 DUP6 PUSH2 0x2863 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x1C0B JUMP JUMPDEST SWAP1 POP DUP1 PUSH4 0xFFFFFFFF AND PUSH2 0x1FCC PUSH2 0x1B41 JUMP JUMPDEST PUSH2 0x1FD6 SWAP2 SWAP1 PUSH2 0x27BD JUMP JUMPDEST SWAP3 POP PUSH4 0xFFFFFFFF DUP7 AND PUSH1 0x20 DUP4 SWAP1 SHL PUSH8 0xFFFFFFFF00000000 AND PUSH1 0x40 DUP6 SWAP1 SHL PUSH14 0xFFFFFFFFFFFF0000000000000000 AND OR OR SWAP4 POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1B4B PUSH5 0x7915ECC00 PUSH2 0x20BE JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH10 0xFFFFFFFFFFFFFFFFFFFF PUSH1 0x20 DUP7 SWAP1 SHR AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP7 AND PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 DUP9 SWAP1 SHR DUP2 AND SWAP1 DUP8 AND DUP2 GT ISZERO PUSH2 0x205E JUMPI DUP3 DUP3 DUP3 PUSH2 0x2062 JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH10 0xFFFFFFFFFFFFFFFFFFFF PUSH1 0x20 DUP4 SWAP1 SHR AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP4 AND PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 DUP6 SWAP1 SHR DUP2 AND SWAP1 DUP5 AND DUP2 GT ISZERO PUSH2 0x20AD JUMPI DUP3 DUP3 DUP3 PUSH2 0x20B1 JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH6 0xFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x20F0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x30 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x840 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP1 MLOAD ISZERO PUSH2 0x2104 JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x211D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2144 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x215A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xE1F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x218A JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x21A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x21AD DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x21C7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x21D3 DUP8 DUP3 DUP9 ADD PUSH2 0x2134 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x21E6 SWAP1 POP PUSH1 0x40 DUP7 ADD PUSH2 0x2174 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2201 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x8F5 DUP3 PUSH2 0x2174 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x221B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2226 DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x223A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2256 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2261 DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x223A DUP2 PUSH2 0x2120 JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2281 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2297 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xE1F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x22C0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x22CB DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x22E5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x22F1 DUP7 DUP3 DUP8 ADD PUSH2 0x2271 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x218A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2323 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x232C DUP5 PUSH2 0x2174 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x233C DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP2 POP PUSH2 0x234A PUSH1 0x40 DUP6 ADD PUSH2 0x22FE JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2364 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2261 DUP4 PUSH2 0x2174 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x237E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2387 DUP4 PUSH2 0x2174 JUMP JUMPDEST SWAP2 POP PUSH2 0x2395 PUSH1 0x20 DUP5 ADD PUSH2 0x2174 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23AE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8F5 DUP2 PUSH2 0x2120 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x211D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x23F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2401 DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x223A DUP2 PUSH2 0x23D0 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2423 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x22CB DUP5 PUSH2 0x2174 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x243D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2446 DUP4 PUSH2 0x2174 JUMP JUMPDEST SWAP2 POP PUSH2 0x2395 PUSH1 0x20 DUP5 ADD PUSH2 0x22FE JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2467 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2472 DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x2482 DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x249C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x24A8 DUP8 DUP3 DUP9 ADD PUSH2 0x2271 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x24C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x24DA JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x24E6 DUP6 DUP3 DUP7 ADD PUSH2 0x2134 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD PUSH1 0x20 DUP4 MSTORE DUP1 DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP6 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP7 ADD ADD SWAP3 POP PUSH1 0x20 DUP7 ADD PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x256A JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE DUP2 MLOAD DUP1 MLOAD DUP1 DUP8 MSTORE DUP1 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP10 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP10 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP9 ADD ADD SWAP7 POP POP POP PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x2518 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2588 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x2593 DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x25A3 DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x25B3 DUP2 PUSH2 0x23D0 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x25CF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2446 DUP2 PUSH2 0x2120 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x25ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x25F8 DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2612 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x261E DUP8 DUP3 DUP9 ADD PUSH2 0x2271 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x263C JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x266B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8F5 DUP2 PUSH2 0x23D0 JUMP JUMPDEST DUP2 DUP4 MSTORE DUP2 DUP2 PUSH1 0x20 DUP6 ADD CALLDATACOPY POP PUSH0 DUP3 DUP3 ADD PUSH1 0x20 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND SWAP1 SWAP2 ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x26B1 PUSH1 0x20 DUP4 ADD DUP5 DUP7 PUSH2 0x2676 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x26C9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x8F5 DUP2 PUSH2 0x23D0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x14BA SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x2676 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x2722 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x272E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x2764 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x277D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0xE1F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 DUP2 MLOAD DUP1 PUSH1 0x20 DUP5 ADD DUP6 MCOPY PUSH0 SWAP4 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH0 DUP4 DUP3 ADD PUSH0 DUP2 MSTORE PUSH2 0x14BA DUP2 DUP6 PUSH2 0x2791 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x752 JUMPI PUSH2 0x752 PUSH2 0x2700 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP7 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE DUP5 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x2815 SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x2676 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x2851 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x8F5 DUP3 DUP5 PUSH2 0x2791 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x752 JUMPI PUSH2 0x752 PUSH2 0x2700 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE5 PUSH6 0x1EF5CF3BA574 POP DUP15 0xF SGT PUSH9 0xDA9C614B1C94379541 PUSH12 0xDF235CE37EAF23841164736F PUSH13 0x634300081C0033000000000000 ","sourceMap":"3931:26481:36:-:0;;;6618:283;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;6666:26:36;;6662:108;;6715:44;;-1:-1:-1;;;6715:44:36;;6756:1;6715:44;;;455:51:41;428:18;;6715:44:36;;;;;;;;6662:108;6852:42;5642:16;6875:12;5642:16;;6852:10;:42::i;:::-;;6618:283;3931:26481;;12080:1061;12238:4;-1:-1:-1;;;;;;;;;;;12258:21:36;;;12254:90;;12302:31;;-1:-1:-1;;;12302:31:36;;-1:-1:-1;;;;;679:31:41;;12302::36;;;661:50:41;634:18;;12302:31:36;517:200:41;12254:90:36;-1:-1:-1;;;;;12371:14:36;;12354;12371;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12371:31:36;;;;;;;;;:37;;;:42;;12446:585;;;;12483:29;;;:16;:14;:16::i;:::-;:29;;;;:::i;:::-;12475:37;;12560:55;;;;;;;;12575:5;12560:55;;;;;;12589:24;:14;:22;;;;;:24;;:::i;:::-;-1:-1:-1;;;;;12560:55:36;;;;;;-1:-1:-1;;;;;12526:14:36;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12526:31:36;;;;;;;;;:89;;;;;;;;;;;;;;-1:-1:-1;;;;;;12526:89:36;;;;;;;;;;;;;;12446:585;;;-1:-1:-1;;;;;12907:14:36;;13005:1;12907:14;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12907:31:36;;;;;;;;;:37;:113;;:37;;;;-1:-1:-1;;;;;12907:37:36;;12973:14;;12907:48;:113::i;:::-;-1:-1:-1;;;;;12859:14:36;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12859:31:36;;;;;;;;;12858:162;;-1:-1:-1;;;;;12858:162:36;;;;;-1:-1:-1;;;;;;;;12858:162:36;;;;;;;;;;;-1:-1:-1;12446:585:36;13046:62;;;1260:10:41;1248:23;;1230:42;;1320:14;1308:27;;1303:2;1288:18;;1281:55;1379:14;;1372:22;1352:18;;;1345:50;13046:62:36;;-1:-1:-1;;;;;13046:62:36;;;-1:-1:-1;;;;;13046:62:36;;;;;;;;1218:2:41;13046:62:36;;;-1:-1:-1;13125:9:36;12080:1061;-1:-1:-1;;;;;12080:1061:36:o;750:110:32:-;794:6;819:34;837:15;819:17;:34::i;:::-;812:41;;750:110;:::o;2508:108::-;2589:20;;;2508:108::o;4033:390::-;4154:18;;;4214:10;-1:-1:-1;;;;;4214:8:32;;;:10::i;:::-;4199:25;;4234:14;4258:61;4267:10;4258:61;;4287:8;4279:16;;:5;:16;;;:39;;4317:1;4279:39;;;4298:16;4306:8;4298:5;:16;:::i;:::-;4258:61;;:8;:61::i;:::-;4234:86;-1:-1:-1;4339:21:32;;;:11;:9;:11::i;:::-;:21;;;;:::i;:::-;4330:30;-1:-1:-1;5126:19:32;;;5120:2;5096:26;;;;;5089:2;5070:21;;;;;5069:54;:76;4370:46;;;;4033:390;;;;;;:::o;14296:213:30:-;14352:6;14382:16;14374:24;;14370:103;;;14421:41;;-1:-1:-1;;;14421:41:30;;14452:2;14421:41;;;1762:36:41;1814:18;;;1807:34;;;1735:18;;14421:41:30;1581:266:41;14370:103:30;-1:-1:-1;14496:5:30;14296:213::o;3609:130:32:-;3657:6;;3696:14;-1:-1:-1;;;;;3696:12:32;;;:14::i;:::-;-1:-1:-1;3675:35:32;;3609:130;-1:-1:-1;;;;3609:130:32:o;3189:111:29:-;3281:5;;;3066;;;3065:36;3060:42;;3189:111;;;;;:::o;3393:159:32:-;3445:18;;;3516:29;3527:4;3533:11;:9;:11::i;:::-;3516:10;:29::i;:::-;3509:36;;;;;;3393:159;;;;;:::o;2868:307::-;-1:-1:-1;;;;;4771:2:32;4764:9;;;;-1:-1:-1;;;;;3062:11:32;;4800:9;4807:2;4800:9;;;;;;3092:19;;;;;:76;;3136:11;3149:10;3161:6;3092:76;;;3115:10;3127:1;3130;3092:76;3085:83;;;;;;2868:307;;;;;:::o;14:290:41:-;84:6;137:2;125:9;116:7;112:23;108:32;105:52;;;153:1;150;143:12;105:52;179:16;;-1:-1:-1;;;;;224:31:41;;214:42;;204:70;;270:1;267;260:12;204:70;293:5;14:290;-1:-1:-1;;;14:290:41:o;722:127::-;783:10;778:3;774:20;771:1;764:31;814:4;811:1;804:15;838:4;835:1;828:15;854:179;953:14;922:22;;;946;;;918:51;;981:23;;978:49;;;1007:18;;:::i;1406:170::-;1503:10;1496:18;;;1476;;;1472:43;;1527:20;;1524:46;;;1550:18;;:::i;1581:266::-;3931:26481:36;;;;;;"},"deployedBytecode":{"functionDebugData":{"@ADMIN_ROLE_9962":{"entryPoint":null,"id":9962,"parameterSlots":0,"returnSlots":0},"@PUBLIC_ROLE_9970":{"entryPoint":null,"id":9970,"parameterSlots":0,"returnSlots":0},"@_canCallExtended_11649":{"entryPoint":4732,"id":11649,"parameterSlots":4,"returnSlots":2},"@_canCallSelf_11751":{"entryPoint":7270,"id":11751,"parameterSlots":3,"returnSlots":2},"@_checkAuthorized_11451":{"entryPoint":4341,"id":11451,"parameterSlots":0,"returnSlots":0},"@_checkNotScheduled_11055":{"entryPoint":7194,"id":11055,"parameterSlots":1,"returnSlots":0},"@_checkSelector_11804":{"entryPoint":4813,"id":11804,"parameterSlots":2,"returnSlots":1},"@_consumeScheduledOp_11357":{"entryPoint":4836,"id":11357,"parameterSlots":1,"returnSlots":1},"@_contextSuffixLength_3097":{"entryPoint":null,"id":3097,"parameterSlots":0,"returnSlots":1},"@_getAdminRestrictions_11604":{"entryPoint":7465,"id":11604,"parameterSlots":2,"returnSlots":3},"@_getFullAt_11914":{"entryPoint":8224,"id":11914,"parameterSlots":2,"returnSlots":3},"@_getFullAt_8522":{"entryPoint":8306,"id":8522,"parameterSlots":2,"returnSlots":3},"@_grantRole_10567":{"entryPoint":5316,"id":10567,"parameterSlots":4,"returnSlots":1},"@_hashExecutionId_11823":{"entryPoint":5090,"id":11823,"parameterSlots":2,"returnSlots":1},"@_isExecuting_11769":{"entryPoint":6722,"id":11769,"parameterSlots":2,"returnSlots":1},"@_isExpired_11787":{"entryPoint":6114,"id":11787,"parameterSlots":1,"returnSlots":1},"@_msgData_3089":{"entryPoint":null,"id":3089,"parameterSlots":0,"returnSlots":2},"@_msgSender_3080":{"entryPoint":null,"id":3080,"parameterSlots":0,"returnSlots":1},"@_revert_3067":{"entryPoint":8436,"id":3067,"parameterSlots":1,"returnSlots":0},"@_revokeRole_10615":{"entryPoint":6744,"id":10615,"parameterSlots":2,"returnSlots":1},"@_setGrantDelay_10727":{"entryPoint":6337,"id":10727,"parameterSlots":2,"returnSlots":0},"@_setRoleAdmin_10649":{"entryPoint":5951,"id":10649,"parameterSlots":2,"returnSlots":0},"@_setRoleGuardian_10683":{"entryPoint":6160,"id":10683,"parameterSlots":2,"returnSlots":0},"@_setTargetAdminDelay_10839":{"entryPoint":6992,"id":10839,"parameterSlots":2,"returnSlots":0},"@_setTargetClosed_10876":{"entryPoint":4619,"id":10876,"parameterSlots":2,"returnSlots":0},"@_setTargetFunctionRole_10788":{"entryPoint":4460,"id":10788,"parameterSlots":3,"returnSlots":0},"@canCall_10104":{"entryPoint":3338,"id":10104,"parameterSlots":3,"returnSlots":2},"@cancel_11255":{"entryPoint":3640,"id":11255,"parameterSlots":4,"returnSlots":1},"@consumeScheduledOp_11292":{"entryPoint":2826,"id":11292,"parameterSlots":3,"returnSlots":0},"@execute_11153":{"entryPoint":2000,"id":11153,"parameterSlots":3,"returnSlots":1},"@expiration_10113":{"entryPoint":null,"id":10113,"parameterSlots":0,"returnSlots":1},"@functionCallWithValue_2933":{"entryPoint":5156,"id":2933,"parameterSlots":3,"returnSlots":1},"@functionDelegateCall_2985":{"entryPoint":6608,"id":2985,"parameterSlots":2,"returnSlots":1},"@getAccess_10285":{"entryPoint":2334,"id":10285,"parameterSlots":2,"returnSlots":4},"@getFull_11934":{"entryPoint":5898,"id":11934,"parameterSlots":1,"returnSlots":3},"@getFull_8542":{"entryPoint":5931,"id":8542,"parameterSlots":1,"returnSlots":3},"@getNonce_10913":{"entryPoint":null,"id":10913,"parameterSlots":1,"returnSlots":1},"@getRoleAdmin_10184":{"entryPoint":null,"id":10184,"parameterSlots":1,"returnSlots":1},"@getRoleGrantDelay_10214":{"entryPoint":1822,"id":10214,"parameterSlots":1,"returnSlots":1},"@getRoleGuardian_10198":{"entryPoint":null,"id":10198,"parameterSlots":1,"returnSlots":1},"@getSchedule_10899":{"entryPoint":2505,"id":10899,"parameterSlots":1,"returnSlots":1},"@getTargetAdminDelay_10170":{"entryPoint":2554,"id":10170,"parameterSlots":1,"returnSlots":1},"@getTargetFunctionRole_10154":{"entryPoint":2617,"id":10154,"parameterSlots":2,"returnSlots":1},"@get_8560":{"entryPoint":4589,"id":8560,"parameterSlots":1,"returnSlots":1},"@grantRole_10383":{"entryPoint":2300,"id":10383,"parameterSlots":3,"returnSlots":0},"@hasRole_10332":{"entryPoint":3490,"id":10332,"parameterSlots":2,"returnSlots":2},"@hashOperation_11379":{"entryPoint":3053,"id":11379,"parameterSlots":4,"returnSlots":1},"@isTargetClosed_10136":{"entryPoint":2996,"id":10136,"parameterSlots":1,"returnSlots":1},"@labelRole_10361":{"entryPoint":2675,"id":10361,"parameterSlots":3,"returnSlots":0},"@max_5133":{"entryPoint":7179,"id":5133,"parameterSlots":2,"returnSlots":1},"@minSetback_10122":{"entryPoint":null,"id":10122,"parameterSlots":0,"returnSlots":1},"@multicall_3206":{"entryPoint":3109,"id":3206,"parameterSlots":2,"returnSlots":1},"@pack_8705":{"entryPoint":null,"id":8705,"parameterSlots":3,"returnSlots":1},"@renounceRole_10422":{"entryPoint":4300,"id":10422,"parameterSlots":2,"returnSlots":0},"@revokeRole_10399":{"entryPoint":3467,"id":10399,"parameterSlots":2,"returnSlots":0},"@schedule_11027":{"entryPoint":3979,"id":11027,"parameterSlots":4,"returnSlots":2},"@setGrantDelay_10470":{"entryPoint":3035,"id":10470,"parameterSlots":2,"returnSlots":0},"@setRoleAdmin_10438":{"entryPoint":2487,"id":10438,"parameterSlots":2,"returnSlots":0},"@setRoleGuardian_10454":{"entryPoint":2599,"id":10454,"parameterSlots":2,"returnSlots":0},"@setTargetAdminDelay_10804":{"entryPoint":3622,"id":10804,"parameterSlots":2,"returnSlots":0},"@setTargetClosed_10855":{"entryPoint":1880,"id":10855,"parameterSlots":2,"returnSlots":0},"@setTargetFunctionRole_10762":{"entryPoint":1740,"id":10762,"parameterSlots":4,"returnSlots":0},"@ternary_5114":{"entryPoint":null,"id":5114,"parameterSlots":3,"returnSlots":1},"@timestamp_11845":{"entryPoint":8209,"id":11845,"parameterSlots":0,"returnSlots":1},"@timestamp_8454":{"entryPoint":6977,"id":8454,"parameterSlots":0,"returnSlots":1},"@toDelay_8484":{"entryPoint":null,"id":8484,"parameterSlots":1,"returnSlots":1},"@toUint48_7278":{"entryPoint":8382,"id":7278,"parameterSlots":1,"returnSlots":1},"@toUint_8287":{"entryPoint":null,"id":8287,"parameterSlots":1,"returnSlots":1},"@unpack_12059":{"entryPoint":null,"id":12059,"parameterSlots":1,"returnSlots":3},"@unpack_8667":{"entryPoint":null,"id":8667,"parameterSlots":1,"returnSlots":3},"@updateAuthority_11397":{"entryPoint":1902,"id":11397,"parameterSlots":2,"returnSlots":0},"@verifyCallResultFromTarget_3025":{"entryPoint":7951,"id":3025,"parameterSlots":3,"returnSlots":1},"@withUpdate_8616":{"entryPoint":8043,"id":8616,"parameterSlots":3,"returnSlots":2},"abi_decode_array_bytes4_dyn_calldata":{"entryPoint":8500,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_bytes_calldata":{"entryPoint":8817,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_address":{"entryPoint":9141,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_payable":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":8773,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_bytes4":{"entryPoint":9590,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_bytes_calldata_ptr":{"entryPoint":9300,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_array$_t_bytes4_$dyn_calldata_ptrt_uint64":{"entryPoint":8591,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_bool":{"entryPoint":8714,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes4":{"entryPoint":9189,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes_calldata_ptr":{"entryPoint":8878,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_bytes_calldata_ptrt_uint48":{"entryPoint":9690,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_uint32":{"entryPoint":9662,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr":{"entryPoint":9396,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32":{"entryPoint":9118,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":9819,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4_fromMemory":{"entryPoint":9913,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint64":{"entryPoint":8689,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint64t_address":{"entryPoint":9043,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint64t_addresst_uint32":{"entryPoint":8977,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint64t_string_calldata_ptr":{"entryPoint":9233,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint64t_uint32":{"entryPoint":9260,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint64t_uint64":{"entryPoint":9069,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_uint32":{"entryPoint":8958,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint64":{"entryPoint":8564,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_bytes":{"entryPoint":10129,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string_calldata":{"entryPoint":9846,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":10152,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":10328,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_address_t_bytes4__to_t_address_t_address_t_address_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_bytes_calldata_ptr__to_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":9940,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_address_t_bytes4__to_t_address_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint64__to_t_address_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":9458,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool_t_uint32__to_t_bool_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_uint32__to_t_bytes32_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_string_calldata_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":9886,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint48__to_t_uint32_t_uint48__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint48__to_t_uint48__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint48_t_address_t_address_t_bytes_calldata_ptr__to_t_uint48_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":10203,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint48_t_uint32_t_uint32_t_uint48__to_t_uint48_t_uint32_t_uint32_t_uint48__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":10063,"id":null,"parameterSlots":2,"returnSlots":2},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":10004,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_uint48":{"entryPoint":10173,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint32":{"entryPoint":10339,"id":null,"parameterSlots":2,"returnSlots":1},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4":{"entryPoint":10272,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":9984,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":9799,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":10043,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":8480,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_bytes4":{"entryPoint":9168,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:20056:41","nodeType":"YulBlock","src":"0:20056:41","statements":[{"nativeSrc":"6:3:41","nodeType":"YulBlock","src":"6:3:41","statements":[]},{"body":{"nativeSrc":"59:86:41","nodeType":"YulBlock","src":"59:86:41","statements":[{"body":{"nativeSrc":"123:16:41","nodeType":"YulBlock","src":"123:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:41","nodeType":"YulLiteral","src":"132:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:41","nodeType":"YulLiteral","src":"135:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:41","nodeType":"YulIdentifier","src":"125:6:41"},"nativeSrc":"125:12:41","nodeType":"YulFunctionCall","src":"125:12:41"},"nativeSrc":"125:12:41","nodeType":"YulExpressionStatement","src":"125:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"82:5:41","nodeType":"YulIdentifier","src":"82:5:41"},{"arguments":[{"name":"value","nativeSrc":"93:5:41","nodeType":"YulIdentifier","src":"93:5:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"108:3:41","nodeType":"YulLiteral","src":"108:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"113:1:41","nodeType":"YulLiteral","src":"113:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"104:3:41","nodeType":"YulIdentifier","src":"104:3:41"},"nativeSrc":"104:11:41","nodeType":"YulFunctionCall","src":"104:11:41"},{"kind":"number","nativeSrc":"117:1:41","nodeType":"YulLiteral","src":"117:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"100:3:41","nodeType":"YulIdentifier","src":"100:3:41"},"nativeSrc":"100:19:41","nodeType":"YulFunctionCall","src":"100:19:41"}],"functionName":{"name":"and","nativeSrc":"89:3:41","nodeType":"YulIdentifier","src":"89:3:41"},"nativeSrc":"89:31:41","nodeType":"YulFunctionCall","src":"89:31:41"}],"functionName":{"name":"eq","nativeSrc":"79:2:41","nodeType":"YulIdentifier","src":"79:2:41"},"nativeSrc":"79:42:41","nodeType":"YulFunctionCall","src":"79:42:41"}],"functionName":{"name":"iszero","nativeSrc":"72:6:41","nodeType":"YulIdentifier","src":"72:6:41"},"nativeSrc":"72:50:41","nodeType":"YulFunctionCall","src":"72:50:41"},"nativeSrc":"69:70:41","nodeType":"YulIf","src":"69:70:41"}]},"name":"validator_revert_address","nativeSrc":"14:131:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"48:5:41","nodeType":"YulTypedName","src":"48:5:41","type":""}],"src":"14:131:41"},{"body":{"nativeSrc":"233:283:41","nodeType":"YulBlock","src":"233:283:41","statements":[{"body":{"nativeSrc":"282:16:41","nodeType":"YulBlock","src":"282:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"291:1:41","nodeType":"YulLiteral","src":"291:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"294:1:41","nodeType":"YulLiteral","src":"294:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"284:6:41","nodeType":"YulIdentifier","src":"284:6:41"},"nativeSrc":"284:12:41","nodeType":"YulFunctionCall","src":"284:12:41"},"nativeSrc":"284:12:41","nodeType":"YulExpressionStatement","src":"284:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"261:6:41","nodeType":"YulIdentifier","src":"261:6:41"},{"kind":"number","nativeSrc":"269:4:41","nodeType":"YulLiteral","src":"269:4:41","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"257:3:41","nodeType":"YulIdentifier","src":"257:3:41"},"nativeSrc":"257:17:41","nodeType":"YulFunctionCall","src":"257:17:41"},{"name":"end","nativeSrc":"276:3:41","nodeType":"YulIdentifier","src":"276:3:41"}],"functionName":{"name":"slt","nativeSrc":"253:3:41","nodeType":"YulIdentifier","src":"253:3:41"},"nativeSrc":"253:27:41","nodeType":"YulFunctionCall","src":"253:27:41"}],"functionName":{"name":"iszero","nativeSrc":"246:6:41","nodeType":"YulIdentifier","src":"246:6:41"},"nativeSrc":"246:35:41","nodeType":"YulFunctionCall","src":"246:35:41"},"nativeSrc":"243:55:41","nodeType":"YulIf","src":"243:55:41"},{"nativeSrc":"307:30:41","nodeType":"YulAssignment","src":"307:30:41","value":{"arguments":[{"name":"offset","nativeSrc":"330:6:41","nodeType":"YulIdentifier","src":"330:6:41"}],"functionName":{"name":"calldataload","nativeSrc":"317:12:41","nodeType":"YulIdentifier","src":"317:12:41"},"nativeSrc":"317:20:41","nodeType":"YulFunctionCall","src":"317:20:41"},"variableNames":[{"name":"length","nativeSrc":"307:6:41","nodeType":"YulIdentifier","src":"307:6:41"}]},{"body":{"nativeSrc":"380:16:41","nodeType":"YulBlock","src":"380:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"389:1:41","nodeType":"YulLiteral","src":"389:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"392:1:41","nodeType":"YulLiteral","src":"392:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"382:6:41","nodeType":"YulIdentifier","src":"382:6:41"},"nativeSrc":"382:12:41","nodeType":"YulFunctionCall","src":"382:12:41"},"nativeSrc":"382:12:41","nodeType":"YulExpressionStatement","src":"382:12:41"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"352:6:41","nodeType":"YulIdentifier","src":"352:6:41"},{"kind":"number","nativeSrc":"360:18:41","nodeType":"YulLiteral","src":"360:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"349:2:41","nodeType":"YulIdentifier","src":"349:2:41"},"nativeSrc":"349:30:41","nodeType":"YulFunctionCall","src":"349:30:41"},"nativeSrc":"346:50:41","nodeType":"YulIf","src":"346:50:41"},{"nativeSrc":"405:29:41","nodeType":"YulAssignment","src":"405:29:41","value":{"arguments":[{"name":"offset","nativeSrc":"421:6:41","nodeType":"YulIdentifier","src":"421:6:41"},{"kind":"number","nativeSrc":"429:4:41","nodeType":"YulLiteral","src":"429:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"417:3:41","nodeType":"YulIdentifier","src":"417:3:41"},"nativeSrc":"417:17:41","nodeType":"YulFunctionCall","src":"417:17:41"},"variableNames":[{"name":"arrayPos","nativeSrc":"405:8:41","nodeType":"YulIdentifier","src":"405:8:41"}]},{"body":{"nativeSrc":"494:16:41","nodeType":"YulBlock","src":"494:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"503:1:41","nodeType":"YulLiteral","src":"503:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"506:1:41","nodeType":"YulLiteral","src":"506:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"496:6:41","nodeType":"YulIdentifier","src":"496:6:41"},"nativeSrc":"496:12:41","nodeType":"YulFunctionCall","src":"496:12:41"},"nativeSrc":"496:12:41","nodeType":"YulExpressionStatement","src":"496:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"457:6:41","nodeType":"YulIdentifier","src":"457:6:41"},{"arguments":[{"kind":"number","nativeSrc":"469:1:41","nodeType":"YulLiteral","src":"469:1:41","type":"","value":"5"},{"name":"length","nativeSrc":"472:6:41","nodeType":"YulIdentifier","src":"472:6:41"}],"functionName":{"name":"shl","nativeSrc":"465:3:41","nodeType":"YulIdentifier","src":"465:3:41"},"nativeSrc":"465:14:41","nodeType":"YulFunctionCall","src":"465:14:41"}],"functionName":{"name":"add","nativeSrc":"453:3:41","nodeType":"YulIdentifier","src":"453:3:41"},"nativeSrc":"453:27:41","nodeType":"YulFunctionCall","src":"453:27:41"},{"kind":"number","nativeSrc":"482:4:41","nodeType":"YulLiteral","src":"482:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"449:3:41","nodeType":"YulIdentifier","src":"449:3:41"},"nativeSrc":"449:38:41","nodeType":"YulFunctionCall","src":"449:38:41"},{"name":"end","nativeSrc":"489:3:41","nodeType":"YulIdentifier","src":"489:3:41"}],"functionName":{"name":"gt","nativeSrc":"446:2:41","nodeType":"YulIdentifier","src":"446:2:41"},"nativeSrc":"446:47:41","nodeType":"YulFunctionCall","src":"446:47:41"},"nativeSrc":"443:67:41","nodeType":"YulIf","src":"443:67:41"}]},"name":"abi_decode_array_bytes4_dyn_calldata","nativeSrc":"150:366:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"196:6:41","nodeType":"YulTypedName","src":"196:6:41","type":""},{"name":"end","nativeSrc":"204:3:41","nodeType":"YulTypedName","src":"204:3:41","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"212:8:41","nodeType":"YulTypedName","src":"212:8:41","type":""},{"name":"length","nativeSrc":"222:6:41","nodeType":"YulTypedName","src":"222:6:41","type":""}],"src":"150:366:41"},{"body":{"nativeSrc":"569:123:41","nodeType":"YulBlock","src":"569:123:41","statements":[{"nativeSrc":"579:29:41","nodeType":"YulAssignment","src":"579:29:41","value":{"arguments":[{"name":"offset","nativeSrc":"601:6:41","nodeType":"YulIdentifier","src":"601:6:41"}],"functionName":{"name":"calldataload","nativeSrc":"588:12:41","nodeType":"YulIdentifier","src":"588:12:41"},"nativeSrc":"588:20:41","nodeType":"YulFunctionCall","src":"588:20:41"},"variableNames":[{"name":"value","nativeSrc":"579:5:41","nodeType":"YulIdentifier","src":"579:5:41"}]},{"body":{"nativeSrc":"670:16:41","nodeType":"YulBlock","src":"670:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"679:1:41","nodeType":"YulLiteral","src":"679:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"682:1:41","nodeType":"YulLiteral","src":"682:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"672:6:41","nodeType":"YulIdentifier","src":"672:6:41"},"nativeSrc":"672:12:41","nodeType":"YulFunctionCall","src":"672:12:41"},"nativeSrc":"672:12:41","nodeType":"YulExpressionStatement","src":"672:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"630:5:41","nodeType":"YulIdentifier","src":"630:5:41"},{"arguments":[{"name":"value","nativeSrc":"641:5:41","nodeType":"YulIdentifier","src":"641:5:41"},{"kind":"number","nativeSrc":"648:18:41","nodeType":"YulLiteral","src":"648:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"637:3:41","nodeType":"YulIdentifier","src":"637:3:41"},"nativeSrc":"637:30:41","nodeType":"YulFunctionCall","src":"637:30:41"}],"functionName":{"name":"eq","nativeSrc":"627:2:41","nodeType":"YulIdentifier","src":"627:2:41"},"nativeSrc":"627:41:41","nodeType":"YulFunctionCall","src":"627:41:41"}],"functionName":{"name":"iszero","nativeSrc":"620:6:41","nodeType":"YulIdentifier","src":"620:6:41"},"nativeSrc":"620:49:41","nodeType":"YulFunctionCall","src":"620:49:41"},"nativeSrc":"617:69:41","nodeType":"YulIf","src":"617:69:41"}]},"name":"abi_decode_uint64","nativeSrc":"521:171:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"548:6:41","nodeType":"YulTypedName","src":"548:6:41","type":""}],"returnVariables":[{"name":"value","nativeSrc":"559:5:41","nodeType":"YulTypedName","src":"559:5:41","type":""}],"src":"521:171:41"},{"body":{"nativeSrc":"834:505:41","nodeType":"YulBlock","src":"834:505:41","statements":[{"body":{"nativeSrc":"880:16:41","nodeType":"YulBlock","src":"880:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"889:1:41","nodeType":"YulLiteral","src":"889:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"892:1:41","nodeType":"YulLiteral","src":"892:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"882:6:41","nodeType":"YulIdentifier","src":"882:6:41"},"nativeSrc":"882:12:41","nodeType":"YulFunctionCall","src":"882:12:41"},"nativeSrc":"882:12:41","nodeType":"YulExpressionStatement","src":"882:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"855:7:41","nodeType":"YulIdentifier","src":"855:7:41"},{"name":"headStart","nativeSrc":"864:9:41","nodeType":"YulIdentifier","src":"864:9:41"}],"functionName":{"name":"sub","nativeSrc":"851:3:41","nodeType":"YulIdentifier","src":"851:3:41"},"nativeSrc":"851:23:41","nodeType":"YulFunctionCall","src":"851:23:41"},{"kind":"number","nativeSrc":"876:2:41","nodeType":"YulLiteral","src":"876:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"847:3:41","nodeType":"YulIdentifier","src":"847:3:41"},"nativeSrc":"847:32:41","nodeType":"YulFunctionCall","src":"847:32:41"},"nativeSrc":"844:52:41","nodeType":"YulIf","src":"844:52:41"},{"nativeSrc":"905:36:41","nodeType":"YulVariableDeclaration","src":"905:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"931:9:41","nodeType":"YulIdentifier","src":"931:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"918:12:41","nodeType":"YulIdentifier","src":"918:12:41"},"nativeSrc":"918:23:41","nodeType":"YulFunctionCall","src":"918:23:41"},"variables":[{"name":"value","nativeSrc":"909:5:41","nodeType":"YulTypedName","src":"909:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"975:5:41","nodeType":"YulIdentifier","src":"975:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"950:24:41","nodeType":"YulIdentifier","src":"950:24:41"},"nativeSrc":"950:31:41","nodeType":"YulFunctionCall","src":"950:31:41"},"nativeSrc":"950:31:41","nodeType":"YulExpressionStatement","src":"950:31:41"},{"nativeSrc":"990:15:41","nodeType":"YulAssignment","src":"990:15:41","value":{"name":"value","nativeSrc":"1000:5:41","nodeType":"YulIdentifier","src":"1000:5:41"},"variableNames":[{"name":"value0","nativeSrc":"990:6:41","nodeType":"YulIdentifier","src":"990:6:41"}]},{"nativeSrc":"1014:46:41","nodeType":"YulVariableDeclaration","src":"1014:46:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1045:9:41","nodeType":"YulIdentifier","src":"1045:9:41"},{"kind":"number","nativeSrc":"1056:2:41","nodeType":"YulLiteral","src":"1056:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1041:3:41","nodeType":"YulIdentifier","src":"1041:3:41"},"nativeSrc":"1041:18:41","nodeType":"YulFunctionCall","src":"1041:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"1028:12:41","nodeType":"YulIdentifier","src":"1028:12:41"},"nativeSrc":"1028:32:41","nodeType":"YulFunctionCall","src":"1028:32:41"},"variables":[{"name":"offset","nativeSrc":"1018:6:41","nodeType":"YulTypedName","src":"1018:6:41","type":""}]},{"body":{"nativeSrc":"1103:16:41","nodeType":"YulBlock","src":"1103:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1112:1:41","nodeType":"YulLiteral","src":"1112:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1115:1:41","nodeType":"YulLiteral","src":"1115:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1105:6:41","nodeType":"YulIdentifier","src":"1105:6:41"},"nativeSrc":"1105:12:41","nodeType":"YulFunctionCall","src":"1105:12:41"},"nativeSrc":"1105:12:41","nodeType":"YulExpressionStatement","src":"1105:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1075:6:41","nodeType":"YulIdentifier","src":"1075:6:41"},{"kind":"number","nativeSrc":"1083:18:41","nodeType":"YulLiteral","src":"1083:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1072:2:41","nodeType":"YulIdentifier","src":"1072:2:41"},"nativeSrc":"1072:30:41","nodeType":"YulFunctionCall","src":"1072:30:41"},"nativeSrc":"1069:50:41","nodeType":"YulIf","src":"1069:50:41"},{"nativeSrc":"1128:95:41","nodeType":"YulVariableDeclaration","src":"1128:95:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1195:9:41","nodeType":"YulIdentifier","src":"1195:9:41"},{"name":"offset","nativeSrc":"1206:6:41","nodeType":"YulIdentifier","src":"1206:6:41"}],"functionName":{"name":"add","nativeSrc":"1191:3:41","nodeType":"YulIdentifier","src":"1191:3:41"},"nativeSrc":"1191:22:41","nodeType":"YulFunctionCall","src":"1191:22:41"},{"name":"dataEnd","nativeSrc":"1215:7:41","nodeType":"YulIdentifier","src":"1215:7:41"}],"functionName":{"name":"abi_decode_array_bytes4_dyn_calldata","nativeSrc":"1154:36:41","nodeType":"YulIdentifier","src":"1154:36:41"},"nativeSrc":"1154:69:41","nodeType":"YulFunctionCall","src":"1154:69:41"},"variables":[{"name":"value1_1","nativeSrc":"1132:8:41","nodeType":"YulTypedName","src":"1132:8:41","type":""},{"name":"value2_1","nativeSrc":"1142:8:41","nodeType":"YulTypedName","src":"1142:8:41","type":""}]},{"nativeSrc":"1232:18:41","nodeType":"YulAssignment","src":"1232:18:41","value":{"name":"value1_1","nativeSrc":"1242:8:41","nodeType":"YulIdentifier","src":"1242:8:41"},"variableNames":[{"name":"value1","nativeSrc":"1232:6:41","nodeType":"YulIdentifier","src":"1232:6:41"}]},{"nativeSrc":"1259:18:41","nodeType":"YulAssignment","src":"1259:18:41","value":{"name":"value2_1","nativeSrc":"1269:8:41","nodeType":"YulIdentifier","src":"1269:8:41"},"variableNames":[{"name":"value2","nativeSrc":"1259:6:41","nodeType":"YulIdentifier","src":"1259:6:41"}]},{"nativeSrc":"1286:47:41","nodeType":"YulAssignment","src":"1286:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1318:9:41","nodeType":"YulIdentifier","src":"1318:9:41"},{"kind":"number","nativeSrc":"1329:2:41","nodeType":"YulLiteral","src":"1329:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1314:3:41","nodeType":"YulIdentifier","src":"1314:3:41"},"nativeSrc":"1314:18:41","nodeType":"YulFunctionCall","src":"1314:18:41"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"1296:17:41","nodeType":"YulIdentifier","src":"1296:17:41"},"nativeSrc":"1296:37:41","nodeType":"YulFunctionCall","src":"1296:37:41"},"variableNames":[{"name":"value3","nativeSrc":"1286:6:41","nodeType":"YulIdentifier","src":"1286:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_array$_t_bytes4_$dyn_calldata_ptrt_uint64","nativeSrc":"697:642:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"776:9:41","nodeType":"YulTypedName","src":"776:9:41","type":""},{"name":"dataEnd","nativeSrc":"787:7:41","nodeType":"YulTypedName","src":"787:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"799:6:41","nodeType":"YulTypedName","src":"799:6:41","type":""},{"name":"value1","nativeSrc":"807:6:41","nodeType":"YulTypedName","src":"807:6:41","type":""},{"name":"value2","nativeSrc":"815:6:41","nodeType":"YulTypedName","src":"815:6:41","type":""},{"name":"value3","nativeSrc":"823:6:41","nodeType":"YulTypedName","src":"823:6:41","type":""}],"src":"697:642:41"},{"body":{"nativeSrc":"1413:115:41","nodeType":"YulBlock","src":"1413:115:41","statements":[{"body":{"nativeSrc":"1459:16:41","nodeType":"YulBlock","src":"1459:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1468:1:41","nodeType":"YulLiteral","src":"1468:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1471:1:41","nodeType":"YulLiteral","src":"1471:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1461:6:41","nodeType":"YulIdentifier","src":"1461:6:41"},"nativeSrc":"1461:12:41","nodeType":"YulFunctionCall","src":"1461:12:41"},"nativeSrc":"1461:12:41","nodeType":"YulExpressionStatement","src":"1461:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1434:7:41","nodeType":"YulIdentifier","src":"1434:7:41"},{"name":"headStart","nativeSrc":"1443:9:41","nodeType":"YulIdentifier","src":"1443:9:41"}],"functionName":{"name":"sub","nativeSrc":"1430:3:41","nodeType":"YulIdentifier","src":"1430:3:41"},"nativeSrc":"1430:23:41","nodeType":"YulFunctionCall","src":"1430:23:41"},{"kind":"number","nativeSrc":"1455:2:41","nodeType":"YulLiteral","src":"1455:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1426:3:41","nodeType":"YulIdentifier","src":"1426:3:41"},"nativeSrc":"1426:32:41","nodeType":"YulFunctionCall","src":"1426:32:41"},"nativeSrc":"1423:52:41","nodeType":"YulIf","src":"1423:52:41"},{"nativeSrc":"1484:38:41","nodeType":"YulAssignment","src":"1484:38:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1512:9:41","nodeType":"YulIdentifier","src":"1512:9:41"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"1494:17:41","nodeType":"YulIdentifier","src":"1494:17:41"},"nativeSrc":"1494:28:41","nodeType":"YulFunctionCall","src":"1494:28:41"},"variableNames":[{"name":"value0","nativeSrc":"1484:6:41","nodeType":"YulIdentifier","src":"1484:6:41"}]}]},"name":"abi_decode_tuple_t_uint64","nativeSrc":"1344:184:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1379:9:41","nodeType":"YulTypedName","src":"1379:9:41","type":""},{"name":"dataEnd","nativeSrc":"1390:7:41","nodeType":"YulTypedName","src":"1390:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1402:6:41","nodeType":"YulTypedName","src":"1402:6:41","type":""}],"src":"1344:184:41"},{"body":{"nativeSrc":"1632:101:41","nodeType":"YulBlock","src":"1632:101:41","statements":[{"nativeSrc":"1642:26:41","nodeType":"YulAssignment","src":"1642:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1654:9:41","nodeType":"YulIdentifier","src":"1654:9:41"},{"kind":"number","nativeSrc":"1665:2:41","nodeType":"YulLiteral","src":"1665:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1650:3:41","nodeType":"YulIdentifier","src":"1650:3:41"},"nativeSrc":"1650:18:41","nodeType":"YulFunctionCall","src":"1650:18:41"},"variableNames":[{"name":"tail","nativeSrc":"1642:4:41","nodeType":"YulIdentifier","src":"1642:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1684:9:41","nodeType":"YulIdentifier","src":"1684:9:41"},{"arguments":[{"name":"value0","nativeSrc":"1699:6:41","nodeType":"YulIdentifier","src":"1699:6:41"},{"kind":"number","nativeSrc":"1707:18:41","nodeType":"YulLiteral","src":"1707:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"1695:3:41","nodeType":"YulIdentifier","src":"1695:3:41"},"nativeSrc":"1695:31:41","nodeType":"YulFunctionCall","src":"1695:31:41"}],"functionName":{"name":"mstore","nativeSrc":"1677:6:41","nodeType":"YulIdentifier","src":"1677:6:41"},"nativeSrc":"1677:50:41","nodeType":"YulFunctionCall","src":"1677:50:41"},"nativeSrc":"1677:50:41","nodeType":"YulExpressionStatement","src":"1677:50:41"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"1533:200:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1601:9:41","nodeType":"YulTypedName","src":"1601:9:41","type":""},{"name":"value0","nativeSrc":"1612:6:41","nodeType":"YulTypedName","src":"1612:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1623:4:41","nodeType":"YulTypedName","src":"1623:4:41","type":""}],"src":"1533:200:41"},{"body":{"nativeSrc":"1837:93:41","nodeType":"YulBlock","src":"1837:93:41","statements":[{"nativeSrc":"1847:26:41","nodeType":"YulAssignment","src":"1847:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1859:9:41","nodeType":"YulIdentifier","src":"1859:9:41"},{"kind":"number","nativeSrc":"1870:2:41","nodeType":"YulLiteral","src":"1870:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1855:3:41","nodeType":"YulIdentifier","src":"1855:3:41"},"nativeSrc":"1855:18:41","nodeType":"YulFunctionCall","src":"1855:18:41"},"variableNames":[{"name":"tail","nativeSrc":"1847:4:41","nodeType":"YulIdentifier","src":"1847:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1889:9:41","nodeType":"YulIdentifier","src":"1889:9:41"},{"arguments":[{"name":"value0","nativeSrc":"1904:6:41","nodeType":"YulIdentifier","src":"1904:6:41"},{"kind":"number","nativeSrc":"1912:10:41","nodeType":"YulLiteral","src":"1912:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1900:3:41","nodeType":"YulIdentifier","src":"1900:3:41"},"nativeSrc":"1900:23:41","nodeType":"YulFunctionCall","src":"1900:23:41"}],"functionName":{"name":"mstore","nativeSrc":"1882:6:41","nodeType":"YulIdentifier","src":"1882:6:41"},"nativeSrc":"1882:42:41","nodeType":"YulFunctionCall","src":"1882:42:41"},"nativeSrc":"1882:42:41","nodeType":"YulExpressionStatement","src":"1882:42:41"}]},"name":"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed","nativeSrc":"1738:192:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1806:9:41","nodeType":"YulTypedName","src":"1806:9:41","type":""},{"name":"value0","nativeSrc":"1817:6:41","nodeType":"YulTypedName","src":"1817:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1828:4:41","nodeType":"YulTypedName","src":"1828:4:41","type":""}],"src":"1738:192:41"},{"body":{"nativeSrc":"2019:332:41","nodeType":"YulBlock","src":"2019:332:41","statements":[{"body":{"nativeSrc":"2065:16:41","nodeType":"YulBlock","src":"2065:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2074:1:41","nodeType":"YulLiteral","src":"2074:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2077:1:41","nodeType":"YulLiteral","src":"2077:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2067:6:41","nodeType":"YulIdentifier","src":"2067:6:41"},"nativeSrc":"2067:12:41","nodeType":"YulFunctionCall","src":"2067:12:41"},"nativeSrc":"2067:12:41","nodeType":"YulExpressionStatement","src":"2067:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2040:7:41","nodeType":"YulIdentifier","src":"2040:7:41"},{"name":"headStart","nativeSrc":"2049:9:41","nodeType":"YulIdentifier","src":"2049:9:41"}],"functionName":{"name":"sub","nativeSrc":"2036:3:41","nodeType":"YulIdentifier","src":"2036:3:41"},"nativeSrc":"2036:23:41","nodeType":"YulFunctionCall","src":"2036:23:41"},{"kind":"number","nativeSrc":"2061:2:41","nodeType":"YulLiteral","src":"2061:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2032:3:41","nodeType":"YulIdentifier","src":"2032:3:41"},"nativeSrc":"2032:32:41","nodeType":"YulFunctionCall","src":"2032:32:41"},"nativeSrc":"2029:52:41","nodeType":"YulIf","src":"2029:52:41"},{"nativeSrc":"2090:36:41","nodeType":"YulVariableDeclaration","src":"2090:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"2116:9:41","nodeType":"YulIdentifier","src":"2116:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"2103:12:41","nodeType":"YulIdentifier","src":"2103:12:41"},"nativeSrc":"2103:23:41","nodeType":"YulFunctionCall","src":"2103:23:41"},"variables":[{"name":"value","nativeSrc":"2094:5:41","nodeType":"YulTypedName","src":"2094:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2160:5:41","nodeType":"YulIdentifier","src":"2160:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2135:24:41","nodeType":"YulIdentifier","src":"2135:24:41"},"nativeSrc":"2135:31:41","nodeType":"YulFunctionCall","src":"2135:31:41"},"nativeSrc":"2135:31:41","nodeType":"YulExpressionStatement","src":"2135:31:41"},{"nativeSrc":"2175:15:41","nodeType":"YulAssignment","src":"2175:15:41","value":{"name":"value","nativeSrc":"2185:5:41","nodeType":"YulIdentifier","src":"2185:5:41"},"variableNames":[{"name":"value0","nativeSrc":"2175:6:41","nodeType":"YulIdentifier","src":"2175:6:41"}]},{"nativeSrc":"2199:47:41","nodeType":"YulVariableDeclaration","src":"2199:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2231:9:41","nodeType":"YulIdentifier","src":"2231:9:41"},{"kind":"number","nativeSrc":"2242:2:41","nodeType":"YulLiteral","src":"2242:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2227:3:41","nodeType":"YulIdentifier","src":"2227:3:41"},"nativeSrc":"2227:18:41","nodeType":"YulFunctionCall","src":"2227:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"2214:12:41","nodeType":"YulIdentifier","src":"2214:12:41"},"nativeSrc":"2214:32:41","nodeType":"YulFunctionCall","src":"2214:32:41"},"variables":[{"name":"value_1","nativeSrc":"2203:7:41","nodeType":"YulTypedName","src":"2203:7:41","type":""}]},{"body":{"nativeSrc":"2303:16:41","nodeType":"YulBlock","src":"2303:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2312:1:41","nodeType":"YulLiteral","src":"2312:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2315:1:41","nodeType":"YulLiteral","src":"2315:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2305:6:41","nodeType":"YulIdentifier","src":"2305:6:41"},"nativeSrc":"2305:12:41","nodeType":"YulFunctionCall","src":"2305:12:41"},"nativeSrc":"2305:12:41","nodeType":"YulExpressionStatement","src":"2305:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2268:7:41","nodeType":"YulIdentifier","src":"2268:7:41"},{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2291:7:41","nodeType":"YulIdentifier","src":"2291:7:41"}],"functionName":{"name":"iszero","nativeSrc":"2284:6:41","nodeType":"YulIdentifier","src":"2284:6:41"},"nativeSrc":"2284:15:41","nodeType":"YulFunctionCall","src":"2284:15:41"}],"functionName":{"name":"iszero","nativeSrc":"2277:6:41","nodeType":"YulIdentifier","src":"2277:6:41"},"nativeSrc":"2277:23:41","nodeType":"YulFunctionCall","src":"2277:23:41"}],"functionName":{"name":"eq","nativeSrc":"2265:2:41","nodeType":"YulIdentifier","src":"2265:2:41"},"nativeSrc":"2265:36:41","nodeType":"YulFunctionCall","src":"2265:36:41"}],"functionName":{"name":"iszero","nativeSrc":"2258:6:41","nodeType":"YulIdentifier","src":"2258:6:41"},"nativeSrc":"2258:44:41","nodeType":"YulFunctionCall","src":"2258:44:41"},"nativeSrc":"2255:64:41","nodeType":"YulIf","src":"2255:64:41"},{"nativeSrc":"2328:17:41","nodeType":"YulAssignment","src":"2328:17:41","value":{"name":"value_1","nativeSrc":"2338:7:41","nodeType":"YulIdentifier","src":"2338:7:41"},"variableNames":[{"name":"value1","nativeSrc":"2328:6:41","nodeType":"YulIdentifier","src":"2328:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_bool","nativeSrc":"1935:416:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1977:9:41","nodeType":"YulTypedName","src":"1977:9:41","type":""},{"name":"dataEnd","nativeSrc":"1988:7:41","nodeType":"YulTypedName","src":"1988:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2000:6:41","nodeType":"YulTypedName","src":"2000:6:41","type":""},{"name":"value1","nativeSrc":"2008:6:41","nodeType":"YulTypedName","src":"2008:6:41","type":""}],"src":"1935:416:41"},{"body":{"nativeSrc":"2443:301:41","nodeType":"YulBlock","src":"2443:301:41","statements":[{"body":{"nativeSrc":"2489:16:41","nodeType":"YulBlock","src":"2489:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2498:1:41","nodeType":"YulLiteral","src":"2498:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2501:1:41","nodeType":"YulLiteral","src":"2501:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2491:6:41","nodeType":"YulIdentifier","src":"2491:6:41"},"nativeSrc":"2491:12:41","nodeType":"YulFunctionCall","src":"2491:12:41"},"nativeSrc":"2491:12:41","nodeType":"YulExpressionStatement","src":"2491:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2464:7:41","nodeType":"YulIdentifier","src":"2464:7:41"},{"name":"headStart","nativeSrc":"2473:9:41","nodeType":"YulIdentifier","src":"2473:9:41"}],"functionName":{"name":"sub","nativeSrc":"2460:3:41","nodeType":"YulIdentifier","src":"2460:3:41"},"nativeSrc":"2460:23:41","nodeType":"YulFunctionCall","src":"2460:23:41"},{"kind":"number","nativeSrc":"2485:2:41","nodeType":"YulLiteral","src":"2485:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2456:3:41","nodeType":"YulIdentifier","src":"2456:3:41"},"nativeSrc":"2456:32:41","nodeType":"YulFunctionCall","src":"2456:32:41"},"nativeSrc":"2453:52:41","nodeType":"YulIf","src":"2453:52:41"},{"nativeSrc":"2514:36:41","nodeType":"YulVariableDeclaration","src":"2514:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"2540:9:41","nodeType":"YulIdentifier","src":"2540:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"2527:12:41","nodeType":"YulIdentifier","src":"2527:12:41"},"nativeSrc":"2527:23:41","nodeType":"YulFunctionCall","src":"2527:23:41"},"variables":[{"name":"value","nativeSrc":"2518:5:41","nodeType":"YulTypedName","src":"2518:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2584:5:41","nodeType":"YulIdentifier","src":"2584:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2559:24:41","nodeType":"YulIdentifier","src":"2559:24:41"},"nativeSrc":"2559:31:41","nodeType":"YulFunctionCall","src":"2559:31:41"},"nativeSrc":"2559:31:41","nodeType":"YulExpressionStatement","src":"2559:31:41"},{"nativeSrc":"2599:15:41","nodeType":"YulAssignment","src":"2599:15:41","value":{"name":"value","nativeSrc":"2609:5:41","nodeType":"YulIdentifier","src":"2609:5:41"},"variableNames":[{"name":"value0","nativeSrc":"2599:6:41","nodeType":"YulIdentifier","src":"2599:6:41"}]},{"nativeSrc":"2623:47:41","nodeType":"YulVariableDeclaration","src":"2623:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2655:9:41","nodeType":"YulIdentifier","src":"2655:9:41"},{"kind":"number","nativeSrc":"2666:2:41","nodeType":"YulLiteral","src":"2666:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2651:3:41","nodeType":"YulIdentifier","src":"2651:3:41"},"nativeSrc":"2651:18:41","nodeType":"YulFunctionCall","src":"2651:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"2638:12:41","nodeType":"YulIdentifier","src":"2638:12:41"},"nativeSrc":"2638:32:41","nodeType":"YulFunctionCall","src":"2638:32:41"},"variables":[{"name":"value_1","nativeSrc":"2627:7:41","nodeType":"YulTypedName","src":"2627:7:41","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"2704:7:41","nodeType":"YulIdentifier","src":"2704:7:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2679:24:41","nodeType":"YulIdentifier","src":"2679:24:41"},"nativeSrc":"2679:33:41","nodeType":"YulFunctionCall","src":"2679:33:41"},"nativeSrc":"2679:33:41","nodeType":"YulExpressionStatement","src":"2679:33:41"},{"nativeSrc":"2721:17:41","nodeType":"YulAssignment","src":"2721:17:41","value":{"name":"value_1","nativeSrc":"2731:7:41","nodeType":"YulIdentifier","src":"2731:7:41"},"variableNames":[{"name":"value1","nativeSrc":"2721:6:41","nodeType":"YulIdentifier","src":"2721:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"2356:388:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2401:9:41","nodeType":"YulTypedName","src":"2401:9:41","type":""},{"name":"dataEnd","nativeSrc":"2412:7:41","nodeType":"YulTypedName","src":"2412:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2424:6:41","nodeType":"YulTypedName","src":"2424:6:41","type":""},{"name":"value1","nativeSrc":"2432:6:41","nodeType":"YulTypedName","src":"2432:6:41","type":""}],"src":"2356:388:41"},{"body":{"nativeSrc":"2821:275:41","nodeType":"YulBlock","src":"2821:275:41","statements":[{"body":{"nativeSrc":"2870:16:41","nodeType":"YulBlock","src":"2870:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2879:1:41","nodeType":"YulLiteral","src":"2879:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2882:1:41","nodeType":"YulLiteral","src":"2882:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2872:6:41","nodeType":"YulIdentifier","src":"2872:6:41"},"nativeSrc":"2872:12:41","nodeType":"YulFunctionCall","src":"2872:12:41"},"nativeSrc":"2872:12:41","nodeType":"YulExpressionStatement","src":"2872:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2849:6:41","nodeType":"YulIdentifier","src":"2849:6:41"},{"kind":"number","nativeSrc":"2857:4:41","nodeType":"YulLiteral","src":"2857:4:41","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2845:3:41","nodeType":"YulIdentifier","src":"2845:3:41"},"nativeSrc":"2845:17:41","nodeType":"YulFunctionCall","src":"2845:17:41"},{"name":"end","nativeSrc":"2864:3:41","nodeType":"YulIdentifier","src":"2864:3:41"}],"functionName":{"name":"slt","nativeSrc":"2841:3:41","nodeType":"YulIdentifier","src":"2841:3:41"},"nativeSrc":"2841:27:41","nodeType":"YulFunctionCall","src":"2841:27:41"}],"functionName":{"name":"iszero","nativeSrc":"2834:6:41","nodeType":"YulIdentifier","src":"2834:6:41"},"nativeSrc":"2834:35:41","nodeType":"YulFunctionCall","src":"2834:35:41"},"nativeSrc":"2831:55:41","nodeType":"YulIf","src":"2831:55:41"},{"nativeSrc":"2895:30:41","nodeType":"YulAssignment","src":"2895:30:41","value":{"arguments":[{"name":"offset","nativeSrc":"2918:6:41","nodeType":"YulIdentifier","src":"2918:6:41"}],"functionName":{"name":"calldataload","nativeSrc":"2905:12:41","nodeType":"YulIdentifier","src":"2905:12:41"},"nativeSrc":"2905:20:41","nodeType":"YulFunctionCall","src":"2905:20:41"},"variableNames":[{"name":"length","nativeSrc":"2895:6:41","nodeType":"YulIdentifier","src":"2895:6:41"}]},{"body":{"nativeSrc":"2968:16:41","nodeType":"YulBlock","src":"2968:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2977:1:41","nodeType":"YulLiteral","src":"2977:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2980:1:41","nodeType":"YulLiteral","src":"2980:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2970:6:41","nodeType":"YulIdentifier","src":"2970:6:41"},"nativeSrc":"2970:12:41","nodeType":"YulFunctionCall","src":"2970:12:41"},"nativeSrc":"2970:12:41","nodeType":"YulExpressionStatement","src":"2970:12:41"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"2940:6:41","nodeType":"YulIdentifier","src":"2940:6:41"},{"kind":"number","nativeSrc":"2948:18:41","nodeType":"YulLiteral","src":"2948:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2937:2:41","nodeType":"YulIdentifier","src":"2937:2:41"},"nativeSrc":"2937:30:41","nodeType":"YulFunctionCall","src":"2937:30:41"},"nativeSrc":"2934:50:41","nodeType":"YulIf","src":"2934:50:41"},{"nativeSrc":"2993:29:41","nodeType":"YulAssignment","src":"2993:29:41","value":{"arguments":[{"name":"offset","nativeSrc":"3009:6:41","nodeType":"YulIdentifier","src":"3009:6:41"},{"kind":"number","nativeSrc":"3017:4:41","nodeType":"YulLiteral","src":"3017:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3005:3:41","nodeType":"YulIdentifier","src":"3005:3:41"},"nativeSrc":"3005:17:41","nodeType":"YulFunctionCall","src":"3005:17:41"},"variableNames":[{"name":"arrayPos","nativeSrc":"2993:8:41","nodeType":"YulIdentifier","src":"2993:8:41"}]},{"body":{"nativeSrc":"3074:16:41","nodeType":"YulBlock","src":"3074:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3083:1:41","nodeType":"YulLiteral","src":"3083:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3086:1:41","nodeType":"YulLiteral","src":"3086:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3076:6:41","nodeType":"YulIdentifier","src":"3076:6:41"},"nativeSrc":"3076:12:41","nodeType":"YulFunctionCall","src":"3076:12:41"},"nativeSrc":"3076:12:41","nodeType":"YulExpressionStatement","src":"3076:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"3045:6:41","nodeType":"YulIdentifier","src":"3045:6:41"},{"name":"length","nativeSrc":"3053:6:41","nodeType":"YulIdentifier","src":"3053:6:41"}],"functionName":{"name":"add","nativeSrc":"3041:3:41","nodeType":"YulIdentifier","src":"3041:3:41"},"nativeSrc":"3041:19:41","nodeType":"YulFunctionCall","src":"3041:19:41"},{"kind":"number","nativeSrc":"3062:4:41","nodeType":"YulLiteral","src":"3062:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3037:3:41","nodeType":"YulIdentifier","src":"3037:3:41"},"nativeSrc":"3037:30:41","nodeType":"YulFunctionCall","src":"3037:30:41"},{"name":"end","nativeSrc":"3069:3:41","nodeType":"YulIdentifier","src":"3069:3:41"}],"functionName":{"name":"gt","nativeSrc":"3034:2:41","nodeType":"YulIdentifier","src":"3034:2:41"},"nativeSrc":"3034:39:41","nodeType":"YulFunctionCall","src":"3034:39:41"},"nativeSrc":"3031:59:41","nodeType":"YulIf","src":"3031:59:41"}]},"name":"abi_decode_bytes_calldata","nativeSrc":"2749:347:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"2784:6:41","nodeType":"YulTypedName","src":"2784:6:41","type":""},{"name":"end","nativeSrc":"2792:3:41","nodeType":"YulTypedName","src":"2792:3:41","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"2800:8:41","nodeType":"YulTypedName","src":"2800:8:41","type":""},{"name":"length","nativeSrc":"2810:6:41","nodeType":"YulTypedName","src":"2810:6:41","type":""}],"src":"2749:347:41"},{"body":{"nativeSrc":"3207:438:41","nodeType":"YulBlock","src":"3207:438:41","statements":[{"body":{"nativeSrc":"3253:16:41","nodeType":"YulBlock","src":"3253:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3262:1:41","nodeType":"YulLiteral","src":"3262:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3265:1:41","nodeType":"YulLiteral","src":"3265:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3255:6:41","nodeType":"YulIdentifier","src":"3255:6:41"},"nativeSrc":"3255:12:41","nodeType":"YulFunctionCall","src":"3255:12:41"},"nativeSrc":"3255:12:41","nodeType":"YulExpressionStatement","src":"3255:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3228:7:41","nodeType":"YulIdentifier","src":"3228:7:41"},{"name":"headStart","nativeSrc":"3237:9:41","nodeType":"YulIdentifier","src":"3237:9:41"}],"functionName":{"name":"sub","nativeSrc":"3224:3:41","nodeType":"YulIdentifier","src":"3224:3:41"},"nativeSrc":"3224:23:41","nodeType":"YulFunctionCall","src":"3224:23:41"},{"kind":"number","nativeSrc":"3249:2:41","nodeType":"YulLiteral","src":"3249:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3220:3:41","nodeType":"YulIdentifier","src":"3220:3:41"},"nativeSrc":"3220:32:41","nodeType":"YulFunctionCall","src":"3220:32:41"},"nativeSrc":"3217:52:41","nodeType":"YulIf","src":"3217:52:41"},{"nativeSrc":"3278:36:41","nodeType":"YulVariableDeclaration","src":"3278:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"3304:9:41","nodeType":"YulIdentifier","src":"3304:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"3291:12:41","nodeType":"YulIdentifier","src":"3291:12:41"},"nativeSrc":"3291:23:41","nodeType":"YulFunctionCall","src":"3291:23:41"},"variables":[{"name":"value","nativeSrc":"3282:5:41","nodeType":"YulTypedName","src":"3282:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3348:5:41","nodeType":"YulIdentifier","src":"3348:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3323:24:41","nodeType":"YulIdentifier","src":"3323:24:41"},"nativeSrc":"3323:31:41","nodeType":"YulFunctionCall","src":"3323:31:41"},"nativeSrc":"3323:31:41","nodeType":"YulExpressionStatement","src":"3323:31:41"},{"nativeSrc":"3363:15:41","nodeType":"YulAssignment","src":"3363:15:41","value":{"name":"value","nativeSrc":"3373:5:41","nodeType":"YulIdentifier","src":"3373:5:41"},"variableNames":[{"name":"value0","nativeSrc":"3363:6:41","nodeType":"YulIdentifier","src":"3363:6:41"}]},{"nativeSrc":"3387:46:41","nodeType":"YulVariableDeclaration","src":"3387:46:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3418:9:41","nodeType":"YulIdentifier","src":"3418:9:41"},{"kind":"number","nativeSrc":"3429:2:41","nodeType":"YulLiteral","src":"3429:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3414:3:41","nodeType":"YulIdentifier","src":"3414:3:41"},"nativeSrc":"3414:18:41","nodeType":"YulFunctionCall","src":"3414:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"3401:12:41","nodeType":"YulIdentifier","src":"3401:12:41"},"nativeSrc":"3401:32:41","nodeType":"YulFunctionCall","src":"3401:32:41"},"variables":[{"name":"offset","nativeSrc":"3391:6:41","nodeType":"YulTypedName","src":"3391:6:41","type":""}]},{"body":{"nativeSrc":"3476:16:41","nodeType":"YulBlock","src":"3476:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3485:1:41","nodeType":"YulLiteral","src":"3485:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3488:1:41","nodeType":"YulLiteral","src":"3488:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3478:6:41","nodeType":"YulIdentifier","src":"3478:6:41"},"nativeSrc":"3478:12:41","nodeType":"YulFunctionCall","src":"3478:12:41"},"nativeSrc":"3478:12:41","nodeType":"YulExpressionStatement","src":"3478:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"3448:6:41","nodeType":"YulIdentifier","src":"3448:6:41"},{"kind":"number","nativeSrc":"3456:18:41","nodeType":"YulLiteral","src":"3456:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3445:2:41","nodeType":"YulIdentifier","src":"3445:2:41"},"nativeSrc":"3445:30:41","nodeType":"YulFunctionCall","src":"3445:30:41"},"nativeSrc":"3442:50:41","nodeType":"YulIf","src":"3442:50:41"},{"nativeSrc":"3501:84:41","nodeType":"YulVariableDeclaration","src":"3501:84:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3557:9:41","nodeType":"YulIdentifier","src":"3557:9:41"},{"name":"offset","nativeSrc":"3568:6:41","nodeType":"YulIdentifier","src":"3568:6:41"}],"functionName":{"name":"add","nativeSrc":"3553:3:41","nodeType":"YulIdentifier","src":"3553:3:41"},"nativeSrc":"3553:22:41","nodeType":"YulFunctionCall","src":"3553:22:41"},{"name":"dataEnd","nativeSrc":"3577:7:41","nodeType":"YulIdentifier","src":"3577:7:41"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"3527:25:41","nodeType":"YulIdentifier","src":"3527:25:41"},"nativeSrc":"3527:58:41","nodeType":"YulFunctionCall","src":"3527:58:41"},"variables":[{"name":"value1_1","nativeSrc":"3505:8:41","nodeType":"YulTypedName","src":"3505:8:41","type":""},{"name":"value2_1","nativeSrc":"3515:8:41","nodeType":"YulTypedName","src":"3515:8:41","type":""}]},{"nativeSrc":"3594:18:41","nodeType":"YulAssignment","src":"3594:18:41","value":{"name":"value1_1","nativeSrc":"3604:8:41","nodeType":"YulIdentifier","src":"3604:8:41"},"variableNames":[{"name":"value1","nativeSrc":"3594:6:41","nodeType":"YulIdentifier","src":"3594:6:41"}]},{"nativeSrc":"3621:18:41","nodeType":"YulAssignment","src":"3621:18:41","value":{"name":"value2_1","nativeSrc":"3631:8:41","nodeType":"YulIdentifier","src":"3631:8:41"},"variableNames":[{"name":"value2","nativeSrc":"3621:6:41","nodeType":"YulIdentifier","src":"3621:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptr","nativeSrc":"3101:544:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3157:9:41","nodeType":"YulTypedName","src":"3157:9:41","type":""},{"name":"dataEnd","nativeSrc":"3168:7:41","nodeType":"YulTypedName","src":"3168:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3180:6:41","nodeType":"YulTypedName","src":"3180:6:41","type":""},{"name":"value1","nativeSrc":"3188:6:41","nodeType":"YulTypedName","src":"3188:6:41","type":""},{"name":"value2","nativeSrc":"3196:6:41","nodeType":"YulTypedName","src":"3196:6:41","type":""}],"src":"3101:544:41"},{"body":{"nativeSrc":"3698:115:41","nodeType":"YulBlock","src":"3698:115:41","statements":[{"nativeSrc":"3708:29:41","nodeType":"YulAssignment","src":"3708:29:41","value":{"arguments":[{"name":"offset","nativeSrc":"3730:6:41","nodeType":"YulIdentifier","src":"3730:6:41"}],"functionName":{"name":"calldataload","nativeSrc":"3717:12:41","nodeType":"YulIdentifier","src":"3717:12:41"},"nativeSrc":"3717:20:41","nodeType":"YulFunctionCall","src":"3717:20:41"},"variableNames":[{"name":"value","nativeSrc":"3708:5:41","nodeType":"YulIdentifier","src":"3708:5:41"}]},{"body":{"nativeSrc":"3791:16:41","nodeType":"YulBlock","src":"3791:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3800:1:41","nodeType":"YulLiteral","src":"3800:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3803:1:41","nodeType":"YulLiteral","src":"3803:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3793:6:41","nodeType":"YulIdentifier","src":"3793:6:41"},"nativeSrc":"3793:12:41","nodeType":"YulFunctionCall","src":"3793:12:41"},"nativeSrc":"3793:12:41","nodeType":"YulExpressionStatement","src":"3793:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3759:5:41","nodeType":"YulIdentifier","src":"3759:5:41"},{"arguments":[{"name":"value","nativeSrc":"3770:5:41","nodeType":"YulIdentifier","src":"3770:5:41"},{"kind":"number","nativeSrc":"3777:10:41","nodeType":"YulLiteral","src":"3777:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"3766:3:41","nodeType":"YulIdentifier","src":"3766:3:41"},"nativeSrc":"3766:22:41","nodeType":"YulFunctionCall","src":"3766:22:41"}],"functionName":{"name":"eq","nativeSrc":"3756:2:41","nodeType":"YulIdentifier","src":"3756:2:41"},"nativeSrc":"3756:33:41","nodeType":"YulFunctionCall","src":"3756:33:41"}],"functionName":{"name":"iszero","nativeSrc":"3749:6:41","nodeType":"YulIdentifier","src":"3749:6:41"},"nativeSrc":"3749:41:41","nodeType":"YulFunctionCall","src":"3749:41:41"},"nativeSrc":"3746:61:41","nodeType":"YulIf","src":"3746:61:41"}]},"name":"abi_decode_uint32","nativeSrc":"3650:163:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"3677:6:41","nodeType":"YulTypedName","src":"3677:6:41","type":""}],"returnVariables":[{"name":"value","nativeSrc":"3688:5:41","nodeType":"YulTypedName","src":"3688:5:41","type":""}],"src":"3650:163:41"},{"body":{"nativeSrc":"3920:289:41","nodeType":"YulBlock","src":"3920:289:41","statements":[{"body":{"nativeSrc":"3966:16:41","nodeType":"YulBlock","src":"3966:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3975:1:41","nodeType":"YulLiteral","src":"3975:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3978:1:41","nodeType":"YulLiteral","src":"3978:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3968:6:41","nodeType":"YulIdentifier","src":"3968:6:41"},"nativeSrc":"3968:12:41","nodeType":"YulFunctionCall","src":"3968:12:41"},"nativeSrc":"3968:12:41","nodeType":"YulExpressionStatement","src":"3968:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3941:7:41","nodeType":"YulIdentifier","src":"3941:7:41"},{"name":"headStart","nativeSrc":"3950:9:41","nodeType":"YulIdentifier","src":"3950:9:41"}],"functionName":{"name":"sub","nativeSrc":"3937:3:41","nodeType":"YulIdentifier","src":"3937:3:41"},"nativeSrc":"3937:23:41","nodeType":"YulFunctionCall","src":"3937:23:41"},{"kind":"number","nativeSrc":"3962:2:41","nodeType":"YulLiteral","src":"3962:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"3933:3:41","nodeType":"YulIdentifier","src":"3933:3:41"},"nativeSrc":"3933:32:41","nodeType":"YulFunctionCall","src":"3933:32:41"},"nativeSrc":"3930:52:41","nodeType":"YulIf","src":"3930:52:41"},{"nativeSrc":"3991:38:41","nodeType":"YulAssignment","src":"3991:38:41","value":{"arguments":[{"name":"headStart","nativeSrc":"4019:9:41","nodeType":"YulIdentifier","src":"4019:9:41"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"4001:17:41","nodeType":"YulIdentifier","src":"4001:17:41"},"nativeSrc":"4001:28:41","nodeType":"YulFunctionCall","src":"4001:28:41"},"variableNames":[{"name":"value0","nativeSrc":"3991:6:41","nodeType":"YulIdentifier","src":"3991:6:41"}]},{"nativeSrc":"4038:45:41","nodeType":"YulVariableDeclaration","src":"4038:45:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4068:9:41","nodeType":"YulIdentifier","src":"4068:9:41"},{"kind":"number","nativeSrc":"4079:2:41","nodeType":"YulLiteral","src":"4079:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4064:3:41","nodeType":"YulIdentifier","src":"4064:3:41"},"nativeSrc":"4064:18:41","nodeType":"YulFunctionCall","src":"4064:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"4051:12:41","nodeType":"YulIdentifier","src":"4051:12:41"},"nativeSrc":"4051:32:41","nodeType":"YulFunctionCall","src":"4051:32:41"},"variables":[{"name":"value","nativeSrc":"4042:5:41","nodeType":"YulTypedName","src":"4042:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4117:5:41","nodeType":"YulIdentifier","src":"4117:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4092:24:41","nodeType":"YulIdentifier","src":"4092:24:41"},"nativeSrc":"4092:31:41","nodeType":"YulFunctionCall","src":"4092:31:41"},"nativeSrc":"4092:31:41","nodeType":"YulExpressionStatement","src":"4092:31:41"},{"nativeSrc":"4132:15:41","nodeType":"YulAssignment","src":"4132:15:41","value":{"name":"value","nativeSrc":"4142:5:41","nodeType":"YulIdentifier","src":"4142:5:41"},"variableNames":[{"name":"value1","nativeSrc":"4132:6:41","nodeType":"YulIdentifier","src":"4132:6:41"}]},{"nativeSrc":"4156:47:41","nodeType":"YulAssignment","src":"4156:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4188:9:41","nodeType":"YulIdentifier","src":"4188:9:41"},{"kind":"number","nativeSrc":"4199:2:41","nodeType":"YulLiteral","src":"4199:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4184:3:41","nodeType":"YulIdentifier","src":"4184:3:41"},"nativeSrc":"4184:18:41","nodeType":"YulFunctionCall","src":"4184:18:41"}],"functionName":{"name":"abi_decode_uint32","nativeSrc":"4166:17:41","nodeType":"YulIdentifier","src":"4166:17:41"},"nativeSrc":"4166:37:41","nodeType":"YulFunctionCall","src":"4166:37:41"},"variableNames":[{"name":"value2","nativeSrc":"4156:6:41","nodeType":"YulIdentifier","src":"4156:6:41"}]}]},"name":"abi_decode_tuple_t_uint64t_addresst_uint32","nativeSrc":"3818:391:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3870:9:41","nodeType":"YulTypedName","src":"3870:9:41","type":""},{"name":"dataEnd","nativeSrc":"3881:7:41","nodeType":"YulTypedName","src":"3881:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3893:6:41","nodeType":"YulTypedName","src":"3893:6:41","type":""},{"name":"value1","nativeSrc":"3901:6:41","nodeType":"YulTypedName","src":"3901:6:41","type":""},{"name":"value2","nativeSrc":"3909:6:41","nodeType":"YulTypedName","src":"3909:6:41","type":""}],"src":"3818:391:41"},{"body":{"nativeSrc":"4300:233:41","nodeType":"YulBlock","src":"4300:233:41","statements":[{"body":{"nativeSrc":"4346:16:41","nodeType":"YulBlock","src":"4346:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4355:1:41","nodeType":"YulLiteral","src":"4355:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"4358:1:41","nodeType":"YulLiteral","src":"4358:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4348:6:41","nodeType":"YulIdentifier","src":"4348:6:41"},"nativeSrc":"4348:12:41","nodeType":"YulFunctionCall","src":"4348:12:41"},"nativeSrc":"4348:12:41","nodeType":"YulExpressionStatement","src":"4348:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4321:7:41","nodeType":"YulIdentifier","src":"4321:7:41"},{"name":"headStart","nativeSrc":"4330:9:41","nodeType":"YulIdentifier","src":"4330:9:41"}],"functionName":{"name":"sub","nativeSrc":"4317:3:41","nodeType":"YulIdentifier","src":"4317:3:41"},"nativeSrc":"4317:23:41","nodeType":"YulFunctionCall","src":"4317:23:41"},{"kind":"number","nativeSrc":"4342:2:41","nodeType":"YulLiteral","src":"4342:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4313:3:41","nodeType":"YulIdentifier","src":"4313:3:41"},"nativeSrc":"4313:32:41","nodeType":"YulFunctionCall","src":"4313:32:41"},"nativeSrc":"4310:52:41","nodeType":"YulIf","src":"4310:52:41"},{"nativeSrc":"4371:38:41","nodeType":"YulAssignment","src":"4371:38:41","value":{"arguments":[{"name":"headStart","nativeSrc":"4399:9:41","nodeType":"YulIdentifier","src":"4399:9:41"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"4381:17:41","nodeType":"YulIdentifier","src":"4381:17:41"},"nativeSrc":"4381:28:41","nodeType":"YulFunctionCall","src":"4381:28:41"},"variableNames":[{"name":"value0","nativeSrc":"4371:6:41","nodeType":"YulIdentifier","src":"4371:6:41"}]},{"nativeSrc":"4418:45:41","nodeType":"YulVariableDeclaration","src":"4418:45:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4448:9:41","nodeType":"YulIdentifier","src":"4448:9:41"},{"kind":"number","nativeSrc":"4459:2:41","nodeType":"YulLiteral","src":"4459:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4444:3:41","nodeType":"YulIdentifier","src":"4444:3:41"},"nativeSrc":"4444:18:41","nodeType":"YulFunctionCall","src":"4444:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"4431:12:41","nodeType":"YulIdentifier","src":"4431:12:41"},"nativeSrc":"4431:32:41","nodeType":"YulFunctionCall","src":"4431:32:41"},"variables":[{"name":"value","nativeSrc":"4422:5:41","nodeType":"YulTypedName","src":"4422:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4497:5:41","nodeType":"YulIdentifier","src":"4497:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4472:24:41","nodeType":"YulIdentifier","src":"4472:24:41"},"nativeSrc":"4472:31:41","nodeType":"YulFunctionCall","src":"4472:31:41"},"nativeSrc":"4472:31:41","nodeType":"YulExpressionStatement","src":"4472:31:41"},{"nativeSrc":"4512:15:41","nodeType":"YulAssignment","src":"4512:15:41","value":{"name":"value","nativeSrc":"4522:5:41","nodeType":"YulIdentifier","src":"4522:5:41"},"variableNames":[{"name":"value1","nativeSrc":"4512:6:41","nodeType":"YulIdentifier","src":"4512:6:41"}]}]},"name":"abi_decode_tuple_t_uint64t_address","nativeSrc":"4214:319:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4258:9:41","nodeType":"YulTypedName","src":"4258:9:41","type":""},{"name":"dataEnd","nativeSrc":"4269:7:41","nodeType":"YulTypedName","src":"4269:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4281:6:41","nodeType":"YulTypedName","src":"4281:6:41","type":""},{"name":"value1","nativeSrc":"4289:6:41","nodeType":"YulTypedName","src":"4289:6:41","type":""}],"src":"4214:319:41"},{"body":{"nativeSrc":"4715:282:41","nodeType":"YulBlock","src":"4715:282:41","statements":[{"nativeSrc":"4725:27:41","nodeType":"YulAssignment","src":"4725:27:41","value":{"arguments":[{"name":"headStart","nativeSrc":"4737:9:41","nodeType":"YulIdentifier","src":"4737:9:41"},{"kind":"number","nativeSrc":"4748:3:41","nodeType":"YulLiteral","src":"4748:3:41","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4733:3:41","nodeType":"YulIdentifier","src":"4733:3:41"},"nativeSrc":"4733:19:41","nodeType":"YulFunctionCall","src":"4733:19:41"},"variableNames":[{"name":"tail","nativeSrc":"4725:4:41","nodeType":"YulIdentifier","src":"4725:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4768:9:41","nodeType":"YulIdentifier","src":"4768:9:41"},{"arguments":[{"name":"value0","nativeSrc":"4783:6:41","nodeType":"YulIdentifier","src":"4783:6:41"},{"kind":"number","nativeSrc":"4791:14:41","nodeType":"YulLiteral","src":"4791:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"4779:3:41","nodeType":"YulIdentifier","src":"4779:3:41"},"nativeSrc":"4779:27:41","nodeType":"YulFunctionCall","src":"4779:27:41"}],"functionName":{"name":"mstore","nativeSrc":"4761:6:41","nodeType":"YulIdentifier","src":"4761:6:41"},"nativeSrc":"4761:46:41","nodeType":"YulFunctionCall","src":"4761:46:41"},"nativeSrc":"4761:46:41","nodeType":"YulExpressionStatement","src":"4761:46:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4827:9:41","nodeType":"YulIdentifier","src":"4827:9:41"},{"kind":"number","nativeSrc":"4838:2:41","nodeType":"YulLiteral","src":"4838:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4823:3:41","nodeType":"YulIdentifier","src":"4823:3:41"},"nativeSrc":"4823:18:41","nodeType":"YulFunctionCall","src":"4823:18:41"},{"arguments":[{"name":"value1","nativeSrc":"4847:6:41","nodeType":"YulIdentifier","src":"4847:6:41"},{"kind":"number","nativeSrc":"4855:10:41","nodeType":"YulLiteral","src":"4855:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"4843:3:41","nodeType":"YulIdentifier","src":"4843:3:41"},"nativeSrc":"4843:23:41","nodeType":"YulFunctionCall","src":"4843:23:41"}],"functionName":{"name":"mstore","nativeSrc":"4816:6:41","nodeType":"YulIdentifier","src":"4816:6:41"},"nativeSrc":"4816:51:41","nodeType":"YulFunctionCall","src":"4816:51:41"},"nativeSrc":"4816:51:41","nodeType":"YulExpressionStatement","src":"4816:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4887:9:41","nodeType":"YulIdentifier","src":"4887:9:41"},{"kind":"number","nativeSrc":"4898:2:41","nodeType":"YulLiteral","src":"4898:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4883:3:41","nodeType":"YulIdentifier","src":"4883:3:41"},"nativeSrc":"4883:18:41","nodeType":"YulFunctionCall","src":"4883:18:41"},{"arguments":[{"name":"value2","nativeSrc":"4907:6:41","nodeType":"YulIdentifier","src":"4907:6:41"},{"kind":"number","nativeSrc":"4915:10:41","nodeType":"YulLiteral","src":"4915:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"4903:3:41","nodeType":"YulIdentifier","src":"4903:3:41"},"nativeSrc":"4903:23:41","nodeType":"YulFunctionCall","src":"4903:23:41"}],"functionName":{"name":"mstore","nativeSrc":"4876:6:41","nodeType":"YulIdentifier","src":"4876:6:41"},"nativeSrc":"4876:51:41","nodeType":"YulFunctionCall","src":"4876:51:41"},"nativeSrc":"4876:51:41","nodeType":"YulExpressionStatement","src":"4876:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4947:9:41","nodeType":"YulIdentifier","src":"4947:9:41"},{"kind":"number","nativeSrc":"4958:2:41","nodeType":"YulLiteral","src":"4958:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4943:3:41","nodeType":"YulIdentifier","src":"4943:3:41"},"nativeSrc":"4943:18:41","nodeType":"YulFunctionCall","src":"4943:18:41"},{"arguments":[{"name":"value3","nativeSrc":"4967:6:41","nodeType":"YulIdentifier","src":"4967:6:41"},{"kind":"number","nativeSrc":"4975:14:41","nodeType":"YulLiteral","src":"4975:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"4963:3:41","nodeType":"YulIdentifier","src":"4963:3:41"},"nativeSrc":"4963:27:41","nodeType":"YulFunctionCall","src":"4963:27:41"}],"functionName":{"name":"mstore","nativeSrc":"4936:6:41","nodeType":"YulIdentifier","src":"4936:6:41"},"nativeSrc":"4936:55:41","nodeType":"YulFunctionCall","src":"4936:55:41"},"nativeSrc":"4936:55:41","nodeType":"YulExpressionStatement","src":"4936:55:41"}]},"name":"abi_encode_tuple_t_uint48_t_uint32_t_uint32_t_uint48__to_t_uint48_t_uint32_t_uint32_t_uint48__fromStack_reversed","nativeSrc":"4538:459:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4660:9:41","nodeType":"YulTypedName","src":"4660:9:41","type":""},{"name":"value3","nativeSrc":"4671:6:41","nodeType":"YulTypedName","src":"4671:6:41","type":""},{"name":"value2","nativeSrc":"4679:6:41","nodeType":"YulTypedName","src":"4679:6:41","type":""},{"name":"value1","nativeSrc":"4687:6:41","nodeType":"YulTypedName","src":"4687:6:41","type":""},{"name":"value0","nativeSrc":"4695:6:41","nodeType":"YulTypedName","src":"4695:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4706:4:41","nodeType":"YulTypedName","src":"4706:4:41","type":""}],"src":"4538:459:41"},{"body":{"nativeSrc":"5087:171:41","nodeType":"YulBlock","src":"5087:171:41","statements":[{"body":{"nativeSrc":"5133:16:41","nodeType":"YulBlock","src":"5133:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5142:1:41","nodeType":"YulLiteral","src":"5142:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"5145:1:41","nodeType":"YulLiteral","src":"5145:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5135:6:41","nodeType":"YulIdentifier","src":"5135:6:41"},"nativeSrc":"5135:12:41","nodeType":"YulFunctionCall","src":"5135:12:41"},"nativeSrc":"5135:12:41","nodeType":"YulExpressionStatement","src":"5135:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5108:7:41","nodeType":"YulIdentifier","src":"5108:7:41"},{"name":"headStart","nativeSrc":"5117:9:41","nodeType":"YulIdentifier","src":"5117:9:41"}],"functionName":{"name":"sub","nativeSrc":"5104:3:41","nodeType":"YulIdentifier","src":"5104:3:41"},"nativeSrc":"5104:23:41","nodeType":"YulFunctionCall","src":"5104:23:41"},{"kind":"number","nativeSrc":"5129:2:41","nodeType":"YulLiteral","src":"5129:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"5100:3:41","nodeType":"YulIdentifier","src":"5100:3:41"},"nativeSrc":"5100:32:41","nodeType":"YulFunctionCall","src":"5100:32:41"},"nativeSrc":"5097:52:41","nodeType":"YulIf","src":"5097:52:41"},{"nativeSrc":"5158:38:41","nodeType":"YulAssignment","src":"5158:38:41","value":{"arguments":[{"name":"headStart","nativeSrc":"5186:9:41","nodeType":"YulIdentifier","src":"5186:9:41"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"5168:17:41","nodeType":"YulIdentifier","src":"5168:17:41"},"nativeSrc":"5168:28:41","nodeType":"YulFunctionCall","src":"5168:28:41"},"variableNames":[{"name":"value0","nativeSrc":"5158:6:41","nodeType":"YulIdentifier","src":"5158:6:41"}]},{"nativeSrc":"5205:47:41","nodeType":"YulAssignment","src":"5205:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5237:9:41","nodeType":"YulIdentifier","src":"5237:9:41"},{"kind":"number","nativeSrc":"5248:2:41","nodeType":"YulLiteral","src":"5248:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5233:3:41","nodeType":"YulIdentifier","src":"5233:3:41"},"nativeSrc":"5233:18:41","nodeType":"YulFunctionCall","src":"5233:18:41"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"5215:17:41","nodeType":"YulIdentifier","src":"5215:17:41"},"nativeSrc":"5215:37:41","nodeType":"YulFunctionCall","src":"5215:37:41"},"variableNames":[{"name":"value1","nativeSrc":"5205:6:41","nodeType":"YulIdentifier","src":"5205:6:41"}]}]},"name":"abi_decode_tuple_t_uint64t_uint64","nativeSrc":"5002:256:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5045:9:41","nodeType":"YulTypedName","src":"5045:9:41","type":""},{"name":"dataEnd","nativeSrc":"5056:7:41","nodeType":"YulTypedName","src":"5056:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5068:6:41","nodeType":"YulTypedName","src":"5068:6:41","type":""},{"name":"value1","nativeSrc":"5076:6:41","nodeType":"YulTypedName","src":"5076:6:41","type":""}],"src":"5002:256:41"},{"body":{"nativeSrc":"5333:110:41","nodeType":"YulBlock","src":"5333:110:41","statements":[{"body":{"nativeSrc":"5379:16:41","nodeType":"YulBlock","src":"5379:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5388:1:41","nodeType":"YulLiteral","src":"5388:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"5391:1:41","nodeType":"YulLiteral","src":"5391:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5381:6:41","nodeType":"YulIdentifier","src":"5381:6:41"},"nativeSrc":"5381:12:41","nodeType":"YulFunctionCall","src":"5381:12:41"},"nativeSrc":"5381:12:41","nodeType":"YulExpressionStatement","src":"5381:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5354:7:41","nodeType":"YulIdentifier","src":"5354:7:41"},{"name":"headStart","nativeSrc":"5363:9:41","nodeType":"YulIdentifier","src":"5363:9:41"}],"functionName":{"name":"sub","nativeSrc":"5350:3:41","nodeType":"YulIdentifier","src":"5350:3:41"},"nativeSrc":"5350:23:41","nodeType":"YulFunctionCall","src":"5350:23:41"},{"kind":"number","nativeSrc":"5375:2:41","nodeType":"YulLiteral","src":"5375:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5346:3:41","nodeType":"YulIdentifier","src":"5346:3:41"},"nativeSrc":"5346:32:41","nodeType":"YulFunctionCall","src":"5346:32:41"},"nativeSrc":"5343:52:41","nodeType":"YulIf","src":"5343:52:41"},{"nativeSrc":"5404:33:41","nodeType":"YulAssignment","src":"5404:33:41","value":{"arguments":[{"name":"headStart","nativeSrc":"5427:9:41","nodeType":"YulIdentifier","src":"5427:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"5414:12:41","nodeType":"YulIdentifier","src":"5414:12:41"},"nativeSrc":"5414:23:41","nodeType":"YulFunctionCall","src":"5414:23:41"},"variableNames":[{"name":"value0","nativeSrc":"5404:6:41","nodeType":"YulIdentifier","src":"5404:6:41"}]}]},"name":"abi_decode_tuple_t_bytes32","nativeSrc":"5263:180:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5299:9:41","nodeType":"YulTypedName","src":"5299:9:41","type":""},{"name":"dataEnd","nativeSrc":"5310:7:41","nodeType":"YulTypedName","src":"5310:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5322:6:41","nodeType":"YulTypedName","src":"5322:6:41","type":""}],"src":"5263:180:41"},{"body":{"nativeSrc":"5547:97:41","nodeType":"YulBlock","src":"5547:97:41","statements":[{"nativeSrc":"5557:26:41","nodeType":"YulAssignment","src":"5557:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"5569:9:41","nodeType":"YulIdentifier","src":"5569:9:41"},{"kind":"number","nativeSrc":"5580:2:41","nodeType":"YulLiteral","src":"5580:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5565:3:41","nodeType":"YulIdentifier","src":"5565:3:41"},"nativeSrc":"5565:18:41","nodeType":"YulFunctionCall","src":"5565:18:41"},"variableNames":[{"name":"tail","nativeSrc":"5557:4:41","nodeType":"YulIdentifier","src":"5557:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5599:9:41","nodeType":"YulIdentifier","src":"5599:9:41"},{"arguments":[{"name":"value0","nativeSrc":"5614:6:41","nodeType":"YulIdentifier","src":"5614:6:41"},{"kind":"number","nativeSrc":"5622:14:41","nodeType":"YulLiteral","src":"5622:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"5610:3:41","nodeType":"YulIdentifier","src":"5610:3:41"},"nativeSrc":"5610:27:41","nodeType":"YulFunctionCall","src":"5610:27:41"}],"functionName":{"name":"mstore","nativeSrc":"5592:6:41","nodeType":"YulIdentifier","src":"5592:6:41"},"nativeSrc":"5592:46:41","nodeType":"YulFunctionCall","src":"5592:46:41"},"nativeSrc":"5592:46:41","nodeType":"YulExpressionStatement","src":"5592:46:41"}]},"name":"abi_encode_tuple_t_uint48__to_t_uint48__fromStack_reversed","nativeSrc":"5448:196:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5516:9:41","nodeType":"YulTypedName","src":"5516:9:41","type":""},{"name":"value0","nativeSrc":"5527:6:41","nodeType":"YulTypedName","src":"5527:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5538:4:41","nodeType":"YulTypedName","src":"5538:4:41","type":""}],"src":"5448:196:41"},{"body":{"nativeSrc":"5719:177:41","nodeType":"YulBlock","src":"5719:177:41","statements":[{"body":{"nativeSrc":"5765:16:41","nodeType":"YulBlock","src":"5765:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5774:1:41","nodeType":"YulLiteral","src":"5774:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"5777:1:41","nodeType":"YulLiteral","src":"5777:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5767:6:41","nodeType":"YulIdentifier","src":"5767:6:41"},"nativeSrc":"5767:12:41","nodeType":"YulFunctionCall","src":"5767:12:41"},"nativeSrc":"5767:12:41","nodeType":"YulExpressionStatement","src":"5767:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5740:7:41","nodeType":"YulIdentifier","src":"5740:7:41"},{"name":"headStart","nativeSrc":"5749:9:41","nodeType":"YulIdentifier","src":"5749:9:41"}],"functionName":{"name":"sub","nativeSrc":"5736:3:41","nodeType":"YulIdentifier","src":"5736:3:41"},"nativeSrc":"5736:23:41","nodeType":"YulFunctionCall","src":"5736:23:41"},{"kind":"number","nativeSrc":"5761:2:41","nodeType":"YulLiteral","src":"5761:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5732:3:41","nodeType":"YulIdentifier","src":"5732:3:41"},"nativeSrc":"5732:32:41","nodeType":"YulFunctionCall","src":"5732:32:41"},"nativeSrc":"5729:52:41","nodeType":"YulIf","src":"5729:52:41"},{"nativeSrc":"5790:36:41","nodeType":"YulVariableDeclaration","src":"5790:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"5816:9:41","nodeType":"YulIdentifier","src":"5816:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"5803:12:41","nodeType":"YulIdentifier","src":"5803:12:41"},"nativeSrc":"5803:23:41","nodeType":"YulFunctionCall","src":"5803:23:41"},"variables":[{"name":"value","nativeSrc":"5794:5:41","nodeType":"YulTypedName","src":"5794:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5860:5:41","nodeType":"YulIdentifier","src":"5860:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"5835:24:41","nodeType":"YulIdentifier","src":"5835:24:41"},"nativeSrc":"5835:31:41","nodeType":"YulFunctionCall","src":"5835:31:41"},"nativeSrc":"5835:31:41","nodeType":"YulExpressionStatement","src":"5835:31:41"},{"nativeSrc":"5875:15:41","nodeType":"YulAssignment","src":"5875:15:41","value":{"name":"value","nativeSrc":"5885:5:41","nodeType":"YulIdentifier","src":"5885:5:41"},"variableNames":[{"name":"value0","nativeSrc":"5875:6:41","nodeType":"YulIdentifier","src":"5875:6:41"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"5649:247:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5685:9:41","nodeType":"YulTypedName","src":"5685:9:41","type":""},{"name":"dataEnd","nativeSrc":"5696:7:41","nodeType":"YulTypedName","src":"5696:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5708:6:41","nodeType":"YulTypedName","src":"5708:6:41","type":""}],"src":"5649:247:41"},{"body":{"nativeSrc":"5945:87:41","nodeType":"YulBlock","src":"5945:87:41","statements":[{"body":{"nativeSrc":"6010:16:41","nodeType":"YulBlock","src":"6010:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6019:1:41","nodeType":"YulLiteral","src":"6019:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"6022:1:41","nodeType":"YulLiteral","src":"6022:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6012:6:41","nodeType":"YulIdentifier","src":"6012:6:41"},"nativeSrc":"6012:12:41","nodeType":"YulFunctionCall","src":"6012:12:41"},"nativeSrc":"6012:12:41","nodeType":"YulExpressionStatement","src":"6012:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5968:5:41","nodeType":"YulIdentifier","src":"5968:5:41"},{"arguments":[{"name":"value","nativeSrc":"5979:5:41","nodeType":"YulIdentifier","src":"5979:5:41"},{"arguments":[{"kind":"number","nativeSrc":"5990:3:41","nodeType":"YulLiteral","src":"5990:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"5995:10:41","nodeType":"YulLiteral","src":"5995:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"5986:3:41","nodeType":"YulIdentifier","src":"5986:3:41"},"nativeSrc":"5986:20:41","nodeType":"YulFunctionCall","src":"5986:20:41"}],"functionName":{"name":"and","nativeSrc":"5975:3:41","nodeType":"YulIdentifier","src":"5975:3:41"},"nativeSrc":"5975:32:41","nodeType":"YulFunctionCall","src":"5975:32:41"}],"functionName":{"name":"eq","nativeSrc":"5965:2:41","nodeType":"YulIdentifier","src":"5965:2:41"},"nativeSrc":"5965:43:41","nodeType":"YulFunctionCall","src":"5965:43:41"}],"functionName":{"name":"iszero","nativeSrc":"5958:6:41","nodeType":"YulIdentifier","src":"5958:6:41"},"nativeSrc":"5958:51:41","nodeType":"YulFunctionCall","src":"5958:51:41"},"nativeSrc":"5955:71:41","nodeType":"YulIf","src":"5955:71:41"}]},"name":"validator_revert_bytes4","nativeSrc":"5901:131:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"5934:5:41","nodeType":"YulTypedName","src":"5934:5:41","type":""}],"src":"5901:131:41"},{"body":{"nativeSrc":"6123:300:41","nodeType":"YulBlock","src":"6123:300:41","statements":[{"body":{"nativeSrc":"6169:16:41","nodeType":"YulBlock","src":"6169:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6178:1:41","nodeType":"YulLiteral","src":"6178:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"6181:1:41","nodeType":"YulLiteral","src":"6181:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6171:6:41","nodeType":"YulIdentifier","src":"6171:6:41"},"nativeSrc":"6171:12:41","nodeType":"YulFunctionCall","src":"6171:12:41"},"nativeSrc":"6171:12:41","nodeType":"YulExpressionStatement","src":"6171:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6144:7:41","nodeType":"YulIdentifier","src":"6144:7:41"},{"name":"headStart","nativeSrc":"6153:9:41","nodeType":"YulIdentifier","src":"6153:9:41"}],"functionName":{"name":"sub","nativeSrc":"6140:3:41","nodeType":"YulIdentifier","src":"6140:3:41"},"nativeSrc":"6140:23:41","nodeType":"YulFunctionCall","src":"6140:23:41"},{"kind":"number","nativeSrc":"6165:2:41","nodeType":"YulLiteral","src":"6165:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6136:3:41","nodeType":"YulIdentifier","src":"6136:3:41"},"nativeSrc":"6136:32:41","nodeType":"YulFunctionCall","src":"6136:32:41"},"nativeSrc":"6133:52:41","nodeType":"YulIf","src":"6133:52:41"},{"nativeSrc":"6194:36:41","nodeType":"YulVariableDeclaration","src":"6194:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"6220:9:41","nodeType":"YulIdentifier","src":"6220:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"6207:12:41","nodeType":"YulIdentifier","src":"6207:12:41"},"nativeSrc":"6207:23:41","nodeType":"YulFunctionCall","src":"6207:23:41"},"variables":[{"name":"value","nativeSrc":"6198:5:41","nodeType":"YulTypedName","src":"6198:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6264:5:41","nodeType":"YulIdentifier","src":"6264:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6239:24:41","nodeType":"YulIdentifier","src":"6239:24:41"},"nativeSrc":"6239:31:41","nodeType":"YulFunctionCall","src":"6239:31:41"},"nativeSrc":"6239:31:41","nodeType":"YulExpressionStatement","src":"6239:31:41"},{"nativeSrc":"6279:15:41","nodeType":"YulAssignment","src":"6279:15:41","value":{"name":"value","nativeSrc":"6289:5:41","nodeType":"YulIdentifier","src":"6289:5:41"},"variableNames":[{"name":"value0","nativeSrc":"6279:6:41","nodeType":"YulIdentifier","src":"6279:6:41"}]},{"nativeSrc":"6303:47:41","nodeType":"YulVariableDeclaration","src":"6303:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6335:9:41","nodeType":"YulIdentifier","src":"6335:9:41"},{"kind":"number","nativeSrc":"6346:2:41","nodeType":"YulLiteral","src":"6346:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6331:3:41","nodeType":"YulIdentifier","src":"6331:3:41"},"nativeSrc":"6331:18:41","nodeType":"YulFunctionCall","src":"6331:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"6318:12:41","nodeType":"YulIdentifier","src":"6318:12:41"},"nativeSrc":"6318:32:41","nodeType":"YulFunctionCall","src":"6318:32:41"},"variables":[{"name":"value_1","nativeSrc":"6307:7:41","nodeType":"YulTypedName","src":"6307:7:41","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"6383:7:41","nodeType":"YulIdentifier","src":"6383:7:41"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"6359:23:41","nodeType":"YulIdentifier","src":"6359:23:41"},"nativeSrc":"6359:32:41","nodeType":"YulFunctionCall","src":"6359:32:41"},"nativeSrc":"6359:32:41","nodeType":"YulExpressionStatement","src":"6359:32:41"},{"nativeSrc":"6400:17:41","nodeType":"YulAssignment","src":"6400:17:41","value":{"name":"value_1","nativeSrc":"6410:7:41","nodeType":"YulIdentifier","src":"6410:7:41"},"variableNames":[{"name":"value1","nativeSrc":"6400:6:41","nodeType":"YulIdentifier","src":"6400:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_bytes4","nativeSrc":"6037:386:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6081:9:41","nodeType":"YulTypedName","src":"6081:9:41","type":""},{"name":"dataEnd","nativeSrc":"6092:7:41","nodeType":"YulTypedName","src":"6092:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6104:6:41","nodeType":"YulTypedName","src":"6104:6:41","type":""},{"name":"value1","nativeSrc":"6112:6:41","nodeType":"YulTypedName","src":"6112:6:41","type":""}],"src":"6037:386:41"},{"body":{"nativeSrc":"6534:376:41","nodeType":"YulBlock","src":"6534:376:41","statements":[{"body":{"nativeSrc":"6580:16:41","nodeType":"YulBlock","src":"6580:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6589:1:41","nodeType":"YulLiteral","src":"6589:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"6592:1:41","nodeType":"YulLiteral","src":"6592:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6582:6:41","nodeType":"YulIdentifier","src":"6582:6:41"},"nativeSrc":"6582:12:41","nodeType":"YulFunctionCall","src":"6582:12:41"},"nativeSrc":"6582:12:41","nodeType":"YulExpressionStatement","src":"6582:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6555:7:41","nodeType":"YulIdentifier","src":"6555:7:41"},{"name":"headStart","nativeSrc":"6564:9:41","nodeType":"YulIdentifier","src":"6564:9:41"}],"functionName":{"name":"sub","nativeSrc":"6551:3:41","nodeType":"YulIdentifier","src":"6551:3:41"},"nativeSrc":"6551:23:41","nodeType":"YulFunctionCall","src":"6551:23:41"},{"kind":"number","nativeSrc":"6576:2:41","nodeType":"YulLiteral","src":"6576:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6547:3:41","nodeType":"YulIdentifier","src":"6547:3:41"},"nativeSrc":"6547:32:41","nodeType":"YulFunctionCall","src":"6547:32:41"},"nativeSrc":"6544:52:41","nodeType":"YulIf","src":"6544:52:41"},{"nativeSrc":"6605:38:41","nodeType":"YulAssignment","src":"6605:38:41","value":{"arguments":[{"name":"headStart","nativeSrc":"6633:9:41","nodeType":"YulIdentifier","src":"6633:9:41"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"6615:17:41","nodeType":"YulIdentifier","src":"6615:17:41"},"nativeSrc":"6615:28:41","nodeType":"YulFunctionCall","src":"6615:28:41"},"variableNames":[{"name":"value0","nativeSrc":"6605:6:41","nodeType":"YulIdentifier","src":"6605:6:41"}]},{"nativeSrc":"6652:46:41","nodeType":"YulVariableDeclaration","src":"6652:46:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6683:9:41","nodeType":"YulIdentifier","src":"6683:9:41"},{"kind":"number","nativeSrc":"6694:2:41","nodeType":"YulLiteral","src":"6694:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6679:3:41","nodeType":"YulIdentifier","src":"6679:3:41"},"nativeSrc":"6679:18:41","nodeType":"YulFunctionCall","src":"6679:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"6666:12:41","nodeType":"YulIdentifier","src":"6666:12:41"},"nativeSrc":"6666:32:41","nodeType":"YulFunctionCall","src":"6666:32:41"},"variables":[{"name":"offset","nativeSrc":"6656:6:41","nodeType":"YulTypedName","src":"6656:6:41","type":""}]},{"body":{"nativeSrc":"6741:16:41","nodeType":"YulBlock","src":"6741:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6750:1:41","nodeType":"YulLiteral","src":"6750:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"6753:1:41","nodeType":"YulLiteral","src":"6753:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6743:6:41","nodeType":"YulIdentifier","src":"6743:6:41"},"nativeSrc":"6743:12:41","nodeType":"YulFunctionCall","src":"6743:12:41"},"nativeSrc":"6743:12:41","nodeType":"YulExpressionStatement","src":"6743:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"6713:6:41","nodeType":"YulIdentifier","src":"6713:6:41"},{"kind":"number","nativeSrc":"6721:18:41","nodeType":"YulLiteral","src":"6721:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6710:2:41","nodeType":"YulIdentifier","src":"6710:2:41"},"nativeSrc":"6710:30:41","nodeType":"YulFunctionCall","src":"6710:30:41"},"nativeSrc":"6707:50:41","nodeType":"YulIf","src":"6707:50:41"},{"nativeSrc":"6766:84:41","nodeType":"YulVariableDeclaration","src":"6766:84:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6822:9:41","nodeType":"YulIdentifier","src":"6822:9:41"},{"name":"offset","nativeSrc":"6833:6:41","nodeType":"YulIdentifier","src":"6833:6:41"}],"functionName":{"name":"add","nativeSrc":"6818:3:41","nodeType":"YulIdentifier","src":"6818:3:41"},"nativeSrc":"6818:22:41","nodeType":"YulFunctionCall","src":"6818:22:41"},{"name":"dataEnd","nativeSrc":"6842:7:41","nodeType":"YulIdentifier","src":"6842:7:41"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"6792:25:41","nodeType":"YulIdentifier","src":"6792:25:41"},"nativeSrc":"6792:58:41","nodeType":"YulFunctionCall","src":"6792:58:41"},"variables":[{"name":"value1_1","nativeSrc":"6770:8:41","nodeType":"YulTypedName","src":"6770:8:41","type":""},{"name":"value2_1","nativeSrc":"6780:8:41","nodeType":"YulTypedName","src":"6780:8:41","type":""}]},{"nativeSrc":"6859:18:41","nodeType":"YulAssignment","src":"6859:18:41","value":{"name":"value1_1","nativeSrc":"6869:8:41","nodeType":"YulIdentifier","src":"6869:8:41"},"variableNames":[{"name":"value1","nativeSrc":"6859:6:41","nodeType":"YulIdentifier","src":"6859:6:41"}]},{"nativeSrc":"6886:18:41","nodeType":"YulAssignment","src":"6886:18:41","value":{"name":"value2_1","nativeSrc":"6896:8:41","nodeType":"YulIdentifier","src":"6896:8:41"},"variableNames":[{"name":"value2","nativeSrc":"6886:6:41","nodeType":"YulIdentifier","src":"6886:6:41"}]}]},"name":"abi_decode_tuple_t_uint64t_string_calldata_ptr","nativeSrc":"6428:482:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6484:9:41","nodeType":"YulTypedName","src":"6484:9:41","type":""},{"name":"dataEnd","nativeSrc":"6495:7:41","nodeType":"YulTypedName","src":"6495:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6507:6:41","nodeType":"YulTypedName","src":"6507:6:41","type":""},{"name":"value1","nativeSrc":"6515:6:41","nodeType":"YulTypedName","src":"6515:6:41","type":""},{"name":"value2","nativeSrc":"6523:6:41","nodeType":"YulTypedName","src":"6523:6:41","type":""}],"src":"6428:482:41"},{"body":{"nativeSrc":"7010:92:41","nodeType":"YulBlock","src":"7010:92:41","statements":[{"nativeSrc":"7020:26:41","nodeType":"YulAssignment","src":"7020:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"7032:9:41","nodeType":"YulIdentifier","src":"7032:9:41"},{"kind":"number","nativeSrc":"7043:2:41","nodeType":"YulLiteral","src":"7043:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7028:3:41","nodeType":"YulIdentifier","src":"7028:3:41"},"nativeSrc":"7028:18:41","nodeType":"YulFunctionCall","src":"7028:18:41"},"variableNames":[{"name":"tail","nativeSrc":"7020:4:41","nodeType":"YulIdentifier","src":"7020:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7062:9:41","nodeType":"YulIdentifier","src":"7062:9:41"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"7087:6:41","nodeType":"YulIdentifier","src":"7087:6:41"}],"functionName":{"name":"iszero","nativeSrc":"7080:6:41","nodeType":"YulIdentifier","src":"7080:6:41"},"nativeSrc":"7080:14:41","nodeType":"YulFunctionCall","src":"7080:14:41"}],"functionName":{"name":"iszero","nativeSrc":"7073:6:41","nodeType":"YulIdentifier","src":"7073:6:41"},"nativeSrc":"7073:22:41","nodeType":"YulFunctionCall","src":"7073:22:41"}],"functionName":{"name":"mstore","nativeSrc":"7055:6:41","nodeType":"YulIdentifier","src":"7055:6:41"},"nativeSrc":"7055:41:41","nodeType":"YulFunctionCall","src":"7055:41:41"},"nativeSrc":"7055:41:41","nodeType":"YulExpressionStatement","src":"7055:41:41"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"6915:187:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6979:9:41","nodeType":"YulTypedName","src":"6979:9:41","type":""},{"name":"value0","nativeSrc":"6990:6:41","nodeType":"YulTypedName","src":"6990:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7001:4:41","nodeType":"YulTypedName","src":"7001:4:41","type":""}],"src":"6915:187:41"},{"body":{"nativeSrc":"7192:171:41","nodeType":"YulBlock","src":"7192:171:41","statements":[{"body":{"nativeSrc":"7238:16:41","nodeType":"YulBlock","src":"7238:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7247:1:41","nodeType":"YulLiteral","src":"7247:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"7250:1:41","nodeType":"YulLiteral","src":"7250:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7240:6:41","nodeType":"YulIdentifier","src":"7240:6:41"},"nativeSrc":"7240:12:41","nodeType":"YulFunctionCall","src":"7240:12:41"},"nativeSrc":"7240:12:41","nodeType":"YulExpressionStatement","src":"7240:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7213:7:41","nodeType":"YulIdentifier","src":"7213:7:41"},{"name":"headStart","nativeSrc":"7222:9:41","nodeType":"YulIdentifier","src":"7222:9:41"}],"functionName":{"name":"sub","nativeSrc":"7209:3:41","nodeType":"YulIdentifier","src":"7209:3:41"},"nativeSrc":"7209:23:41","nodeType":"YulFunctionCall","src":"7209:23:41"},{"kind":"number","nativeSrc":"7234:2:41","nodeType":"YulLiteral","src":"7234:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"7205:3:41","nodeType":"YulIdentifier","src":"7205:3:41"},"nativeSrc":"7205:32:41","nodeType":"YulFunctionCall","src":"7205:32:41"},"nativeSrc":"7202:52:41","nodeType":"YulIf","src":"7202:52:41"},{"nativeSrc":"7263:38:41","nodeType":"YulAssignment","src":"7263:38:41","value":{"arguments":[{"name":"headStart","nativeSrc":"7291:9:41","nodeType":"YulIdentifier","src":"7291:9:41"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"7273:17:41","nodeType":"YulIdentifier","src":"7273:17:41"},"nativeSrc":"7273:28:41","nodeType":"YulFunctionCall","src":"7273:28:41"},"variableNames":[{"name":"value0","nativeSrc":"7263:6:41","nodeType":"YulIdentifier","src":"7263:6:41"}]},{"nativeSrc":"7310:47:41","nodeType":"YulAssignment","src":"7310:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7342:9:41","nodeType":"YulIdentifier","src":"7342:9:41"},{"kind":"number","nativeSrc":"7353:2:41","nodeType":"YulLiteral","src":"7353:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7338:3:41","nodeType":"YulIdentifier","src":"7338:3:41"},"nativeSrc":"7338:18:41","nodeType":"YulFunctionCall","src":"7338:18:41"}],"functionName":{"name":"abi_decode_uint32","nativeSrc":"7320:17:41","nodeType":"YulIdentifier","src":"7320:17:41"},"nativeSrc":"7320:37:41","nodeType":"YulFunctionCall","src":"7320:37:41"},"variableNames":[{"name":"value1","nativeSrc":"7310:6:41","nodeType":"YulIdentifier","src":"7310:6:41"}]}]},"name":"abi_decode_tuple_t_uint64t_uint32","nativeSrc":"7107:256:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7150:9:41","nodeType":"YulTypedName","src":"7150:9:41","type":""},{"name":"dataEnd","nativeSrc":"7161:7:41","nodeType":"YulTypedName","src":"7161:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7173:6:41","nodeType":"YulTypedName","src":"7173:6:41","type":""},{"name":"value1","nativeSrc":"7181:6:41","nodeType":"YulTypedName","src":"7181:6:41","type":""}],"src":"7107:256:41"},{"body":{"nativeSrc":"7491:562:41","nodeType":"YulBlock","src":"7491:562:41","statements":[{"body":{"nativeSrc":"7537:16:41","nodeType":"YulBlock","src":"7537:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7546:1:41","nodeType":"YulLiteral","src":"7546:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"7549:1:41","nodeType":"YulLiteral","src":"7549:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7539:6:41","nodeType":"YulIdentifier","src":"7539:6:41"},"nativeSrc":"7539:12:41","nodeType":"YulFunctionCall","src":"7539:12:41"},"nativeSrc":"7539:12:41","nodeType":"YulExpressionStatement","src":"7539:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7512:7:41","nodeType":"YulIdentifier","src":"7512:7:41"},{"name":"headStart","nativeSrc":"7521:9:41","nodeType":"YulIdentifier","src":"7521:9:41"}],"functionName":{"name":"sub","nativeSrc":"7508:3:41","nodeType":"YulIdentifier","src":"7508:3:41"},"nativeSrc":"7508:23:41","nodeType":"YulFunctionCall","src":"7508:23:41"},{"kind":"number","nativeSrc":"7533:2:41","nodeType":"YulLiteral","src":"7533:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"7504:3:41","nodeType":"YulIdentifier","src":"7504:3:41"},"nativeSrc":"7504:32:41","nodeType":"YulFunctionCall","src":"7504:32:41"},"nativeSrc":"7501:52:41","nodeType":"YulIf","src":"7501:52:41"},{"nativeSrc":"7562:36:41","nodeType":"YulVariableDeclaration","src":"7562:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"7588:9:41","nodeType":"YulIdentifier","src":"7588:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"7575:12:41","nodeType":"YulIdentifier","src":"7575:12:41"},"nativeSrc":"7575:23:41","nodeType":"YulFunctionCall","src":"7575:23:41"},"variables":[{"name":"value","nativeSrc":"7566:5:41","nodeType":"YulTypedName","src":"7566:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7632:5:41","nodeType":"YulIdentifier","src":"7632:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"7607:24:41","nodeType":"YulIdentifier","src":"7607:24:41"},"nativeSrc":"7607:31:41","nodeType":"YulFunctionCall","src":"7607:31:41"},"nativeSrc":"7607:31:41","nodeType":"YulExpressionStatement","src":"7607:31:41"},{"nativeSrc":"7647:15:41","nodeType":"YulAssignment","src":"7647:15:41","value":{"name":"value","nativeSrc":"7657:5:41","nodeType":"YulIdentifier","src":"7657:5:41"},"variableNames":[{"name":"value0","nativeSrc":"7647:6:41","nodeType":"YulIdentifier","src":"7647:6:41"}]},{"nativeSrc":"7671:47:41","nodeType":"YulVariableDeclaration","src":"7671:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7703:9:41","nodeType":"YulIdentifier","src":"7703:9:41"},{"kind":"number","nativeSrc":"7714:2:41","nodeType":"YulLiteral","src":"7714:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7699:3:41","nodeType":"YulIdentifier","src":"7699:3:41"},"nativeSrc":"7699:18:41","nodeType":"YulFunctionCall","src":"7699:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"7686:12:41","nodeType":"YulIdentifier","src":"7686:12:41"},"nativeSrc":"7686:32:41","nodeType":"YulFunctionCall","src":"7686:32:41"},"variables":[{"name":"value_1","nativeSrc":"7675:7:41","nodeType":"YulTypedName","src":"7675:7:41","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"7752:7:41","nodeType":"YulIdentifier","src":"7752:7:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"7727:24:41","nodeType":"YulIdentifier","src":"7727:24:41"},"nativeSrc":"7727:33:41","nodeType":"YulFunctionCall","src":"7727:33:41"},"nativeSrc":"7727:33:41","nodeType":"YulExpressionStatement","src":"7727:33:41"},{"nativeSrc":"7769:17:41","nodeType":"YulAssignment","src":"7769:17:41","value":{"name":"value_1","nativeSrc":"7779:7:41","nodeType":"YulIdentifier","src":"7779:7:41"},"variableNames":[{"name":"value1","nativeSrc":"7769:6:41","nodeType":"YulIdentifier","src":"7769:6:41"}]},{"nativeSrc":"7795:46:41","nodeType":"YulVariableDeclaration","src":"7795:46:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7826:9:41","nodeType":"YulIdentifier","src":"7826:9:41"},{"kind":"number","nativeSrc":"7837:2:41","nodeType":"YulLiteral","src":"7837:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7822:3:41","nodeType":"YulIdentifier","src":"7822:3:41"},"nativeSrc":"7822:18:41","nodeType":"YulFunctionCall","src":"7822:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"7809:12:41","nodeType":"YulIdentifier","src":"7809:12:41"},"nativeSrc":"7809:32:41","nodeType":"YulFunctionCall","src":"7809:32:41"},"variables":[{"name":"offset","nativeSrc":"7799:6:41","nodeType":"YulTypedName","src":"7799:6:41","type":""}]},{"body":{"nativeSrc":"7884:16:41","nodeType":"YulBlock","src":"7884:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7893:1:41","nodeType":"YulLiteral","src":"7893:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"7896:1:41","nodeType":"YulLiteral","src":"7896:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7886:6:41","nodeType":"YulIdentifier","src":"7886:6:41"},"nativeSrc":"7886:12:41","nodeType":"YulFunctionCall","src":"7886:12:41"},"nativeSrc":"7886:12:41","nodeType":"YulExpressionStatement","src":"7886:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"7856:6:41","nodeType":"YulIdentifier","src":"7856:6:41"},{"kind":"number","nativeSrc":"7864:18:41","nodeType":"YulLiteral","src":"7864:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7853:2:41","nodeType":"YulIdentifier","src":"7853:2:41"},"nativeSrc":"7853:30:41","nodeType":"YulFunctionCall","src":"7853:30:41"},"nativeSrc":"7850:50:41","nodeType":"YulIf","src":"7850:50:41"},{"nativeSrc":"7909:84:41","nodeType":"YulVariableDeclaration","src":"7909:84:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7965:9:41","nodeType":"YulIdentifier","src":"7965:9:41"},{"name":"offset","nativeSrc":"7976:6:41","nodeType":"YulIdentifier","src":"7976:6:41"}],"functionName":{"name":"add","nativeSrc":"7961:3:41","nodeType":"YulIdentifier","src":"7961:3:41"},"nativeSrc":"7961:22:41","nodeType":"YulFunctionCall","src":"7961:22:41"},{"name":"dataEnd","nativeSrc":"7985:7:41","nodeType":"YulIdentifier","src":"7985:7:41"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"7935:25:41","nodeType":"YulIdentifier","src":"7935:25:41"},"nativeSrc":"7935:58:41","nodeType":"YulFunctionCall","src":"7935:58:41"},"variables":[{"name":"value2_1","nativeSrc":"7913:8:41","nodeType":"YulTypedName","src":"7913:8:41","type":""},{"name":"value3_1","nativeSrc":"7923:8:41","nodeType":"YulTypedName","src":"7923:8:41","type":""}]},{"nativeSrc":"8002:18:41","nodeType":"YulAssignment","src":"8002:18:41","value":{"name":"value2_1","nativeSrc":"8012:8:41","nodeType":"YulIdentifier","src":"8012:8:41"},"variableNames":[{"name":"value2","nativeSrc":"8002:6:41","nodeType":"YulIdentifier","src":"8002:6:41"}]},{"nativeSrc":"8029:18:41","nodeType":"YulAssignment","src":"8029:18:41","value":{"name":"value3_1","nativeSrc":"8039:8:41","nodeType":"YulIdentifier","src":"8039:8:41"},"variableNames":[{"name":"value3","nativeSrc":"8029:6:41","nodeType":"YulIdentifier","src":"8029:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_bytes_calldata_ptr","nativeSrc":"7368:685:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7433:9:41","nodeType":"YulTypedName","src":"7433:9:41","type":""},{"name":"dataEnd","nativeSrc":"7444:7:41","nodeType":"YulTypedName","src":"7444:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7456:6:41","nodeType":"YulTypedName","src":"7456:6:41","type":""},{"name":"value1","nativeSrc":"7464:6:41","nodeType":"YulTypedName","src":"7464:6:41","type":""},{"name":"value2","nativeSrc":"7472:6:41","nodeType":"YulTypedName","src":"7472:6:41","type":""},{"name":"value3","nativeSrc":"7480:6:41","nodeType":"YulTypedName","src":"7480:6:41","type":""}],"src":"7368:685:41"},{"body":{"nativeSrc":"8159:76:41","nodeType":"YulBlock","src":"8159:76:41","statements":[{"nativeSrc":"8169:26:41","nodeType":"YulAssignment","src":"8169:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"8181:9:41","nodeType":"YulIdentifier","src":"8181:9:41"},{"kind":"number","nativeSrc":"8192:2:41","nodeType":"YulLiteral","src":"8192:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8177:3:41","nodeType":"YulIdentifier","src":"8177:3:41"},"nativeSrc":"8177:18:41","nodeType":"YulFunctionCall","src":"8177:18:41"},"variableNames":[{"name":"tail","nativeSrc":"8169:4:41","nodeType":"YulIdentifier","src":"8169:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8211:9:41","nodeType":"YulIdentifier","src":"8211:9:41"},{"name":"value0","nativeSrc":"8222:6:41","nodeType":"YulIdentifier","src":"8222:6:41"}],"functionName":{"name":"mstore","nativeSrc":"8204:6:41","nodeType":"YulIdentifier","src":"8204:6:41"},"nativeSrc":"8204:25:41","nodeType":"YulFunctionCall","src":"8204:25:41"},"nativeSrc":"8204:25:41","nodeType":"YulExpressionStatement","src":"8204:25:41"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"8058:177:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8128:9:41","nodeType":"YulTypedName","src":"8128:9:41","type":""},{"name":"value0","nativeSrc":"8139:6:41","nodeType":"YulTypedName","src":"8139:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8150:4:41","nodeType":"YulTypedName","src":"8150:4:41","type":""}],"src":"8058:177:41"},{"body":{"nativeSrc":"8356:331:41","nodeType":"YulBlock","src":"8356:331:41","statements":[{"body":{"nativeSrc":"8402:16:41","nodeType":"YulBlock","src":"8402:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8411:1:41","nodeType":"YulLiteral","src":"8411:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"8414:1:41","nodeType":"YulLiteral","src":"8414:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8404:6:41","nodeType":"YulIdentifier","src":"8404:6:41"},"nativeSrc":"8404:12:41","nodeType":"YulFunctionCall","src":"8404:12:41"},"nativeSrc":"8404:12:41","nodeType":"YulExpressionStatement","src":"8404:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8377:7:41","nodeType":"YulIdentifier","src":"8377:7:41"},{"name":"headStart","nativeSrc":"8386:9:41","nodeType":"YulIdentifier","src":"8386:9:41"}],"functionName":{"name":"sub","nativeSrc":"8373:3:41","nodeType":"YulIdentifier","src":"8373:3:41"},"nativeSrc":"8373:23:41","nodeType":"YulFunctionCall","src":"8373:23:41"},{"kind":"number","nativeSrc":"8398:2:41","nodeType":"YulLiteral","src":"8398:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"8369:3:41","nodeType":"YulIdentifier","src":"8369:3:41"},"nativeSrc":"8369:32:41","nodeType":"YulFunctionCall","src":"8369:32:41"},"nativeSrc":"8366:52:41","nodeType":"YulIf","src":"8366:52:41"},{"nativeSrc":"8427:37:41","nodeType":"YulVariableDeclaration","src":"8427:37:41","value":{"arguments":[{"name":"headStart","nativeSrc":"8454:9:41","nodeType":"YulIdentifier","src":"8454:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"8441:12:41","nodeType":"YulIdentifier","src":"8441:12:41"},"nativeSrc":"8441:23:41","nodeType":"YulFunctionCall","src":"8441:23:41"},"variables":[{"name":"offset","nativeSrc":"8431:6:41","nodeType":"YulTypedName","src":"8431:6:41","type":""}]},{"body":{"nativeSrc":"8507:16:41","nodeType":"YulBlock","src":"8507:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8516:1:41","nodeType":"YulLiteral","src":"8516:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"8519:1:41","nodeType":"YulLiteral","src":"8519:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8509:6:41","nodeType":"YulIdentifier","src":"8509:6:41"},"nativeSrc":"8509:12:41","nodeType":"YulFunctionCall","src":"8509:12:41"},"nativeSrc":"8509:12:41","nodeType":"YulExpressionStatement","src":"8509:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"8479:6:41","nodeType":"YulIdentifier","src":"8479:6:41"},{"kind":"number","nativeSrc":"8487:18:41","nodeType":"YulLiteral","src":"8487:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8476:2:41","nodeType":"YulIdentifier","src":"8476:2:41"},"nativeSrc":"8476:30:41","nodeType":"YulFunctionCall","src":"8476:30:41"},"nativeSrc":"8473:50:41","nodeType":"YulIf","src":"8473:50:41"},{"nativeSrc":"8532:95:41","nodeType":"YulVariableDeclaration","src":"8532:95:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8599:9:41","nodeType":"YulIdentifier","src":"8599:9:41"},{"name":"offset","nativeSrc":"8610:6:41","nodeType":"YulIdentifier","src":"8610:6:41"}],"functionName":{"name":"add","nativeSrc":"8595:3:41","nodeType":"YulIdentifier","src":"8595:3:41"},"nativeSrc":"8595:22:41","nodeType":"YulFunctionCall","src":"8595:22:41"},{"name":"dataEnd","nativeSrc":"8619:7:41","nodeType":"YulIdentifier","src":"8619:7:41"}],"functionName":{"name":"abi_decode_array_bytes4_dyn_calldata","nativeSrc":"8558:36:41","nodeType":"YulIdentifier","src":"8558:36:41"},"nativeSrc":"8558:69:41","nodeType":"YulFunctionCall","src":"8558:69:41"},"variables":[{"name":"value0_1","nativeSrc":"8536:8:41","nodeType":"YulTypedName","src":"8536:8:41","type":""},{"name":"value1_1","nativeSrc":"8546:8:41","nodeType":"YulTypedName","src":"8546:8:41","type":""}]},{"nativeSrc":"8636:18:41","nodeType":"YulAssignment","src":"8636:18:41","value":{"name":"value0_1","nativeSrc":"8646:8:41","nodeType":"YulIdentifier","src":"8646:8:41"},"variableNames":[{"name":"value0","nativeSrc":"8636:6:41","nodeType":"YulIdentifier","src":"8636:6:41"}]},{"nativeSrc":"8663:18:41","nodeType":"YulAssignment","src":"8663:18:41","value":{"name":"value1_1","nativeSrc":"8673:8:41","nodeType":"YulIdentifier","src":"8673:8:41"},"variableNames":[{"name":"value1","nativeSrc":"8663:6:41","nodeType":"YulIdentifier","src":"8663:6:41"}]}]},"name":"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","nativeSrc":"8240:447:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8314:9:41","nodeType":"YulTypedName","src":"8314:9:41","type":""},{"name":"dataEnd","nativeSrc":"8325:7:41","nodeType":"YulTypedName","src":"8325:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8337:6:41","nodeType":"YulTypedName","src":"8337:6:41","type":""},{"name":"value1","nativeSrc":"8345:6:41","nodeType":"YulTypedName","src":"8345:6:41","type":""}],"src":"8240:447:41"},{"body":{"nativeSrc":"8861:847:41","nodeType":"YulBlock","src":"8861:847:41","statements":[{"nativeSrc":"8871:32:41","nodeType":"YulVariableDeclaration","src":"8871:32:41","value":{"arguments":[{"name":"headStart","nativeSrc":"8889:9:41","nodeType":"YulIdentifier","src":"8889:9:41"},{"kind":"number","nativeSrc":"8900:2:41","nodeType":"YulLiteral","src":"8900:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8885:3:41","nodeType":"YulIdentifier","src":"8885:3:41"},"nativeSrc":"8885:18:41","nodeType":"YulFunctionCall","src":"8885:18:41"},"variables":[{"name":"tail_1","nativeSrc":"8875:6:41","nodeType":"YulTypedName","src":"8875:6:41","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8919:9:41","nodeType":"YulIdentifier","src":"8919:9:41"},{"kind":"number","nativeSrc":"8930:2:41","nodeType":"YulLiteral","src":"8930:2:41","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"8912:6:41","nodeType":"YulIdentifier","src":"8912:6:41"},"nativeSrc":"8912:21:41","nodeType":"YulFunctionCall","src":"8912:21:41"},"nativeSrc":"8912:21:41","nodeType":"YulExpressionStatement","src":"8912:21:41"},{"nativeSrc":"8942:17:41","nodeType":"YulVariableDeclaration","src":"8942:17:41","value":{"name":"tail_1","nativeSrc":"8953:6:41","nodeType":"YulIdentifier","src":"8953:6:41"},"variables":[{"name":"pos","nativeSrc":"8946:3:41","nodeType":"YulTypedName","src":"8946:3:41","type":""}]},{"nativeSrc":"8968:27:41","nodeType":"YulVariableDeclaration","src":"8968:27:41","value":{"arguments":[{"name":"value0","nativeSrc":"8988:6:41","nodeType":"YulIdentifier","src":"8988:6:41"}],"functionName":{"name":"mload","nativeSrc":"8982:5:41","nodeType":"YulIdentifier","src":"8982:5:41"},"nativeSrc":"8982:13:41","nodeType":"YulFunctionCall","src":"8982:13:41"},"variables":[{"name":"length","nativeSrc":"8972:6:41","nodeType":"YulTypedName","src":"8972:6:41","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"9011:6:41","nodeType":"YulIdentifier","src":"9011:6:41"},{"name":"length","nativeSrc":"9019:6:41","nodeType":"YulIdentifier","src":"9019:6:41"}],"functionName":{"name":"mstore","nativeSrc":"9004:6:41","nodeType":"YulIdentifier","src":"9004:6:41"},"nativeSrc":"9004:22:41","nodeType":"YulFunctionCall","src":"9004:22:41"},"nativeSrc":"9004:22:41","nodeType":"YulExpressionStatement","src":"9004:22:41"},{"nativeSrc":"9035:25:41","nodeType":"YulAssignment","src":"9035:25:41","value":{"arguments":[{"name":"headStart","nativeSrc":"9046:9:41","nodeType":"YulIdentifier","src":"9046:9:41"},{"kind":"number","nativeSrc":"9057:2:41","nodeType":"YulLiteral","src":"9057:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9042:3:41","nodeType":"YulIdentifier","src":"9042:3:41"},"nativeSrc":"9042:18:41","nodeType":"YulFunctionCall","src":"9042:18:41"},"variableNames":[{"name":"pos","nativeSrc":"9035:3:41","nodeType":"YulIdentifier","src":"9035:3:41"}]},{"nativeSrc":"9069:53:41","nodeType":"YulVariableDeclaration","src":"9069:53:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9091:9:41","nodeType":"YulIdentifier","src":"9091:9:41"},{"arguments":[{"kind":"number","nativeSrc":"9106:1:41","nodeType":"YulLiteral","src":"9106:1:41","type":"","value":"5"},{"name":"length","nativeSrc":"9109:6:41","nodeType":"YulIdentifier","src":"9109:6:41"}],"functionName":{"name":"shl","nativeSrc":"9102:3:41","nodeType":"YulIdentifier","src":"9102:3:41"},"nativeSrc":"9102:14:41","nodeType":"YulFunctionCall","src":"9102:14:41"}],"functionName":{"name":"add","nativeSrc":"9087:3:41","nodeType":"YulIdentifier","src":"9087:3:41"},"nativeSrc":"9087:30:41","nodeType":"YulFunctionCall","src":"9087:30:41"},{"kind":"number","nativeSrc":"9119:2:41","nodeType":"YulLiteral","src":"9119:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9083:3:41","nodeType":"YulIdentifier","src":"9083:3:41"},"nativeSrc":"9083:39:41","nodeType":"YulFunctionCall","src":"9083:39:41"},"variables":[{"name":"tail_2","nativeSrc":"9073:6:41","nodeType":"YulTypedName","src":"9073:6:41","type":""}]},{"nativeSrc":"9131:29:41","nodeType":"YulVariableDeclaration","src":"9131:29:41","value":{"arguments":[{"name":"value0","nativeSrc":"9149:6:41","nodeType":"YulIdentifier","src":"9149:6:41"},{"kind":"number","nativeSrc":"9157:2:41","nodeType":"YulLiteral","src":"9157:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9145:3:41","nodeType":"YulIdentifier","src":"9145:3:41"},"nativeSrc":"9145:15:41","nodeType":"YulFunctionCall","src":"9145:15:41"},"variables":[{"name":"srcPtr","nativeSrc":"9135:6:41","nodeType":"YulTypedName","src":"9135:6:41","type":""}]},{"nativeSrc":"9169:10:41","nodeType":"YulVariableDeclaration","src":"9169:10:41","value":{"kind":"number","nativeSrc":"9178:1:41","nodeType":"YulLiteral","src":"9178:1:41","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"9173:1:41","nodeType":"YulTypedName","src":"9173:1:41","type":""}]},{"body":{"nativeSrc":"9237:442:41","nodeType":"YulBlock","src":"9237:442:41","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"9258:3:41","nodeType":"YulIdentifier","src":"9258:3:41"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"9271:6:41","nodeType":"YulIdentifier","src":"9271:6:41"},{"name":"headStart","nativeSrc":"9279:9:41","nodeType":"YulIdentifier","src":"9279:9:41"}],"functionName":{"name":"sub","nativeSrc":"9267:3:41","nodeType":"YulIdentifier","src":"9267:3:41"},"nativeSrc":"9267:22:41","nodeType":"YulFunctionCall","src":"9267:22:41"},{"arguments":[{"kind":"number","nativeSrc":"9295:2:41","nodeType":"YulLiteral","src":"9295:2:41","type":"","value":"63"}],"functionName":{"name":"not","nativeSrc":"9291:3:41","nodeType":"YulIdentifier","src":"9291:3:41"},"nativeSrc":"9291:7:41","nodeType":"YulFunctionCall","src":"9291:7:41"}],"functionName":{"name":"add","nativeSrc":"9263:3:41","nodeType":"YulIdentifier","src":"9263:3:41"},"nativeSrc":"9263:36:41","nodeType":"YulFunctionCall","src":"9263:36:41"}],"functionName":{"name":"mstore","nativeSrc":"9251:6:41","nodeType":"YulIdentifier","src":"9251:6:41"},"nativeSrc":"9251:49:41","nodeType":"YulFunctionCall","src":"9251:49:41"},"nativeSrc":"9251:49:41","nodeType":"YulExpressionStatement","src":"9251:49:41"},{"nativeSrc":"9313:23:41","nodeType":"YulVariableDeclaration","src":"9313:23:41","value":{"arguments":[{"name":"srcPtr","nativeSrc":"9329:6:41","nodeType":"YulIdentifier","src":"9329:6:41"}],"functionName":{"name":"mload","nativeSrc":"9323:5:41","nodeType":"YulIdentifier","src":"9323:5:41"},"nativeSrc":"9323:13:41","nodeType":"YulFunctionCall","src":"9323:13:41"},"variables":[{"name":"_1","nativeSrc":"9317:2:41","nodeType":"YulTypedName","src":"9317:2:41","type":""}]},{"nativeSrc":"9349:25:41","nodeType":"YulVariableDeclaration","src":"9349:25:41","value":{"arguments":[{"name":"_1","nativeSrc":"9371:2:41","nodeType":"YulIdentifier","src":"9371:2:41"}],"functionName":{"name":"mload","nativeSrc":"9365:5:41","nodeType":"YulIdentifier","src":"9365:5:41"},"nativeSrc":"9365:9:41","nodeType":"YulFunctionCall","src":"9365:9:41"},"variables":[{"name":"length_1","nativeSrc":"9353:8:41","nodeType":"YulTypedName","src":"9353:8:41","type":""}]},{"expression":{"arguments":[{"name":"tail_2","nativeSrc":"9394:6:41","nodeType":"YulIdentifier","src":"9394:6:41"},{"name":"length_1","nativeSrc":"9402:8:41","nodeType":"YulIdentifier","src":"9402:8:41"}],"functionName":{"name":"mstore","nativeSrc":"9387:6:41","nodeType":"YulIdentifier","src":"9387:6:41"},"nativeSrc":"9387:24:41","nodeType":"YulFunctionCall","src":"9387:24:41"},"nativeSrc":"9387:24:41","nodeType":"YulExpressionStatement","src":"9387:24:41"},{"expression":{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"9434:6:41","nodeType":"YulIdentifier","src":"9434:6:41"},{"kind":"number","nativeSrc":"9442:2:41","nodeType":"YulLiteral","src":"9442:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9430:3:41","nodeType":"YulIdentifier","src":"9430:3:41"},"nativeSrc":"9430:15:41","nodeType":"YulFunctionCall","src":"9430:15:41"},{"arguments":[{"name":"_1","nativeSrc":"9451:2:41","nodeType":"YulIdentifier","src":"9451:2:41"},{"kind":"number","nativeSrc":"9455:2:41","nodeType":"YulLiteral","src":"9455:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9447:3:41","nodeType":"YulIdentifier","src":"9447:3:41"},"nativeSrc":"9447:11:41","nodeType":"YulFunctionCall","src":"9447:11:41"},{"name":"length_1","nativeSrc":"9460:8:41","nodeType":"YulIdentifier","src":"9460:8:41"}],"functionName":{"name":"mcopy","nativeSrc":"9424:5:41","nodeType":"YulIdentifier","src":"9424:5:41"},"nativeSrc":"9424:45:41","nodeType":"YulFunctionCall","src":"9424:45:41"},"nativeSrc":"9424:45:41","nodeType":"YulExpressionStatement","src":"9424:45:41"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"9497:6:41","nodeType":"YulIdentifier","src":"9497:6:41"},{"name":"length_1","nativeSrc":"9505:8:41","nodeType":"YulIdentifier","src":"9505:8:41"}],"functionName":{"name":"add","nativeSrc":"9493:3:41","nodeType":"YulIdentifier","src":"9493:3:41"},"nativeSrc":"9493:21:41","nodeType":"YulFunctionCall","src":"9493:21:41"},{"kind":"number","nativeSrc":"9516:2:41","nodeType":"YulLiteral","src":"9516:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9489:3:41","nodeType":"YulIdentifier","src":"9489:3:41"},"nativeSrc":"9489:30:41","nodeType":"YulFunctionCall","src":"9489:30:41"},{"kind":"number","nativeSrc":"9521:1:41","nodeType":"YulLiteral","src":"9521:1:41","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"9482:6:41","nodeType":"YulIdentifier","src":"9482:6:41"},"nativeSrc":"9482:41:41","nodeType":"YulFunctionCall","src":"9482:41:41"},"nativeSrc":"9482:41:41","nodeType":"YulExpressionStatement","src":"9482:41:41"},{"nativeSrc":"9536:63:41","nodeType":"YulAssignment","src":"9536:63:41","value":{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"9554:6:41","nodeType":"YulIdentifier","src":"9554:6:41"},{"arguments":[{"arguments":[{"name":"length_1","nativeSrc":"9570:8:41","nodeType":"YulIdentifier","src":"9570:8:41"},{"kind":"number","nativeSrc":"9580:2:41","nodeType":"YulLiteral","src":"9580:2:41","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"9566:3:41","nodeType":"YulIdentifier","src":"9566:3:41"},"nativeSrc":"9566:17:41","nodeType":"YulFunctionCall","src":"9566:17:41"},{"arguments":[{"kind":"number","nativeSrc":"9589:2:41","nodeType":"YulLiteral","src":"9589:2:41","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"9585:3:41","nodeType":"YulIdentifier","src":"9585:3:41"},"nativeSrc":"9585:7:41","nodeType":"YulFunctionCall","src":"9585:7:41"}],"functionName":{"name":"and","nativeSrc":"9562:3:41","nodeType":"YulIdentifier","src":"9562:3:41"},"nativeSrc":"9562:31:41","nodeType":"YulFunctionCall","src":"9562:31:41"}],"functionName":{"name":"add","nativeSrc":"9550:3:41","nodeType":"YulIdentifier","src":"9550:3:41"},"nativeSrc":"9550:44:41","nodeType":"YulFunctionCall","src":"9550:44:41"},{"kind":"number","nativeSrc":"9596:2:41","nodeType":"YulLiteral","src":"9596:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9546:3:41","nodeType":"YulIdentifier","src":"9546:3:41"},"nativeSrc":"9546:53:41","nodeType":"YulFunctionCall","src":"9546:53:41"},"variableNames":[{"name":"tail_2","nativeSrc":"9536:6:41","nodeType":"YulIdentifier","src":"9536:6:41"}]},{"nativeSrc":"9612:25:41","nodeType":"YulAssignment","src":"9612:25:41","value":{"arguments":[{"name":"srcPtr","nativeSrc":"9626:6:41","nodeType":"YulIdentifier","src":"9626:6:41"},{"kind":"number","nativeSrc":"9634:2:41","nodeType":"YulLiteral","src":"9634:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9622:3:41","nodeType":"YulIdentifier","src":"9622:3:41"},"nativeSrc":"9622:15:41","nodeType":"YulFunctionCall","src":"9622:15:41"},"variableNames":[{"name":"srcPtr","nativeSrc":"9612:6:41","nodeType":"YulIdentifier","src":"9612:6:41"}]},{"nativeSrc":"9650:19:41","nodeType":"YulAssignment","src":"9650:19:41","value":{"arguments":[{"name":"pos","nativeSrc":"9661:3:41","nodeType":"YulIdentifier","src":"9661:3:41"},{"kind":"number","nativeSrc":"9666:2:41","nodeType":"YulLiteral","src":"9666:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9657:3:41","nodeType":"YulIdentifier","src":"9657:3:41"},"nativeSrc":"9657:12:41","nodeType":"YulFunctionCall","src":"9657:12:41"},"variableNames":[{"name":"pos","nativeSrc":"9650:3:41","nodeType":"YulIdentifier","src":"9650:3:41"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"9199:1:41","nodeType":"YulIdentifier","src":"9199:1:41"},{"name":"length","nativeSrc":"9202:6:41","nodeType":"YulIdentifier","src":"9202:6:41"}],"functionName":{"name":"lt","nativeSrc":"9196:2:41","nodeType":"YulIdentifier","src":"9196:2:41"},"nativeSrc":"9196:13:41","nodeType":"YulFunctionCall","src":"9196:13:41"},"nativeSrc":"9188:491:41","nodeType":"YulForLoop","post":{"nativeSrc":"9210:18:41","nodeType":"YulBlock","src":"9210:18:41","statements":[{"nativeSrc":"9212:14:41","nodeType":"YulAssignment","src":"9212:14:41","value":{"arguments":[{"name":"i","nativeSrc":"9221:1:41","nodeType":"YulIdentifier","src":"9221:1:41"},{"kind":"number","nativeSrc":"9224:1:41","nodeType":"YulLiteral","src":"9224:1:41","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"9217:3:41","nodeType":"YulIdentifier","src":"9217:3:41"},"nativeSrc":"9217:9:41","nodeType":"YulFunctionCall","src":"9217:9:41"},"variableNames":[{"name":"i","nativeSrc":"9212:1:41","nodeType":"YulIdentifier","src":"9212:1:41"}]}]},"pre":{"nativeSrc":"9192:3:41","nodeType":"YulBlock","src":"9192:3:41","statements":[]},"src":"9188:491:41"},{"nativeSrc":"9688:14:41","nodeType":"YulAssignment","src":"9688:14:41","value":{"name":"tail_2","nativeSrc":"9696:6:41","nodeType":"YulIdentifier","src":"9696:6:41"},"variableNames":[{"name":"tail","nativeSrc":"9688:4:41","nodeType":"YulIdentifier","src":"9688:4:41"}]}]},"name":"abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"8692:1016:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8830:9:41","nodeType":"YulTypedName","src":"8830:9:41","type":""},{"name":"value0","nativeSrc":"8841:6:41","nodeType":"YulTypedName","src":"8841:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8852:4:41","nodeType":"YulTypedName","src":"8852:4:41","type":""}],"src":"8692:1016:41"},{"body":{"nativeSrc":"9816:424:41","nodeType":"YulBlock","src":"9816:424:41","statements":[{"body":{"nativeSrc":"9862:16:41","nodeType":"YulBlock","src":"9862:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9871:1:41","nodeType":"YulLiteral","src":"9871:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"9874:1:41","nodeType":"YulLiteral","src":"9874:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9864:6:41","nodeType":"YulIdentifier","src":"9864:6:41"},"nativeSrc":"9864:12:41","nodeType":"YulFunctionCall","src":"9864:12:41"},"nativeSrc":"9864:12:41","nodeType":"YulExpressionStatement","src":"9864:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9837:7:41","nodeType":"YulIdentifier","src":"9837:7:41"},{"name":"headStart","nativeSrc":"9846:9:41","nodeType":"YulIdentifier","src":"9846:9:41"}],"functionName":{"name":"sub","nativeSrc":"9833:3:41","nodeType":"YulIdentifier","src":"9833:3:41"},"nativeSrc":"9833:23:41","nodeType":"YulFunctionCall","src":"9833:23:41"},{"kind":"number","nativeSrc":"9858:2:41","nodeType":"YulLiteral","src":"9858:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"9829:3:41","nodeType":"YulIdentifier","src":"9829:3:41"},"nativeSrc":"9829:32:41","nodeType":"YulFunctionCall","src":"9829:32:41"},"nativeSrc":"9826:52:41","nodeType":"YulIf","src":"9826:52:41"},{"nativeSrc":"9887:36:41","nodeType":"YulVariableDeclaration","src":"9887:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"9913:9:41","nodeType":"YulIdentifier","src":"9913:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"9900:12:41","nodeType":"YulIdentifier","src":"9900:12:41"},"nativeSrc":"9900:23:41","nodeType":"YulFunctionCall","src":"9900:23:41"},"variables":[{"name":"value","nativeSrc":"9891:5:41","nodeType":"YulTypedName","src":"9891:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"9957:5:41","nodeType":"YulIdentifier","src":"9957:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"9932:24:41","nodeType":"YulIdentifier","src":"9932:24:41"},"nativeSrc":"9932:31:41","nodeType":"YulFunctionCall","src":"9932:31:41"},"nativeSrc":"9932:31:41","nodeType":"YulExpressionStatement","src":"9932:31:41"},{"nativeSrc":"9972:15:41","nodeType":"YulAssignment","src":"9972:15:41","value":{"name":"value","nativeSrc":"9982:5:41","nodeType":"YulIdentifier","src":"9982:5:41"},"variableNames":[{"name":"value0","nativeSrc":"9972:6:41","nodeType":"YulIdentifier","src":"9972:6:41"}]},{"nativeSrc":"9996:47:41","nodeType":"YulVariableDeclaration","src":"9996:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10028:9:41","nodeType":"YulIdentifier","src":"10028:9:41"},{"kind":"number","nativeSrc":"10039:2:41","nodeType":"YulLiteral","src":"10039:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10024:3:41","nodeType":"YulIdentifier","src":"10024:3:41"},"nativeSrc":"10024:18:41","nodeType":"YulFunctionCall","src":"10024:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"10011:12:41","nodeType":"YulIdentifier","src":"10011:12:41"},"nativeSrc":"10011:32:41","nodeType":"YulFunctionCall","src":"10011:32:41"},"variables":[{"name":"value_1","nativeSrc":"10000:7:41","nodeType":"YulTypedName","src":"10000:7:41","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"10077:7:41","nodeType":"YulIdentifier","src":"10077:7:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10052:24:41","nodeType":"YulIdentifier","src":"10052:24:41"},"nativeSrc":"10052:33:41","nodeType":"YulFunctionCall","src":"10052:33:41"},"nativeSrc":"10052:33:41","nodeType":"YulExpressionStatement","src":"10052:33:41"},{"nativeSrc":"10094:17:41","nodeType":"YulAssignment","src":"10094:17:41","value":{"name":"value_1","nativeSrc":"10104:7:41","nodeType":"YulIdentifier","src":"10104:7:41"},"variableNames":[{"name":"value1","nativeSrc":"10094:6:41","nodeType":"YulIdentifier","src":"10094:6:41"}]},{"nativeSrc":"10120:47:41","nodeType":"YulVariableDeclaration","src":"10120:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10152:9:41","nodeType":"YulIdentifier","src":"10152:9:41"},{"kind":"number","nativeSrc":"10163:2:41","nodeType":"YulLiteral","src":"10163:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10148:3:41","nodeType":"YulIdentifier","src":"10148:3:41"},"nativeSrc":"10148:18:41","nodeType":"YulFunctionCall","src":"10148:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"10135:12:41","nodeType":"YulIdentifier","src":"10135:12:41"},"nativeSrc":"10135:32:41","nodeType":"YulFunctionCall","src":"10135:32:41"},"variables":[{"name":"value_2","nativeSrc":"10124:7:41","nodeType":"YulTypedName","src":"10124:7:41","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"10200:7:41","nodeType":"YulIdentifier","src":"10200:7:41"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"10176:23:41","nodeType":"YulIdentifier","src":"10176:23:41"},"nativeSrc":"10176:32:41","nodeType":"YulFunctionCall","src":"10176:32:41"},"nativeSrc":"10176:32:41","nodeType":"YulExpressionStatement","src":"10176:32:41"},{"nativeSrc":"10217:17:41","nodeType":"YulAssignment","src":"10217:17:41","value":{"name":"value_2","nativeSrc":"10227:7:41","nodeType":"YulIdentifier","src":"10227:7:41"},"variableNames":[{"name":"value2","nativeSrc":"10217:6:41","nodeType":"YulIdentifier","src":"10217:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_bytes4","nativeSrc":"9713:527:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9766:9:41","nodeType":"YulTypedName","src":"9766:9:41","type":""},{"name":"dataEnd","nativeSrc":"9777:7:41","nodeType":"YulTypedName","src":"9777:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9789:6:41","nodeType":"YulTypedName","src":"9789:6:41","type":""},{"name":"value1","nativeSrc":"9797:6:41","nodeType":"YulTypedName","src":"9797:6:41","type":""},{"name":"value2","nativeSrc":"9805:6:41","nodeType":"YulTypedName","src":"9805:6:41","type":""}],"src":"9713:527:41"},{"body":{"nativeSrc":"10366:152:41","nodeType":"YulBlock","src":"10366:152:41","statements":[{"nativeSrc":"10376:26:41","nodeType":"YulAssignment","src":"10376:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"10388:9:41","nodeType":"YulIdentifier","src":"10388:9:41"},{"kind":"number","nativeSrc":"10399:2:41","nodeType":"YulLiteral","src":"10399:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10384:3:41","nodeType":"YulIdentifier","src":"10384:3:41"},"nativeSrc":"10384:18:41","nodeType":"YulFunctionCall","src":"10384:18:41"},"variableNames":[{"name":"tail","nativeSrc":"10376:4:41","nodeType":"YulIdentifier","src":"10376:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10418:9:41","nodeType":"YulIdentifier","src":"10418:9:41"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"10443:6:41","nodeType":"YulIdentifier","src":"10443:6:41"}],"functionName":{"name":"iszero","nativeSrc":"10436:6:41","nodeType":"YulIdentifier","src":"10436:6:41"},"nativeSrc":"10436:14:41","nodeType":"YulFunctionCall","src":"10436:14:41"}],"functionName":{"name":"iszero","nativeSrc":"10429:6:41","nodeType":"YulIdentifier","src":"10429:6:41"},"nativeSrc":"10429:22:41","nodeType":"YulFunctionCall","src":"10429:22:41"}],"functionName":{"name":"mstore","nativeSrc":"10411:6:41","nodeType":"YulIdentifier","src":"10411:6:41"},"nativeSrc":"10411:41:41","nodeType":"YulFunctionCall","src":"10411:41:41"},"nativeSrc":"10411:41:41","nodeType":"YulExpressionStatement","src":"10411:41:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10472:9:41","nodeType":"YulIdentifier","src":"10472:9:41"},{"kind":"number","nativeSrc":"10483:2:41","nodeType":"YulLiteral","src":"10483:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10468:3:41","nodeType":"YulIdentifier","src":"10468:3:41"},"nativeSrc":"10468:18:41","nodeType":"YulFunctionCall","src":"10468:18:41"},{"arguments":[{"name":"value1","nativeSrc":"10492:6:41","nodeType":"YulIdentifier","src":"10492:6:41"},{"kind":"number","nativeSrc":"10500:10:41","nodeType":"YulLiteral","src":"10500:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"10488:3:41","nodeType":"YulIdentifier","src":"10488:3:41"},"nativeSrc":"10488:23:41","nodeType":"YulFunctionCall","src":"10488:23:41"}],"functionName":{"name":"mstore","nativeSrc":"10461:6:41","nodeType":"YulIdentifier","src":"10461:6:41"},"nativeSrc":"10461:51:41","nodeType":"YulFunctionCall","src":"10461:51:41"},"nativeSrc":"10461:51:41","nodeType":"YulExpressionStatement","src":"10461:51:41"}]},"name":"abi_encode_tuple_t_bool_t_uint32__to_t_bool_t_uint32__fromStack_reversed","nativeSrc":"10245:273:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10327:9:41","nodeType":"YulTypedName","src":"10327:9:41","type":""},{"name":"value1","nativeSrc":"10338:6:41","nodeType":"YulTypedName","src":"10338:6:41","type":""},{"name":"value0","nativeSrc":"10346:6:41","nodeType":"YulTypedName","src":"10346:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10357:4:41","nodeType":"YulTypedName","src":"10357:4:41","type":""}],"src":"10245:273:41"},{"body":{"nativeSrc":"10609:233:41","nodeType":"YulBlock","src":"10609:233:41","statements":[{"body":{"nativeSrc":"10655:16:41","nodeType":"YulBlock","src":"10655:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10664:1:41","nodeType":"YulLiteral","src":"10664:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"10667:1:41","nodeType":"YulLiteral","src":"10667:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10657:6:41","nodeType":"YulIdentifier","src":"10657:6:41"},"nativeSrc":"10657:12:41","nodeType":"YulFunctionCall","src":"10657:12:41"},"nativeSrc":"10657:12:41","nodeType":"YulExpressionStatement","src":"10657:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10630:7:41","nodeType":"YulIdentifier","src":"10630:7:41"},{"name":"headStart","nativeSrc":"10639:9:41","nodeType":"YulIdentifier","src":"10639:9:41"}],"functionName":{"name":"sub","nativeSrc":"10626:3:41","nodeType":"YulIdentifier","src":"10626:3:41"},"nativeSrc":"10626:23:41","nodeType":"YulFunctionCall","src":"10626:23:41"},{"kind":"number","nativeSrc":"10651:2:41","nodeType":"YulLiteral","src":"10651:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"10622:3:41","nodeType":"YulIdentifier","src":"10622:3:41"},"nativeSrc":"10622:32:41","nodeType":"YulFunctionCall","src":"10622:32:41"},"nativeSrc":"10619:52:41","nodeType":"YulIf","src":"10619:52:41"},{"nativeSrc":"10680:36:41","nodeType":"YulVariableDeclaration","src":"10680:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"10706:9:41","nodeType":"YulIdentifier","src":"10706:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"10693:12:41","nodeType":"YulIdentifier","src":"10693:12:41"},"nativeSrc":"10693:23:41","nodeType":"YulFunctionCall","src":"10693:23:41"},"variables":[{"name":"value","nativeSrc":"10684:5:41","nodeType":"YulTypedName","src":"10684:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10750:5:41","nodeType":"YulIdentifier","src":"10750:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10725:24:41","nodeType":"YulIdentifier","src":"10725:24:41"},"nativeSrc":"10725:31:41","nodeType":"YulFunctionCall","src":"10725:31:41"},"nativeSrc":"10725:31:41","nodeType":"YulExpressionStatement","src":"10725:31:41"},{"nativeSrc":"10765:15:41","nodeType":"YulAssignment","src":"10765:15:41","value":{"name":"value","nativeSrc":"10775:5:41","nodeType":"YulIdentifier","src":"10775:5:41"},"variableNames":[{"name":"value0","nativeSrc":"10765:6:41","nodeType":"YulIdentifier","src":"10765:6:41"}]},{"nativeSrc":"10789:47:41","nodeType":"YulAssignment","src":"10789:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10821:9:41","nodeType":"YulIdentifier","src":"10821:9:41"},{"kind":"number","nativeSrc":"10832:2:41","nodeType":"YulLiteral","src":"10832:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10817:3:41","nodeType":"YulIdentifier","src":"10817:3:41"},"nativeSrc":"10817:18:41","nodeType":"YulFunctionCall","src":"10817:18:41"}],"functionName":{"name":"abi_decode_uint32","nativeSrc":"10799:17:41","nodeType":"YulIdentifier","src":"10799:17:41"},"nativeSrc":"10799:37:41","nodeType":"YulFunctionCall","src":"10799:37:41"},"variableNames":[{"name":"value1","nativeSrc":"10789:6:41","nodeType":"YulIdentifier","src":"10789:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_uint32","nativeSrc":"10523:319:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10567:9:41","nodeType":"YulTypedName","src":"10567:9:41","type":""},{"name":"dataEnd","nativeSrc":"10578:7:41","nodeType":"YulTypedName","src":"10578:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10590:6:41","nodeType":"YulTypedName","src":"10590:6:41","type":""},{"name":"value1","nativeSrc":"10598:6:41","nodeType":"YulTypedName","src":"10598:6:41","type":""}],"src":"10523:319:41"},{"body":{"nativeSrc":"10969:598:41","nodeType":"YulBlock","src":"10969:598:41","statements":[{"body":{"nativeSrc":"11015:16:41","nodeType":"YulBlock","src":"11015:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11024:1:41","nodeType":"YulLiteral","src":"11024:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"11027:1:41","nodeType":"YulLiteral","src":"11027:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11017:6:41","nodeType":"YulIdentifier","src":"11017:6:41"},"nativeSrc":"11017:12:41","nodeType":"YulFunctionCall","src":"11017:12:41"},"nativeSrc":"11017:12:41","nodeType":"YulExpressionStatement","src":"11017:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10990:7:41","nodeType":"YulIdentifier","src":"10990:7:41"},{"name":"headStart","nativeSrc":"10999:9:41","nodeType":"YulIdentifier","src":"10999:9:41"}],"functionName":{"name":"sub","nativeSrc":"10986:3:41","nodeType":"YulIdentifier","src":"10986:3:41"},"nativeSrc":"10986:23:41","nodeType":"YulFunctionCall","src":"10986:23:41"},{"kind":"number","nativeSrc":"11011:2:41","nodeType":"YulLiteral","src":"11011:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"10982:3:41","nodeType":"YulIdentifier","src":"10982:3:41"},"nativeSrc":"10982:32:41","nodeType":"YulFunctionCall","src":"10982:32:41"},"nativeSrc":"10979:52:41","nodeType":"YulIf","src":"10979:52:41"},{"nativeSrc":"11040:36:41","nodeType":"YulVariableDeclaration","src":"11040:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"11066:9:41","nodeType":"YulIdentifier","src":"11066:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"11053:12:41","nodeType":"YulIdentifier","src":"11053:12:41"},"nativeSrc":"11053:23:41","nodeType":"YulFunctionCall","src":"11053:23:41"},"variables":[{"name":"value","nativeSrc":"11044:5:41","nodeType":"YulTypedName","src":"11044:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"11110:5:41","nodeType":"YulIdentifier","src":"11110:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"11085:24:41","nodeType":"YulIdentifier","src":"11085:24:41"},"nativeSrc":"11085:31:41","nodeType":"YulFunctionCall","src":"11085:31:41"},"nativeSrc":"11085:31:41","nodeType":"YulExpressionStatement","src":"11085:31:41"},{"nativeSrc":"11125:15:41","nodeType":"YulAssignment","src":"11125:15:41","value":{"name":"value","nativeSrc":"11135:5:41","nodeType":"YulIdentifier","src":"11135:5:41"},"variableNames":[{"name":"value0","nativeSrc":"11125:6:41","nodeType":"YulIdentifier","src":"11125:6:41"}]},{"nativeSrc":"11149:46:41","nodeType":"YulVariableDeclaration","src":"11149:46:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11180:9:41","nodeType":"YulIdentifier","src":"11180:9:41"},{"kind":"number","nativeSrc":"11191:2:41","nodeType":"YulLiteral","src":"11191:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11176:3:41","nodeType":"YulIdentifier","src":"11176:3:41"},"nativeSrc":"11176:18:41","nodeType":"YulFunctionCall","src":"11176:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"11163:12:41","nodeType":"YulIdentifier","src":"11163:12:41"},"nativeSrc":"11163:32:41","nodeType":"YulFunctionCall","src":"11163:32:41"},"variables":[{"name":"offset","nativeSrc":"11153:6:41","nodeType":"YulTypedName","src":"11153:6:41","type":""}]},{"body":{"nativeSrc":"11238:16:41","nodeType":"YulBlock","src":"11238:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11247:1:41","nodeType":"YulLiteral","src":"11247:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"11250:1:41","nodeType":"YulLiteral","src":"11250:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11240:6:41","nodeType":"YulIdentifier","src":"11240:6:41"},"nativeSrc":"11240:12:41","nodeType":"YulFunctionCall","src":"11240:12:41"},"nativeSrc":"11240:12:41","nodeType":"YulExpressionStatement","src":"11240:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"11210:6:41","nodeType":"YulIdentifier","src":"11210:6:41"},{"kind":"number","nativeSrc":"11218:18:41","nodeType":"YulLiteral","src":"11218:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"11207:2:41","nodeType":"YulIdentifier","src":"11207:2:41"},"nativeSrc":"11207:30:41","nodeType":"YulFunctionCall","src":"11207:30:41"},"nativeSrc":"11204:50:41","nodeType":"YulIf","src":"11204:50:41"},{"nativeSrc":"11263:84:41","nodeType":"YulVariableDeclaration","src":"11263:84:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11319:9:41","nodeType":"YulIdentifier","src":"11319:9:41"},{"name":"offset","nativeSrc":"11330:6:41","nodeType":"YulIdentifier","src":"11330:6:41"}],"functionName":{"name":"add","nativeSrc":"11315:3:41","nodeType":"YulIdentifier","src":"11315:3:41"},"nativeSrc":"11315:22:41","nodeType":"YulFunctionCall","src":"11315:22:41"},{"name":"dataEnd","nativeSrc":"11339:7:41","nodeType":"YulIdentifier","src":"11339:7:41"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"11289:25:41","nodeType":"YulIdentifier","src":"11289:25:41"},"nativeSrc":"11289:58:41","nodeType":"YulFunctionCall","src":"11289:58:41"},"variables":[{"name":"value1_1","nativeSrc":"11267:8:41","nodeType":"YulTypedName","src":"11267:8:41","type":""},{"name":"value2_1","nativeSrc":"11277:8:41","nodeType":"YulTypedName","src":"11277:8:41","type":""}]},{"nativeSrc":"11356:18:41","nodeType":"YulAssignment","src":"11356:18:41","value":{"name":"value1_1","nativeSrc":"11366:8:41","nodeType":"YulIdentifier","src":"11366:8:41"},"variableNames":[{"name":"value1","nativeSrc":"11356:6:41","nodeType":"YulIdentifier","src":"11356:6:41"}]},{"nativeSrc":"11383:18:41","nodeType":"YulAssignment","src":"11383:18:41","value":{"name":"value2_1","nativeSrc":"11393:8:41","nodeType":"YulIdentifier","src":"11393:8:41"},"variableNames":[{"name":"value2","nativeSrc":"11383:6:41","nodeType":"YulIdentifier","src":"11383:6:41"}]},{"nativeSrc":"11410:47:41","nodeType":"YulVariableDeclaration","src":"11410:47:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11442:9:41","nodeType":"YulIdentifier","src":"11442:9:41"},{"kind":"number","nativeSrc":"11453:2:41","nodeType":"YulLiteral","src":"11453:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11438:3:41","nodeType":"YulIdentifier","src":"11438:3:41"},"nativeSrc":"11438:18:41","nodeType":"YulFunctionCall","src":"11438:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"11425:12:41","nodeType":"YulIdentifier","src":"11425:12:41"},"nativeSrc":"11425:32:41","nodeType":"YulFunctionCall","src":"11425:32:41"},"variables":[{"name":"value_1","nativeSrc":"11414:7:41","nodeType":"YulTypedName","src":"11414:7:41","type":""}]},{"body":{"nativeSrc":"11519:16:41","nodeType":"YulBlock","src":"11519:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11528:1:41","nodeType":"YulLiteral","src":"11528:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"11531:1:41","nodeType":"YulLiteral","src":"11531:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11521:6:41","nodeType":"YulIdentifier","src":"11521:6:41"},"nativeSrc":"11521:12:41","nodeType":"YulFunctionCall","src":"11521:12:41"},"nativeSrc":"11521:12:41","nodeType":"YulExpressionStatement","src":"11521:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"11479:7:41","nodeType":"YulIdentifier","src":"11479:7:41"},{"arguments":[{"name":"value_1","nativeSrc":"11492:7:41","nodeType":"YulIdentifier","src":"11492:7:41"},{"kind":"number","nativeSrc":"11501:14:41","nodeType":"YulLiteral","src":"11501:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"11488:3:41","nodeType":"YulIdentifier","src":"11488:3:41"},"nativeSrc":"11488:28:41","nodeType":"YulFunctionCall","src":"11488:28:41"}],"functionName":{"name":"eq","nativeSrc":"11476:2:41","nodeType":"YulIdentifier","src":"11476:2:41"},"nativeSrc":"11476:41:41","nodeType":"YulFunctionCall","src":"11476:41:41"}],"functionName":{"name":"iszero","nativeSrc":"11469:6:41","nodeType":"YulIdentifier","src":"11469:6:41"},"nativeSrc":"11469:49:41","nodeType":"YulFunctionCall","src":"11469:49:41"},"nativeSrc":"11466:69:41","nodeType":"YulIf","src":"11466:69:41"},{"nativeSrc":"11544:17:41","nodeType":"YulAssignment","src":"11544:17:41","value":{"name":"value_1","nativeSrc":"11554:7:41","nodeType":"YulIdentifier","src":"11554:7:41"},"variableNames":[{"name":"value3","nativeSrc":"11544:6:41","nodeType":"YulIdentifier","src":"11544:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptrt_uint48","nativeSrc":"10847:720:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10911:9:41","nodeType":"YulTypedName","src":"10911:9:41","type":""},{"name":"dataEnd","nativeSrc":"10922:7:41","nodeType":"YulTypedName","src":"10922:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10934:6:41","nodeType":"YulTypedName","src":"10934:6:41","type":""},{"name":"value1","nativeSrc":"10942:6:41","nodeType":"YulTypedName","src":"10942:6:41","type":""},{"name":"value2","nativeSrc":"10950:6:41","nodeType":"YulTypedName","src":"10950:6:41","type":""},{"name":"value3","nativeSrc":"10958:6:41","nodeType":"YulTypedName","src":"10958:6:41","type":""}],"src":"10847:720:41"},{"body":{"nativeSrc":"11699:136:41","nodeType":"YulBlock","src":"11699:136:41","statements":[{"nativeSrc":"11709:26:41","nodeType":"YulAssignment","src":"11709:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"11721:9:41","nodeType":"YulIdentifier","src":"11721:9:41"},{"kind":"number","nativeSrc":"11732:2:41","nodeType":"YulLiteral","src":"11732:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11717:3:41","nodeType":"YulIdentifier","src":"11717:3:41"},"nativeSrc":"11717:18:41","nodeType":"YulFunctionCall","src":"11717:18:41"},"variableNames":[{"name":"tail","nativeSrc":"11709:4:41","nodeType":"YulIdentifier","src":"11709:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11751:9:41","nodeType":"YulIdentifier","src":"11751:9:41"},{"name":"value0","nativeSrc":"11762:6:41","nodeType":"YulIdentifier","src":"11762:6:41"}],"functionName":{"name":"mstore","nativeSrc":"11744:6:41","nodeType":"YulIdentifier","src":"11744:6:41"},"nativeSrc":"11744:25:41","nodeType":"YulFunctionCall","src":"11744:25:41"},"nativeSrc":"11744:25:41","nodeType":"YulExpressionStatement","src":"11744:25:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11789:9:41","nodeType":"YulIdentifier","src":"11789:9:41"},{"kind":"number","nativeSrc":"11800:2:41","nodeType":"YulLiteral","src":"11800:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11785:3:41","nodeType":"YulIdentifier","src":"11785:3:41"},"nativeSrc":"11785:18:41","nodeType":"YulFunctionCall","src":"11785:18:41"},{"arguments":[{"name":"value1","nativeSrc":"11809:6:41","nodeType":"YulIdentifier","src":"11809:6:41"},{"kind":"number","nativeSrc":"11817:10:41","nodeType":"YulLiteral","src":"11817:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"11805:3:41","nodeType":"YulIdentifier","src":"11805:3:41"},"nativeSrc":"11805:23:41","nodeType":"YulFunctionCall","src":"11805:23:41"}],"functionName":{"name":"mstore","nativeSrc":"11778:6:41","nodeType":"YulIdentifier","src":"11778:6:41"},"nativeSrc":"11778:51:41","nodeType":"YulFunctionCall","src":"11778:51:41"},"nativeSrc":"11778:51:41","nodeType":"YulExpressionStatement","src":"11778:51:41"}]},"name":"abi_encode_tuple_t_bytes32_t_uint32__to_t_bytes32_t_uint32__fromStack_reversed","nativeSrc":"11572:263:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11660:9:41","nodeType":"YulTypedName","src":"11660:9:41","type":""},{"name":"value1","nativeSrc":"11671:6:41","nodeType":"YulTypedName","src":"11671:6:41","type":""},{"name":"value0","nativeSrc":"11679:6:41","nodeType":"YulTypedName","src":"11679:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11690:4:41","nodeType":"YulTypedName","src":"11690:4:41","type":""}],"src":"11572:263:41"},{"body":{"nativeSrc":"11872:95:41","nodeType":"YulBlock","src":"11872:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11889:1:41","nodeType":"YulLiteral","src":"11889:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"11896:3:41","nodeType":"YulLiteral","src":"11896:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"11901:10:41","nodeType":"YulLiteral","src":"11901:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"11892:3:41","nodeType":"YulIdentifier","src":"11892:3:41"},"nativeSrc":"11892:20:41","nodeType":"YulFunctionCall","src":"11892:20:41"}],"functionName":{"name":"mstore","nativeSrc":"11882:6:41","nodeType":"YulIdentifier","src":"11882:6:41"},"nativeSrc":"11882:31:41","nodeType":"YulFunctionCall","src":"11882:31:41"},"nativeSrc":"11882:31:41","nodeType":"YulExpressionStatement","src":"11882:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11929:1:41","nodeType":"YulLiteral","src":"11929:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"11932:4:41","nodeType":"YulLiteral","src":"11932:4:41","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"11922:6:41","nodeType":"YulIdentifier","src":"11922:6:41"},"nativeSrc":"11922:15:41","nodeType":"YulFunctionCall","src":"11922:15:41"},"nativeSrc":"11922:15:41","nodeType":"YulExpressionStatement","src":"11922:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11953:1:41","nodeType":"YulLiteral","src":"11953:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"11956:4:41","nodeType":"YulLiteral","src":"11956:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"11946:6:41","nodeType":"YulIdentifier","src":"11946:6:41"},"nativeSrc":"11946:15:41","nodeType":"YulFunctionCall","src":"11946:15:41"},"nativeSrc":"11946:15:41","nodeType":"YulExpressionStatement","src":"11946:15:41"}]},"name":"panic_error_0x32","nativeSrc":"11840:127:41","nodeType":"YulFunctionDefinition","src":"11840:127:41"},{"body":{"nativeSrc":"12041:176:41","nodeType":"YulBlock","src":"12041:176:41","statements":[{"body":{"nativeSrc":"12087:16:41","nodeType":"YulBlock","src":"12087:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12096:1:41","nodeType":"YulLiteral","src":"12096:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"12099:1:41","nodeType":"YulLiteral","src":"12099:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12089:6:41","nodeType":"YulIdentifier","src":"12089:6:41"},"nativeSrc":"12089:12:41","nodeType":"YulFunctionCall","src":"12089:12:41"},"nativeSrc":"12089:12:41","nodeType":"YulExpressionStatement","src":"12089:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12062:7:41","nodeType":"YulIdentifier","src":"12062:7:41"},{"name":"headStart","nativeSrc":"12071:9:41","nodeType":"YulIdentifier","src":"12071:9:41"}],"functionName":{"name":"sub","nativeSrc":"12058:3:41","nodeType":"YulIdentifier","src":"12058:3:41"},"nativeSrc":"12058:23:41","nodeType":"YulFunctionCall","src":"12058:23:41"},{"kind":"number","nativeSrc":"12083:2:41","nodeType":"YulLiteral","src":"12083:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"12054:3:41","nodeType":"YulIdentifier","src":"12054:3:41"},"nativeSrc":"12054:32:41","nodeType":"YulFunctionCall","src":"12054:32:41"},"nativeSrc":"12051:52:41","nodeType":"YulIf","src":"12051:52:41"},{"nativeSrc":"12112:36:41","nodeType":"YulVariableDeclaration","src":"12112:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"12138:9:41","nodeType":"YulIdentifier","src":"12138:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"12125:12:41","nodeType":"YulIdentifier","src":"12125:12:41"},"nativeSrc":"12125:23:41","nodeType":"YulFunctionCall","src":"12125:23:41"},"variables":[{"name":"value","nativeSrc":"12116:5:41","nodeType":"YulTypedName","src":"12116:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12181:5:41","nodeType":"YulIdentifier","src":"12181:5:41"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"12157:23:41","nodeType":"YulIdentifier","src":"12157:23:41"},"nativeSrc":"12157:30:41","nodeType":"YulFunctionCall","src":"12157:30:41"},"nativeSrc":"12157:30:41","nodeType":"YulExpressionStatement","src":"12157:30:41"},{"nativeSrc":"12196:15:41","nodeType":"YulAssignment","src":"12196:15:41","value":{"name":"value","nativeSrc":"12206:5:41","nodeType":"YulIdentifier","src":"12206:5:41"},"variableNames":[{"name":"value0","nativeSrc":"12196:6:41","nodeType":"YulIdentifier","src":"12196:6:41"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"11972:245:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12007:9:41","nodeType":"YulTypedName","src":"12007:9:41","type":""},{"name":"dataEnd","nativeSrc":"12018:7:41","nodeType":"YulTypedName","src":"12018:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12030:6:41","nodeType":"YulTypedName","src":"12030:6:41","type":""}],"src":"11972:245:41"},{"body":{"nativeSrc":"12323:102:41","nodeType":"YulBlock","src":"12323:102:41","statements":[{"nativeSrc":"12333:26:41","nodeType":"YulAssignment","src":"12333:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"12345:9:41","nodeType":"YulIdentifier","src":"12345:9:41"},{"kind":"number","nativeSrc":"12356:2:41","nodeType":"YulLiteral","src":"12356:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12341:3:41","nodeType":"YulIdentifier","src":"12341:3:41"},"nativeSrc":"12341:18:41","nodeType":"YulFunctionCall","src":"12341:18:41"},"variableNames":[{"name":"tail","nativeSrc":"12333:4:41","nodeType":"YulIdentifier","src":"12333:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12375:9:41","nodeType":"YulIdentifier","src":"12375:9:41"},{"arguments":[{"name":"value0","nativeSrc":"12390:6:41","nodeType":"YulIdentifier","src":"12390:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12406:3:41","nodeType":"YulLiteral","src":"12406:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"12411:1:41","nodeType":"YulLiteral","src":"12411:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12402:3:41","nodeType":"YulIdentifier","src":"12402:3:41"},"nativeSrc":"12402:11:41","nodeType":"YulFunctionCall","src":"12402:11:41"},{"kind":"number","nativeSrc":"12415:1:41","nodeType":"YulLiteral","src":"12415:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12398:3:41","nodeType":"YulIdentifier","src":"12398:3:41"},"nativeSrc":"12398:19:41","nodeType":"YulFunctionCall","src":"12398:19:41"}],"functionName":{"name":"and","nativeSrc":"12386:3:41","nodeType":"YulIdentifier","src":"12386:3:41"},"nativeSrc":"12386:32:41","nodeType":"YulFunctionCall","src":"12386:32:41"}],"functionName":{"name":"mstore","nativeSrc":"12368:6:41","nodeType":"YulIdentifier","src":"12368:6:41"},"nativeSrc":"12368:51:41","nodeType":"YulFunctionCall","src":"12368:51:41"},"nativeSrc":"12368:51:41","nodeType":"YulExpressionStatement","src":"12368:51:41"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"12222:203:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12292:9:41","nodeType":"YulTypedName","src":"12292:9:41","type":""},{"name":"value0","nativeSrc":"12303:6:41","nodeType":"YulTypedName","src":"12303:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12314:4:41","nodeType":"YulTypedName","src":"12314:4:41","type":""}],"src":"12222:203:41"},{"body":{"nativeSrc":"12585:241:41","nodeType":"YulBlock","src":"12585:241:41","statements":[{"nativeSrc":"12595:26:41","nodeType":"YulAssignment","src":"12595:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"12607:9:41","nodeType":"YulIdentifier","src":"12607:9:41"},{"kind":"number","nativeSrc":"12618:2:41","nodeType":"YulLiteral","src":"12618:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12603:3:41","nodeType":"YulIdentifier","src":"12603:3:41"},"nativeSrc":"12603:18:41","nodeType":"YulFunctionCall","src":"12603:18:41"},"variableNames":[{"name":"tail","nativeSrc":"12595:4:41","nodeType":"YulIdentifier","src":"12595:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12637:9:41","nodeType":"YulIdentifier","src":"12637:9:41"},{"arguments":[{"name":"value0","nativeSrc":"12652:6:41","nodeType":"YulIdentifier","src":"12652:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12668:3:41","nodeType":"YulLiteral","src":"12668:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"12673:1:41","nodeType":"YulLiteral","src":"12673:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12664:3:41","nodeType":"YulIdentifier","src":"12664:3:41"},"nativeSrc":"12664:11:41","nodeType":"YulFunctionCall","src":"12664:11:41"},{"kind":"number","nativeSrc":"12677:1:41","nodeType":"YulLiteral","src":"12677:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12660:3:41","nodeType":"YulIdentifier","src":"12660:3:41"},"nativeSrc":"12660:19:41","nodeType":"YulFunctionCall","src":"12660:19:41"}],"functionName":{"name":"and","nativeSrc":"12648:3:41","nodeType":"YulIdentifier","src":"12648:3:41"},"nativeSrc":"12648:32:41","nodeType":"YulFunctionCall","src":"12648:32:41"}],"functionName":{"name":"mstore","nativeSrc":"12630:6:41","nodeType":"YulIdentifier","src":"12630:6:41"},"nativeSrc":"12630:51:41","nodeType":"YulFunctionCall","src":"12630:51:41"},"nativeSrc":"12630:51:41","nodeType":"YulExpressionStatement","src":"12630:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12701:9:41","nodeType":"YulIdentifier","src":"12701:9:41"},{"kind":"number","nativeSrc":"12712:2:41","nodeType":"YulLiteral","src":"12712:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12697:3:41","nodeType":"YulIdentifier","src":"12697:3:41"},"nativeSrc":"12697:18:41","nodeType":"YulFunctionCall","src":"12697:18:41"},{"arguments":[{"name":"value1","nativeSrc":"12721:6:41","nodeType":"YulIdentifier","src":"12721:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12737:3:41","nodeType":"YulLiteral","src":"12737:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"12742:1:41","nodeType":"YulLiteral","src":"12742:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12733:3:41","nodeType":"YulIdentifier","src":"12733:3:41"},"nativeSrc":"12733:11:41","nodeType":"YulFunctionCall","src":"12733:11:41"},{"kind":"number","nativeSrc":"12746:1:41","nodeType":"YulLiteral","src":"12746:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12729:3:41","nodeType":"YulIdentifier","src":"12729:3:41"},"nativeSrc":"12729:19:41","nodeType":"YulFunctionCall","src":"12729:19:41"}],"functionName":{"name":"and","nativeSrc":"12717:3:41","nodeType":"YulIdentifier","src":"12717:3:41"},"nativeSrc":"12717:32:41","nodeType":"YulFunctionCall","src":"12717:32:41"}],"functionName":{"name":"mstore","nativeSrc":"12690:6:41","nodeType":"YulIdentifier","src":"12690:6:41"},"nativeSrc":"12690:60:41","nodeType":"YulFunctionCall","src":"12690:60:41"},"nativeSrc":"12690:60:41","nodeType":"YulExpressionStatement","src":"12690:60:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12770:9:41","nodeType":"YulIdentifier","src":"12770:9:41"},{"kind":"number","nativeSrc":"12781:2:41","nodeType":"YulLiteral","src":"12781:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12766:3:41","nodeType":"YulIdentifier","src":"12766:3:41"},"nativeSrc":"12766:18:41","nodeType":"YulFunctionCall","src":"12766:18:41"},{"arguments":[{"name":"value2","nativeSrc":"12790:6:41","nodeType":"YulIdentifier","src":"12790:6:41"},{"arguments":[{"kind":"number","nativeSrc":"12802:3:41","nodeType":"YulLiteral","src":"12802:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"12807:10:41","nodeType":"YulLiteral","src":"12807:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"12798:3:41","nodeType":"YulIdentifier","src":"12798:3:41"},"nativeSrc":"12798:20:41","nodeType":"YulFunctionCall","src":"12798:20:41"}],"functionName":{"name":"and","nativeSrc":"12786:3:41","nodeType":"YulIdentifier","src":"12786:3:41"},"nativeSrc":"12786:33:41","nodeType":"YulFunctionCall","src":"12786:33:41"}],"functionName":{"name":"mstore","nativeSrc":"12759:6:41","nodeType":"YulIdentifier","src":"12759:6:41"},"nativeSrc":"12759:61:41","nodeType":"YulFunctionCall","src":"12759:61:41"},"nativeSrc":"12759:61:41","nodeType":"YulExpressionStatement","src":"12759:61:41"}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"12430:396:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12538:9:41","nodeType":"YulTypedName","src":"12538:9:41","type":""},{"name":"value2","nativeSrc":"12549:6:41","nodeType":"YulTypedName","src":"12549:6:41","type":""},{"name":"value1","nativeSrc":"12557:6:41","nodeType":"YulTypedName","src":"12557:6:41","type":""},{"name":"value0","nativeSrc":"12565:6:41","nodeType":"YulTypedName","src":"12565:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12576:4:41","nodeType":"YulTypedName","src":"12576:4:41","type":""}],"src":"12430:396:41"},{"body":{"nativeSrc":"12898:200:41","nodeType":"YulBlock","src":"12898:200:41","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"12915:3:41","nodeType":"YulIdentifier","src":"12915:3:41"},{"name":"length","nativeSrc":"12920:6:41","nodeType":"YulIdentifier","src":"12920:6:41"}],"functionName":{"name":"mstore","nativeSrc":"12908:6:41","nodeType":"YulIdentifier","src":"12908:6:41"},"nativeSrc":"12908:19:41","nodeType":"YulFunctionCall","src":"12908:19:41"},"nativeSrc":"12908:19:41","nodeType":"YulExpressionStatement","src":"12908:19:41"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"12953:3:41","nodeType":"YulIdentifier","src":"12953:3:41"},{"kind":"number","nativeSrc":"12958:4:41","nodeType":"YulLiteral","src":"12958:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12949:3:41","nodeType":"YulIdentifier","src":"12949:3:41"},"nativeSrc":"12949:14:41","nodeType":"YulFunctionCall","src":"12949:14:41"},{"name":"start","nativeSrc":"12965:5:41","nodeType":"YulIdentifier","src":"12965:5:41"},{"name":"length","nativeSrc":"12972:6:41","nodeType":"YulIdentifier","src":"12972:6:41"}],"functionName":{"name":"calldatacopy","nativeSrc":"12936:12:41","nodeType":"YulIdentifier","src":"12936:12:41"},"nativeSrc":"12936:43:41","nodeType":"YulFunctionCall","src":"12936:43:41"},"nativeSrc":"12936:43:41","nodeType":"YulExpressionStatement","src":"12936:43:41"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"13003:3:41","nodeType":"YulIdentifier","src":"13003:3:41"},{"name":"length","nativeSrc":"13008:6:41","nodeType":"YulIdentifier","src":"13008:6:41"}],"functionName":{"name":"add","nativeSrc":"12999:3:41","nodeType":"YulIdentifier","src":"12999:3:41"},"nativeSrc":"12999:16:41","nodeType":"YulFunctionCall","src":"12999:16:41"},{"kind":"number","nativeSrc":"13017:4:41","nodeType":"YulLiteral","src":"13017:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12995:3:41","nodeType":"YulIdentifier","src":"12995:3:41"},"nativeSrc":"12995:27:41","nodeType":"YulFunctionCall","src":"12995:27:41"},{"kind":"number","nativeSrc":"13024:1:41","nodeType":"YulLiteral","src":"13024:1:41","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"12988:6:41","nodeType":"YulIdentifier","src":"12988:6:41"},"nativeSrc":"12988:38:41","nodeType":"YulFunctionCall","src":"12988:38:41"},"nativeSrc":"12988:38:41","nodeType":"YulExpressionStatement","src":"12988:38:41"},{"nativeSrc":"13035:57:41","nodeType":"YulAssignment","src":"13035:57:41","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"13050:3:41","nodeType":"YulIdentifier","src":"13050:3:41"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"13063:6:41","nodeType":"YulIdentifier","src":"13063:6:41"},{"kind":"number","nativeSrc":"13071:2:41","nodeType":"YulLiteral","src":"13071:2:41","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"13059:3:41","nodeType":"YulIdentifier","src":"13059:3:41"},"nativeSrc":"13059:15:41","nodeType":"YulFunctionCall","src":"13059:15:41"},{"arguments":[{"kind":"number","nativeSrc":"13080:2:41","nodeType":"YulLiteral","src":"13080:2:41","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"13076:3:41","nodeType":"YulIdentifier","src":"13076:3:41"},"nativeSrc":"13076:7:41","nodeType":"YulFunctionCall","src":"13076:7:41"}],"functionName":{"name":"and","nativeSrc":"13055:3:41","nodeType":"YulIdentifier","src":"13055:3:41"},"nativeSrc":"13055:29:41","nodeType":"YulFunctionCall","src":"13055:29:41"}],"functionName":{"name":"add","nativeSrc":"13046:3:41","nodeType":"YulIdentifier","src":"13046:3:41"},"nativeSrc":"13046:39:41","nodeType":"YulFunctionCall","src":"13046:39:41"},{"kind":"number","nativeSrc":"13087:4:41","nodeType":"YulLiteral","src":"13087:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"13042:3:41","nodeType":"YulIdentifier","src":"13042:3:41"},"nativeSrc":"13042:50:41","nodeType":"YulFunctionCall","src":"13042:50:41"},"variableNames":[{"name":"end","nativeSrc":"13035:3:41","nodeType":"YulIdentifier","src":"13035:3:41"}]}]},"name":"abi_encode_string_calldata","nativeSrc":"12831:267:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nativeSrc":"12867:5:41","nodeType":"YulTypedName","src":"12867:5:41","type":""},{"name":"length","nativeSrc":"12874:6:41","nodeType":"YulTypedName","src":"12874:6:41","type":""},{"name":"pos","nativeSrc":"12882:3:41","nodeType":"YulTypedName","src":"12882:3:41","type":""}],"returnVariables":[{"name":"end","nativeSrc":"12890:3:41","nodeType":"YulTypedName","src":"12890:3:41","type":""}],"src":"12831:267:41"},{"body":{"nativeSrc":"13234:116:41","nodeType":"YulBlock","src":"13234:116:41","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13251:9:41","nodeType":"YulIdentifier","src":"13251:9:41"},{"kind":"number","nativeSrc":"13262:2:41","nodeType":"YulLiteral","src":"13262:2:41","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13244:6:41","nodeType":"YulIdentifier","src":"13244:6:41"},"nativeSrc":"13244:21:41","nodeType":"YulFunctionCall","src":"13244:21:41"},"nativeSrc":"13244:21:41","nodeType":"YulExpressionStatement","src":"13244:21:41"},{"nativeSrc":"13274:70:41","nodeType":"YulAssignment","src":"13274:70:41","value":{"arguments":[{"name":"value0","nativeSrc":"13309:6:41","nodeType":"YulIdentifier","src":"13309:6:41"},{"name":"value1","nativeSrc":"13317:6:41","nodeType":"YulIdentifier","src":"13317:6:41"},{"arguments":[{"name":"headStart","nativeSrc":"13329:9:41","nodeType":"YulIdentifier","src":"13329:9:41"},{"kind":"number","nativeSrc":"13340:2:41","nodeType":"YulLiteral","src":"13340:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13325:3:41","nodeType":"YulIdentifier","src":"13325:3:41"},"nativeSrc":"13325:18:41","nodeType":"YulFunctionCall","src":"13325:18:41"}],"functionName":{"name":"abi_encode_string_calldata","nativeSrc":"13282:26:41","nodeType":"YulIdentifier","src":"13282:26:41"},"nativeSrc":"13282:62:41","nodeType":"YulFunctionCall","src":"13282:62:41"},"variableNames":[{"name":"tail","nativeSrc":"13274:4:41","nodeType":"YulIdentifier","src":"13274:4:41"}]}]},"name":"abi_encode_tuple_t_string_calldata_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"13103:247:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13195:9:41","nodeType":"YulTypedName","src":"13195:9:41","type":""},{"name":"value1","nativeSrc":"13206:6:41","nodeType":"YulTypedName","src":"13206:6:41","type":""},{"name":"value0","nativeSrc":"13214:6:41","nodeType":"YulTypedName","src":"13214:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13225:4:41","nodeType":"YulTypedName","src":"13225:4:41","type":""}],"src":"13103:247:41"},{"body":{"nativeSrc":"13435:169:41","nodeType":"YulBlock","src":"13435:169:41","statements":[{"body":{"nativeSrc":"13481:16:41","nodeType":"YulBlock","src":"13481:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13490:1:41","nodeType":"YulLiteral","src":"13490:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"13493:1:41","nodeType":"YulLiteral","src":"13493:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13483:6:41","nodeType":"YulIdentifier","src":"13483:6:41"},"nativeSrc":"13483:12:41","nodeType":"YulFunctionCall","src":"13483:12:41"},"nativeSrc":"13483:12:41","nodeType":"YulExpressionStatement","src":"13483:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13456:7:41","nodeType":"YulIdentifier","src":"13456:7:41"},{"name":"headStart","nativeSrc":"13465:9:41","nodeType":"YulIdentifier","src":"13465:9:41"}],"functionName":{"name":"sub","nativeSrc":"13452:3:41","nodeType":"YulIdentifier","src":"13452:3:41"},"nativeSrc":"13452:23:41","nodeType":"YulFunctionCall","src":"13452:23:41"},{"kind":"number","nativeSrc":"13477:2:41","nodeType":"YulLiteral","src":"13477:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"13448:3:41","nodeType":"YulIdentifier","src":"13448:3:41"},"nativeSrc":"13448:32:41","nodeType":"YulFunctionCall","src":"13448:32:41"},"nativeSrc":"13445:52:41","nodeType":"YulIf","src":"13445:52:41"},{"nativeSrc":"13506:29:41","nodeType":"YulVariableDeclaration","src":"13506:29:41","value":{"arguments":[{"name":"headStart","nativeSrc":"13525:9:41","nodeType":"YulIdentifier","src":"13525:9:41"}],"functionName":{"name":"mload","nativeSrc":"13519:5:41","nodeType":"YulIdentifier","src":"13519:5:41"},"nativeSrc":"13519:16:41","nodeType":"YulFunctionCall","src":"13519:16:41"},"variables":[{"name":"value","nativeSrc":"13510:5:41","nodeType":"YulTypedName","src":"13510:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13568:5:41","nodeType":"YulIdentifier","src":"13568:5:41"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"13544:23:41","nodeType":"YulIdentifier","src":"13544:23:41"},"nativeSrc":"13544:30:41","nodeType":"YulFunctionCall","src":"13544:30:41"},"nativeSrc":"13544:30:41","nodeType":"YulExpressionStatement","src":"13544:30:41"},{"nativeSrc":"13583:15:41","nodeType":"YulAssignment","src":"13583:15:41","value":{"name":"value","nativeSrc":"13593:5:41","nodeType":"YulIdentifier","src":"13593:5:41"},"variableNames":[{"name":"value0","nativeSrc":"13583:6:41","nodeType":"YulIdentifier","src":"13583:6:41"}]}]},"name":"abi_decode_tuple_t_bytes4_fromMemory","nativeSrc":"13355:249:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13401:9:41","nodeType":"YulTypedName","src":"13401:9:41","type":""},{"name":"dataEnd","nativeSrc":"13412:7:41","nodeType":"YulTypedName","src":"13412:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13424:6:41","nodeType":"YulTypedName","src":"13424:6:41","type":""}],"src":"13355:249:41"},{"body":{"nativeSrc":"13794:254:41","nodeType":"YulBlock","src":"13794:254:41","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13811:9:41","nodeType":"YulIdentifier","src":"13811:9:41"},{"arguments":[{"name":"value0","nativeSrc":"13826:6:41","nodeType":"YulIdentifier","src":"13826:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"13842:3:41","nodeType":"YulLiteral","src":"13842:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"13847:1:41","nodeType":"YulLiteral","src":"13847:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"13838:3:41","nodeType":"YulIdentifier","src":"13838:3:41"},"nativeSrc":"13838:11:41","nodeType":"YulFunctionCall","src":"13838:11:41"},{"kind":"number","nativeSrc":"13851:1:41","nodeType":"YulLiteral","src":"13851:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"13834:3:41","nodeType":"YulIdentifier","src":"13834:3:41"},"nativeSrc":"13834:19:41","nodeType":"YulFunctionCall","src":"13834:19:41"}],"functionName":{"name":"and","nativeSrc":"13822:3:41","nodeType":"YulIdentifier","src":"13822:3:41"},"nativeSrc":"13822:32:41","nodeType":"YulFunctionCall","src":"13822:32:41"}],"functionName":{"name":"mstore","nativeSrc":"13804:6:41","nodeType":"YulIdentifier","src":"13804:6:41"},"nativeSrc":"13804:51:41","nodeType":"YulFunctionCall","src":"13804:51:41"},"nativeSrc":"13804:51:41","nodeType":"YulExpressionStatement","src":"13804:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13875:9:41","nodeType":"YulIdentifier","src":"13875:9:41"},{"kind":"number","nativeSrc":"13886:2:41","nodeType":"YulLiteral","src":"13886:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13871:3:41","nodeType":"YulIdentifier","src":"13871:3:41"},"nativeSrc":"13871:18:41","nodeType":"YulFunctionCall","src":"13871:18:41"},{"arguments":[{"name":"value1","nativeSrc":"13895:6:41","nodeType":"YulIdentifier","src":"13895:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"13911:3:41","nodeType":"YulLiteral","src":"13911:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"13916:1:41","nodeType":"YulLiteral","src":"13916:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"13907:3:41","nodeType":"YulIdentifier","src":"13907:3:41"},"nativeSrc":"13907:11:41","nodeType":"YulFunctionCall","src":"13907:11:41"},{"kind":"number","nativeSrc":"13920:1:41","nodeType":"YulLiteral","src":"13920:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"13903:3:41","nodeType":"YulIdentifier","src":"13903:3:41"},"nativeSrc":"13903:19:41","nodeType":"YulFunctionCall","src":"13903:19:41"}],"functionName":{"name":"and","nativeSrc":"13891:3:41","nodeType":"YulIdentifier","src":"13891:3:41"},"nativeSrc":"13891:32:41","nodeType":"YulFunctionCall","src":"13891:32:41"}],"functionName":{"name":"mstore","nativeSrc":"13864:6:41","nodeType":"YulIdentifier","src":"13864:6:41"},"nativeSrc":"13864:60:41","nodeType":"YulFunctionCall","src":"13864:60:41"},"nativeSrc":"13864:60:41","nodeType":"YulExpressionStatement","src":"13864:60:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13944:9:41","nodeType":"YulIdentifier","src":"13944:9:41"},{"kind":"number","nativeSrc":"13955:2:41","nodeType":"YulLiteral","src":"13955:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13940:3:41","nodeType":"YulIdentifier","src":"13940:3:41"},"nativeSrc":"13940:18:41","nodeType":"YulFunctionCall","src":"13940:18:41"},{"kind":"number","nativeSrc":"13960:2:41","nodeType":"YulLiteral","src":"13960:2:41","type":"","value":"96"}],"functionName":{"name":"mstore","nativeSrc":"13933:6:41","nodeType":"YulIdentifier","src":"13933:6:41"},"nativeSrc":"13933:30:41","nodeType":"YulFunctionCall","src":"13933:30:41"},"nativeSrc":"13933:30:41","nodeType":"YulExpressionStatement","src":"13933:30:41"},{"nativeSrc":"13972:70:41","nodeType":"YulAssignment","src":"13972:70:41","value":{"arguments":[{"name":"value2","nativeSrc":"14007:6:41","nodeType":"YulIdentifier","src":"14007:6:41"},{"name":"value3","nativeSrc":"14015:6:41","nodeType":"YulIdentifier","src":"14015:6:41"},{"arguments":[{"name":"headStart","nativeSrc":"14027:9:41","nodeType":"YulIdentifier","src":"14027:9:41"},{"kind":"number","nativeSrc":"14038:2:41","nodeType":"YulLiteral","src":"14038:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14023:3:41","nodeType":"YulIdentifier","src":"14023:3:41"},"nativeSrc":"14023:18:41","nodeType":"YulFunctionCall","src":"14023:18:41"}],"functionName":{"name":"abi_encode_string_calldata","nativeSrc":"13980:26:41","nodeType":"YulIdentifier","src":"13980:26:41"},"nativeSrc":"13980:62:41","nodeType":"YulFunctionCall","src":"13980:62:41"},"variableNames":[{"name":"tail","nativeSrc":"13972:4:41","nodeType":"YulIdentifier","src":"13972:4:41"}]}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes_calldata_ptr__to_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"13609:439:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13739:9:41","nodeType":"YulTypedName","src":"13739:9:41","type":""},{"name":"value3","nativeSrc":"13750:6:41","nodeType":"YulTypedName","src":"13750:6:41","type":""},{"name":"value2","nativeSrc":"13758:6:41","nodeType":"YulTypedName","src":"13758:6:41","type":""},{"name":"value1","nativeSrc":"13766:6:41","nodeType":"YulTypedName","src":"13766:6:41","type":""},{"name":"value0","nativeSrc":"13774:6:41","nodeType":"YulTypedName","src":"13774:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13785:4:41","nodeType":"YulTypedName","src":"13785:4:41","type":""}],"src":"13609:439:41"},{"body":{"nativeSrc":"14085:95:41","nodeType":"YulBlock","src":"14085:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14102:1:41","nodeType":"YulLiteral","src":"14102:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"14109:3:41","nodeType":"YulLiteral","src":"14109:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"14114:10:41","nodeType":"YulLiteral","src":"14114:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"14105:3:41","nodeType":"YulIdentifier","src":"14105:3:41"},"nativeSrc":"14105:20:41","nodeType":"YulFunctionCall","src":"14105:20:41"}],"functionName":{"name":"mstore","nativeSrc":"14095:6:41","nodeType":"YulIdentifier","src":"14095:6:41"},"nativeSrc":"14095:31:41","nodeType":"YulFunctionCall","src":"14095:31:41"},"nativeSrc":"14095:31:41","nodeType":"YulExpressionStatement","src":"14095:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14142:1:41","nodeType":"YulLiteral","src":"14142:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"14145:4:41","nodeType":"YulLiteral","src":"14145:4:41","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"14135:6:41","nodeType":"YulIdentifier","src":"14135:6:41"},"nativeSrc":"14135:15:41","nodeType":"YulFunctionCall","src":"14135:15:41"},"nativeSrc":"14135:15:41","nodeType":"YulExpressionStatement","src":"14135:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14166:1:41","nodeType":"YulLiteral","src":"14166:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"14169:4:41","nodeType":"YulLiteral","src":"14169:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"14159:6:41","nodeType":"YulIdentifier","src":"14159:6:41"},"nativeSrc":"14159:15:41","nodeType":"YulFunctionCall","src":"14159:15:41"},"nativeSrc":"14159:15:41","nodeType":"YulExpressionStatement","src":"14159:15:41"}]},"name":"panic_error_0x11","nativeSrc":"14053:127:41","nodeType":"YulFunctionDefinition","src":"14053:127:41"},{"body":{"nativeSrc":"14234:79:41","nodeType":"YulBlock","src":"14234:79:41","statements":[{"nativeSrc":"14244:17:41","nodeType":"YulAssignment","src":"14244:17:41","value":{"arguments":[{"name":"x","nativeSrc":"14256:1:41","nodeType":"YulIdentifier","src":"14256:1:41"},{"name":"y","nativeSrc":"14259:1:41","nodeType":"YulIdentifier","src":"14259:1:41"}],"functionName":{"name":"sub","nativeSrc":"14252:3:41","nodeType":"YulIdentifier","src":"14252:3:41"},"nativeSrc":"14252:9:41","nodeType":"YulFunctionCall","src":"14252:9:41"},"variableNames":[{"name":"diff","nativeSrc":"14244:4:41","nodeType":"YulIdentifier","src":"14244:4:41"}]},{"body":{"nativeSrc":"14285:22:41","nodeType":"YulBlock","src":"14285:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"14287:16:41","nodeType":"YulIdentifier","src":"14287:16:41"},"nativeSrc":"14287:18:41","nodeType":"YulFunctionCall","src":"14287:18:41"},"nativeSrc":"14287:18:41","nodeType":"YulExpressionStatement","src":"14287:18:41"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"14276:4:41","nodeType":"YulIdentifier","src":"14276:4:41"},{"name":"x","nativeSrc":"14282:1:41","nodeType":"YulIdentifier","src":"14282:1:41"}],"functionName":{"name":"gt","nativeSrc":"14273:2:41","nodeType":"YulIdentifier","src":"14273:2:41"},"nativeSrc":"14273:11:41","nodeType":"YulFunctionCall","src":"14273:11:41"},"nativeSrc":"14270:37:41","nodeType":"YulIf","src":"14270:37:41"}]},"name":"checked_sub_t_uint256","nativeSrc":"14185:128:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"14216:1:41","nodeType":"YulTypedName","src":"14216:1:41","type":""},{"name":"y","nativeSrc":"14219:1:41","nodeType":"YulTypedName","src":"14219:1:41","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"14225:4:41","nodeType":"YulTypedName","src":"14225:4:41","type":""}],"src":"14185:128:41"},{"body":{"nativeSrc":"14448:201:41","nodeType":"YulBlock","src":"14448:201:41","statements":[{"body":{"nativeSrc":"14486:16:41","nodeType":"YulBlock","src":"14486:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14495:1:41","nodeType":"YulLiteral","src":"14495:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"14498:1:41","nodeType":"YulLiteral","src":"14498:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14488:6:41","nodeType":"YulIdentifier","src":"14488:6:41"},"nativeSrc":"14488:12:41","nodeType":"YulFunctionCall","src":"14488:12:41"},"nativeSrc":"14488:12:41","nodeType":"YulExpressionStatement","src":"14488:12:41"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"14464:10:41","nodeType":"YulIdentifier","src":"14464:10:41"},{"name":"endIndex","nativeSrc":"14476:8:41","nodeType":"YulIdentifier","src":"14476:8:41"}],"functionName":{"name":"gt","nativeSrc":"14461:2:41","nodeType":"YulIdentifier","src":"14461:2:41"},"nativeSrc":"14461:24:41","nodeType":"YulFunctionCall","src":"14461:24:41"},"nativeSrc":"14458:44:41","nodeType":"YulIf","src":"14458:44:41"},{"body":{"nativeSrc":"14535:16:41","nodeType":"YulBlock","src":"14535:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14544:1:41","nodeType":"YulLiteral","src":"14544:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"14547:1:41","nodeType":"YulLiteral","src":"14547:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14537:6:41","nodeType":"YulIdentifier","src":"14537:6:41"},"nativeSrc":"14537:12:41","nodeType":"YulFunctionCall","src":"14537:12:41"},"nativeSrc":"14537:12:41","nodeType":"YulExpressionStatement","src":"14537:12:41"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"14517:8:41","nodeType":"YulIdentifier","src":"14517:8:41"},{"name":"length","nativeSrc":"14527:6:41","nodeType":"YulIdentifier","src":"14527:6:41"}],"functionName":{"name":"gt","nativeSrc":"14514:2:41","nodeType":"YulIdentifier","src":"14514:2:41"},"nativeSrc":"14514:20:41","nodeType":"YulFunctionCall","src":"14514:20:41"},"nativeSrc":"14511:40:41","nodeType":"YulIf","src":"14511:40:41"},{"nativeSrc":"14560:36:41","nodeType":"YulAssignment","src":"14560:36:41","value":{"arguments":[{"name":"offset","nativeSrc":"14577:6:41","nodeType":"YulIdentifier","src":"14577:6:41"},{"name":"startIndex","nativeSrc":"14585:10:41","nodeType":"YulIdentifier","src":"14585:10:41"}],"functionName":{"name":"add","nativeSrc":"14573:3:41","nodeType":"YulIdentifier","src":"14573:3:41"},"nativeSrc":"14573:23:41","nodeType":"YulFunctionCall","src":"14573:23:41"},"variableNames":[{"name":"offsetOut","nativeSrc":"14560:9:41","nodeType":"YulIdentifier","src":"14560:9:41"}]},{"nativeSrc":"14605:38:41","nodeType":"YulAssignment","src":"14605:38:41","value":{"arguments":[{"name":"endIndex","nativeSrc":"14622:8:41","nodeType":"YulIdentifier","src":"14622:8:41"},{"name":"startIndex","nativeSrc":"14632:10:41","nodeType":"YulIdentifier","src":"14632:10:41"}],"functionName":{"name":"sub","nativeSrc":"14618:3:41","nodeType":"YulIdentifier","src":"14618:3:41"},"nativeSrc":"14618:25:41","nodeType":"YulFunctionCall","src":"14618:25:41"},"variableNames":[{"name":"lengthOut","nativeSrc":"14605:9:41","nodeType":"YulIdentifier","src":"14605:9:41"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"14318:331:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"14382:6:41","nodeType":"YulTypedName","src":"14382:6:41","type":""},{"name":"length","nativeSrc":"14390:6:41","nodeType":"YulTypedName","src":"14390:6:41","type":""},{"name":"startIndex","nativeSrc":"14398:10:41","nodeType":"YulTypedName","src":"14398:10:41","type":""},{"name":"endIndex","nativeSrc":"14410:8:41","nodeType":"YulTypedName","src":"14410:8:41","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"14423:9:41","nodeType":"YulTypedName","src":"14423:9:41","type":""},{"name":"lengthOut","nativeSrc":"14434:9:41","nodeType":"YulTypedName","src":"14434:9:41","type":""}],"src":"14318:331:41"},{"body":{"nativeSrc":"14686:95:41","nodeType":"YulBlock","src":"14686:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14703:1:41","nodeType":"YulLiteral","src":"14703:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"14710:3:41","nodeType":"YulLiteral","src":"14710:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"14715:10:41","nodeType":"YulLiteral","src":"14715:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"14706:3:41","nodeType":"YulIdentifier","src":"14706:3:41"},"nativeSrc":"14706:20:41","nodeType":"YulFunctionCall","src":"14706:20:41"}],"functionName":{"name":"mstore","nativeSrc":"14696:6:41","nodeType":"YulIdentifier","src":"14696:6:41"},"nativeSrc":"14696:31:41","nodeType":"YulFunctionCall","src":"14696:31:41"},"nativeSrc":"14696:31:41","nodeType":"YulExpressionStatement","src":"14696:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14743:1:41","nodeType":"YulLiteral","src":"14743:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"14746:4:41","nodeType":"YulLiteral","src":"14746:4:41","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"14736:6:41","nodeType":"YulIdentifier","src":"14736:6:41"},"nativeSrc":"14736:15:41","nodeType":"YulFunctionCall","src":"14736:15:41"},"nativeSrc":"14736:15:41","nodeType":"YulExpressionStatement","src":"14736:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14767:1:41","nodeType":"YulLiteral","src":"14767:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"14770:4:41","nodeType":"YulLiteral","src":"14770:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"14760:6:41","nodeType":"YulIdentifier","src":"14760:6:41"},"nativeSrc":"14760:15:41","nodeType":"YulFunctionCall","src":"14760:15:41"},"nativeSrc":"14760:15:41","nodeType":"YulExpressionStatement","src":"14760:15:41"}]},"name":"panic_error_0x41","nativeSrc":"14654:127:41","nodeType":"YulFunctionDefinition","src":"14654:127:41"},{"body":{"nativeSrc":"14880:427:41","nodeType":"YulBlock","src":"14880:427:41","statements":[{"nativeSrc":"14890:51:41","nodeType":"YulVariableDeclaration","src":"14890:51:41","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"14929:11:41","nodeType":"YulIdentifier","src":"14929:11:41"}],"functionName":{"name":"calldataload","nativeSrc":"14916:12:41","nodeType":"YulIdentifier","src":"14916:12:41"},"nativeSrc":"14916:25:41","nodeType":"YulFunctionCall","src":"14916:25:41"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"14894:18:41","nodeType":"YulTypedName","src":"14894:18:41","type":""}]},{"body":{"nativeSrc":"15030:16:41","nodeType":"YulBlock","src":"15030:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15039:1:41","nodeType":"YulLiteral","src":"15039:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"15042:1:41","nodeType":"YulLiteral","src":"15042:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15032:6:41","nodeType":"YulIdentifier","src":"15032:6:41"},"nativeSrc":"15032:12:41","nodeType":"YulFunctionCall","src":"15032:12:41"},"nativeSrc":"15032:12:41","nodeType":"YulExpressionStatement","src":"15032:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"14964:18:41","nodeType":"YulIdentifier","src":"14964:18:41"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"14992:12:41","nodeType":"YulIdentifier","src":"14992:12:41"},"nativeSrc":"14992:14:41","nodeType":"YulFunctionCall","src":"14992:14:41"},{"name":"base_ref","nativeSrc":"15008:8:41","nodeType":"YulIdentifier","src":"15008:8:41"}],"functionName":{"name":"sub","nativeSrc":"14988:3:41","nodeType":"YulIdentifier","src":"14988:3:41"},"nativeSrc":"14988:29:41","nodeType":"YulFunctionCall","src":"14988:29:41"},{"arguments":[{"kind":"number","nativeSrc":"15023:2:41","nodeType":"YulLiteral","src":"15023:2:41","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"15019:3:41","nodeType":"YulIdentifier","src":"15019:3:41"},"nativeSrc":"15019:7:41","nodeType":"YulFunctionCall","src":"15019:7:41"}],"functionName":{"name":"add","nativeSrc":"14984:3:41","nodeType":"YulIdentifier","src":"14984:3:41"},"nativeSrc":"14984:43:41","nodeType":"YulFunctionCall","src":"14984:43:41"}],"functionName":{"name":"slt","nativeSrc":"14960:3:41","nodeType":"YulIdentifier","src":"14960:3:41"},"nativeSrc":"14960:68:41","nodeType":"YulFunctionCall","src":"14960:68:41"}],"functionName":{"name":"iszero","nativeSrc":"14953:6:41","nodeType":"YulIdentifier","src":"14953:6:41"},"nativeSrc":"14953:76:41","nodeType":"YulFunctionCall","src":"14953:76:41"},"nativeSrc":"14950:96:41","nodeType":"YulIf","src":"14950:96:41"},{"nativeSrc":"15055:47:41","nodeType":"YulVariableDeclaration","src":"15055:47:41","value":{"arguments":[{"name":"base_ref","nativeSrc":"15073:8:41","nodeType":"YulIdentifier","src":"15073:8:41"},{"name":"rel_offset_of_tail","nativeSrc":"15083:18:41","nodeType":"YulIdentifier","src":"15083:18:41"}],"functionName":{"name":"add","nativeSrc":"15069:3:41","nodeType":"YulIdentifier","src":"15069:3:41"},"nativeSrc":"15069:33:41","nodeType":"YulFunctionCall","src":"15069:33:41"},"variables":[{"name":"addr_1","nativeSrc":"15059:6:41","nodeType":"YulTypedName","src":"15059:6:41","type":""}]},{"nativeSrc":"15111:30:41","nodeType":"YulAssignment","src":"15111:30:41","value":{"arguments":[{"name":"addr_1","nativeSrc":"15134:6:41","nodeType":"YulIdentifier","src":"15134:6:41"}],"functionName":{"name":"calldataload","nativeSrc":"15121:12:41","nodeType":"YulIdentifier","src":"15121:12:41"},"nativeSrc":"15121:20:41","nodeType":"YulFunctionCall","src":"15121:20:41"},"variableNames":[{"name":"length","nativeSrc":"15111:6:41","nodeType":"YulIdentifier","src":"15111:6:41"}]},{"body":{"nativeSrc":"15184:16:41","nodeType":"YulBlock","src":"15184:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15193:1:41","nodeType":"YulLiteral","src":"15193:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"15196:1:41","nodeType":"YulLiteral","src":"15196:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15186:6:41","nodeType":"YulIdentifier","src":"15186:6:41"},"nativeSrc":"15186:12:41","nodeType":"YulFunctionCall","src":"15186:12:41"},"nativeSrc":"15186:12:41","nodeType":"YulExpressionStatement","src":"15186:12:41"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"15156:6:41","nodeType":"YulIdentifier","src":"15156:6:41"},{"kind":"number","nativeSrc":"15164:18:41","nodeType":"YulLiteral","src":"15164:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"15153:2:41","nodeType":"YulIdentifier","src":"15153:2:41"},"nativeSrc":"15153:30:41","nodeType":"YulFunctionCall","src":"15153:30:41"},"nativeSrc":"15150:50:41","nodeType":"YulIf","src":"15150:50:41"},{"nativeSrc":"15209:25:41","nodeType":"YulAssignment","src":"15209:25:41","value":{"arguments":[{"name":"addr_1","nativeSrc":"15221:6:41","nodeType":"YulIdentifier","src":"15221:6:41"},{"kind":"number","nativeSrc":"15229:4:41","nodeType":"YulLiteral","src":"15229:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15217:3:41","nodeType":"YulIdentifier","src":"15217:3:41"},"nativeSrc":"15217:17:41","nodeType":"YulFunctionCall","src":"15217:17:41"},"variableNames":[{"name":"addr","nativeSrc":"15209:4:41","nodeType":"YulIdentifier","src":"15209:4:41"}]},{"body":{"nativeSrc":"15285:16:41","nodeType":"YulBlock","src":"15285:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15294:1:41","nodeType":"YulLiteral","src":"15294:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"15297:1:41","nodeType":"YulLiteral","src":"15297:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15287:6:41","nodeType":"YulIdentifier","src":"15287:6:41"},"nativeSrc":"15287:12:41","nodeType":"YulFunctionCall","src":"15287:12:41"},"nativeSrc":"15287:12:41","nodeType":"YulExpressionStatement","src":"15287:12:41"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"15250:4:41","nodeType":"YulIdentifier","src":"15250:4:41"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"15260:12:41","nodeType":"YulIdentifier","src":"15260:12:41"},"nativeSrc":"15260:14:41","nodeType":"YulFunctionCall","src":"15260:14:41"},{"name":"length","nativeSrc":"15276:6:41","nodeType":"YulIdentifier","src":"15276:6:41"}],"functionName":{"name":"sub","nativeSrc":"15256:3:41","nodeType":"YulIdentifier","src":"15256:3:41"},"nativeSrc":"15256:27:41","nodeType":"YulFunctionCall","src":"15256:27:41"}],"functionName":{"name":"sgt","nativeSrc":"15246:3:41","nodeType":"YulIdentifier","src":"15246:3:41"},"nativeSrc":"15246:38:41","nodeType":"YulFunctionCall","src":"15246:38:41"},"nativeSrc":"15243:58:41","nodeType":"YulIf","src":"15243:58:41"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"14786:521:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"14837:8:41","nodeType":"YulTypedName","src":"14837:8:41","type":""},{"name":"ptr_to_tail","nativeSrc":"14847:11:41","nodeType":"YulTypedName","src":"14847:11:41","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"14863:4:41","nodeType":"YulTypedName","src":"14863:4:41","type":""},{"name":"length","nativeSrc":"14869:6:41","nodeType":"YulTypedName","src":"14869:6:41","type":""}],"src":"14786:521:41"},{"body":{"nativeSrc":"15361:162:41","nodeType":"YulBlock","src":"15361:162:41","statements":[{"nativeSrc":"15371:26:41","nodeType":"YulVariableDeclaration","src":"15371:26:41","value":{"arguments":[{"name":"value","nativeSrc":"15391:5:41","nodeType":"YulIdentifier","src":"15391:5:41"}],"functionName":{"name":"mload","nativeSrc":"15385:5:41","nodeType":"YulIdentifier","src":"15385:5:41"},"nativeSrc":"15385:12:41","nodeType":"YulFunctionCall","src":"15385:12:41"},"variables":[{"name":"length","nativeSrc":"15375:6:41","nodeType":"YulTypedName","src":"15375:6:41","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"15412:3:41","nodeType":"YulIdentifier","src":"15412:3:41"},{"arguments":[{"name":"value","nativeSrc":"15421:5:41","nodeType":"YulIdentifier","src":"15421:5:41"},{"kind":"number","nativeSrc":"15428:4:41","nodeType":"YulLiteral","src":"15428:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15417:3:41","nodeType":"YulIdentifier","src":"15417:3:41"},"nativeSrc":"15417:16:41","nodeType":"YulFunctionCall","src":"15417:16:41"},{"name":"length","nativeSrc":"15435:6:41","nodeType":"YulIdentifier","src":"15435:6:41"}],"functionName":{"name":"mcopy","nativeSrc":"15406:5:41","nodeType":"YulIdentifier","src":"15406:5:41"},"nativeSrc":"15406:36:41","nodeType":"YulFunctionCall","src":"15406:36:41"},"nativeSrc":"15406:36:41","nodeType":"YulExpressionStatement","src":"15406:36:41"},{"nativeSrc":"15451:26:41","nodeType":"YulVariableDeclaration","src":"15451:26:41","value":{"arguments":[{"name":"pos","nativeSrc":"15465:3:41","nodeType":"YulIdentifier","src":"15465:3:41"},{"name":"length","nativeSrc":"15470:6:41","nodeType":"YulIdentifier","src":"15470:6:41"}],"functionName":{"name":"add","nativeSrc":"15461:3:41","nodeType":"YulIdentifier","src":"15461:3:41"},"nativeSrc":"15461:16:41","nodeType":"YulFunctionCall","src":"15461:16:41"},"variables":[{"name":"_1","nativeSrc":"15455:2:41","nodeType":"YulTypedName","src":"15455:2:41","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"15493:2:41","nodeType":"YulIdentifier","src":"15493:2:41"},{"kind":"number","nativeSrc":"15497:1:41","nodeType":"YulLiteral","src":"15497:1:41","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"15486:6:41","nodeType":"YulIdentifier","src":"15486:6:41"},"nativeSrc":"15486:13:41","nodeType":"YulFunctionCall","src":"15486:13:41"},"nativeSrc":"15486:13:41","nodeType":"YulExpressionStatement","src":"15486:13:41"},{"nativeSrc":"15508:9:41","nodeType":"YulAssignment","src":"15508:9:41","value":{"name":"_1","nativeSrc":"15515:2:41","nodeType":"YulIdentifier","src":"15515:2:41"},"variableNames":[{"name":"end","nativeSrc":"15508:3:41","nodeType":"YulIdentifier","src":"15508:3:41"}]}]},"name":"abi_encode_bytes","nativeSrc":"15312:211:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"15338:5:41","nodeType":"YulTypedName","src":"15338:5:41","type":""},{"name":"pos","nativeSrc":"15345:3:41","nodeType":"YulTypedName","src":"15345:3:41","type":""}],"returnVariables":[{"name":"end","nativeSrc":"15353:3:41","nodeType":"YulTypedName","src":"15353:3:41","type":""}],"src":"15312:211:41"},{"body":{"nativeSrc":"15721:150:41","nodeType":"YulBlock","src":"15721:150:41","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"15744:3:41","nodeType":"YulIdentifier","src":"15744:3:41"},{"name":"value0","nativeSrc":"15749:6:41","nodeType":"YulIdentifier","src":"15749:6:41"},{"name":"value1","nativeSrc":"15757:6:41","nodeType":"YulIdentifier","src":"15757:6:41"}],"functionName":{"name":"calldatacopy","nativeSrc":"15731:12:41","nodeType":"YulIdentifier","src":"15731:12:41"},"nativeSrc":"15731:33:41","nodeType":"YulFunctionCall","src":"15731:33:41"},"nativeSrc":"15731:33:41","nodeType":"YulExpressionStatement","src":"15731:33:41"},{"nativeSrc":"15773:26:41","nodeType":"YulVariableDeclaration","src":"15773:26:41","value":{"arguments":[{"name":"pos","nativeSrc":"15787:3:41","nodeType":"YulIdentifier","src":"15787:3:41"},{"name":"value1","nativeSrc":"15792:6:41","nodeType":"YulIdentifier","src":"15792:6:41"}],"functionName":{"name":"add","nativeSrc":"15783:3:41","nodeType":"YulIdentifier","src":"15783:3:41"},"nativeSrc":"15783:16:41","nodeType":"YulFunctionCall","src":"15783:16:41"},"variables":[{"name":"_1","nativeSrc":"15777:2:41","nodeType":"YulTypedName","src":"15777:2:41","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"15815:2:41","nodeType":"YulIdentifier","src":"15815:2:41"},{"kind":"number","nativeSrc":"15819:1:41","nodeType":"YulLiteral","src":"15819:1:41","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"15808:6:41","nodeType":"YulIdentifier","src":"15808:6:41"},"nativeSrc":"15808:13:41","nodeType":"YulFunctionCall","src":"15808:13:41"},"nativeSrc":"15808:13:41","nodeType":"YulExpressionStatement","src":"15808:13:41"},{"nativeSrc":"15830:35:41","nodeType":"YulAssignment","src":"15830:35:41","value":{"arguments":[{"name":"value2","nativeSrc":"15854:6:41","nodeType":"YulIdentifier","src":"15854:6:41"},{"name":"_1","nativeSrc":"15862:2:41","nodeType":"YulIdentifier","src":"15862:2:41"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"15837:16:41","nodeType":"YulIdentifier","src":"15837:16:41"},"nativeSrc":"15837:28:41","nodeType":"YulFunctionCall","src":"15837:28:41"},"variableNames":[{"name":"end","nativeSrc":"15830:3:41","nodeType":"YulIdentifier","src":"15830:3:41"}]}]},"name":"abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"15528:343:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"15681:3:41","nodeType":"YulTypedName","src":"15681:3:41","type":""},{"name":"value2","nativeSrc":"15686:6:41","nodeType":"YulTypedName","src":"15686:6:41","type":""},{"name":"value1","nativeSrc":"15694:6:41","nodeType":"YulTypedName","src":"15694:6:41","type":""},{"name":"value0","nativeSrc":"15702:6:41","nodeType":"YulTypedName","src":"15702:6:41","type":""}],"returnVariables":[{"name":"end","nativeSrc":"15713:3:41","nodeType":"YulTypedName","src":"15713:3:41","type":""}],"src":"15528:343:41"},{"body":{"nativeSrc":"16059:311:41","nodeType":"YulBlock","src":"16059:311:41","statements":[{"nativeSrc":"16069:27:41","nodeType":"YulAssignment","src":"16069:27:41","value":{"arguments":[{"name":"headStart","nativeSrc":"16081:9:41","nodeType":"YulIdentifier","src":"16081:9:41"},{"kind":"number","nativeSrc":"16092:3:41","nodeType":"YulLiteral","src":"16092:3:41","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"16077:3:41","nodeType":"YulIdentifier","src":"16077:3:41"},"nativeSrc":"16077:19:41","nodeType":"YulFunctionCall","src":"16077:19:41"},"variableNames":[{"name":"tail","nativeSrc":"16069:4:41","nodeType":"YulIdentifier","src":"16069:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16112:9:41","nodeType":"YulIdentifier","src":"16112:9:41"},{"arguments":[{"name":"value0","nativeSrc":"16127:6:41","nodeType":"YulIdentifier","src":"16127:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16143:3:41","nodeType":"YulLiteral","src":"16143:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"16148:1:41","nodeType":"YulLiteral","src":"16148:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16139:3:41","nodeType":"YulIdentifier","src":"16139:3:41"},"nativeSrc":"16139:11:41","nodeType":"YulFunctionCall","src":"16139:11:41"},{"kind":"number","nativeSrc":"16152:1:41","nodeType":"YulLiteral","src":"16152:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16135:3:41","nodeType":"YulIdentifier","src":"16135:3:41"},"nativeSrc":"16135:19:41","nodeType":"YulFunctionCall","src":"16135:19:41"}],"functionName":{"name":"and","nativeSrc":"16123:3:41","nodeType":"YulIdentifier","src":"16123:3:41"},"nativeSrc":"16123:32:41","nodeType":"YulFunctionCall","src":"16123:32:41"}],"functionName":{"name":"mstore","nativeSrc":"16105:6:41","nodeType":"YulIdentifier","src":"16105:6:41"},"nativeSrc":"16105:51:41","nodeType":"YulFunctionCall","src":"16105:51:41"},"nativeSrc":"16105:51:41","nodeType":"YulExpressionStatement","src":"16105:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16176:9:41","nodeType":"YulIdentifier","src":"16176:9:41"},{"kind":"number","nativeSrc":"16187:2:41","nodeType":"YulLiteral","src":"16187:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16172:3:41","nodeType":"YulIdentifier","src":"16172:3:41"},"nativeSrc":"16172:18:41","nodeType":"YulFunctionCall","src":"16172:18:41"},{"arguments":[{"name":"value1","nativeSrc":"16196:6:41","nodeType":"YulIdentifier","src":"16196:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16212:3:41","nodeType":"YulLiteral","src":"16212:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"16217:1:41","nodeType":"YulLiteral","src":"16217:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16208:3:41","nodeType":"YulIdentifier","src":"16208:3:41"},"nativeSrc":"16208:11:41","nodeType":"YulFunctionCall","src":"16208:11:41"},{"kind":"number","nativeSrc":"16221:1:41","nodeType":"YulLiteral","src":"16221:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16204:3:41","nodeType":"YulIdentifier","src":"16204:3:41"},"nativeSrc":"16204:19:41","nodeType":"YulFunctionCall","src":"16204:19:41"}],"functionName":{"name":"and","nativeSrc":"16192:3:41","nodeType":"YulIdentifier","src":"16192:3:41"},"nativeSrc":"16192:32:41","nodeType":"YulFunctionCall","src":"16192:32:41"}],"functionName":{"name":"mstore","nativeSrc":"16165:6:41","nodeType":"YulIdentifier","src":"16165:6:41"},"nativeSrc":"16165:60:41","nodeType":"YulFunctionCall","src":"16165:60:41"},"nativeSrc":"16165:60:41","nodeType":"YulExpressionStatement","src":"16165:60:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16245:9:41","nodeType":"YulIdentifier","src":"16245:9:41"},{"kind":"number","nativeSrc":"16256:2:41","nodeType":"YulLiteral","src":"16256:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16241:3:41","nodeType":"YulIdentifier","src":"16241:3:41"},"nativeSrc":"16241:18:41","nodeType":"YulFunctionCall","src":"16241:18:41"},{"arguments":[{"name":"value2","nativeSrc":"16265:6:41","nodeType":"YulIdentifier","src":"16265:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16281:3:41","nodeType":"YulLiteral","src":"16281:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"16286:1:41","nodeType":"YulLiteral","src":"16286:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16277:3:41","nodeType":"YulIdentifier","src":"16277:3:41"},"nativeSrc":"16277:11:41","nodeType":"YulFunctionCall","src":"16277:11:41"},{"kind":"number","nativeSrc":"16290:1:41","nodeType":"YulLiteral","src":"16290:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16273:3:41","nodeType":"YulIdentifier","src":"16273:3:41"},"nativeSrc":"16273:19:41","nodeType":"YulFunctionCall","src":"16273:19:41"}],"functionName":{"name":"and","nativeSrc":"16261:3:41","nodeType":"YulIdentifier","src":"16261:3:41"},"nativeSrc":"16261:32:41","nodeType":"YulFunctionCall","src":"16261:32:41"}],"functionName":{"name":"mstore","nativeSrc":"16234:6:41","nodeType":"YulIdentifier","src":"16234:6:41"},"nativeSrc":"16234:60:41","nodeType":"YulFunctionCall","src":"16234:60:41"},"nativeSrc":"16234:60:41","nodeType":"YulExpressionStatement","src":"16234:60:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16314:9:41","nodeType":"YulIdentifier","src":"16314:9:41"},{"kind":"number","nativeSrc":"16325:2:41","nodeType":"YulLiteral","src":"16325:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16310:3:41","nodeType":"YulIdentifier","src":"16310:3:41"},"nativeSrc":"16310:18:41","nodeType":"YulFunctionCall","src":"16310:18:41"},{"arguments":[{"name":"value3","nativeSrc":"16334:6:41","nodeType":"YulIdentifier","src":"16334:6:41"},{"arguments":[{"kind":"number","nativeSrc":"16346:3:41","nodeType":"YulLiteral","src":"16346:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"16351:10:41","nodeType":"YulLiteral","src":"16351:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"16342:3:41","nodeType":"YulIdentifier","src":"16342:3:41"},"nativeSrc":"16342:20:41","nodeType":"YulFunctionCall","src":"16342:20:41"}],"functionName":{"name":"and","nativeSrc":"16330:3:41","nodeType":"YulIdentifier","src":"16330:3:41"},"nativeSrc":"16330:33:41","nodeType":"YulFunctionCall","src":"16330:33:41"}],"functionName":{"name":"mstore","nativeSrc":"16303:6:41","nodeType":"YulIdentifier","src":"16303:6:41"},"nativeSrc":"16303:61:41","nodeType":"YulFunctionCall","src":"16303:61:41"},"nativeSrc":"16303:61:41","nodeType":"YulExpressionStatement","src":"16303:61:41"}]},"name":"abi_encode_tuple_t_address_t_address_t_address_t_bytes4__to_t_address_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"15876:494:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16004:9:41","nodeType":"YulTypedName","src":"16004:9:41","type":""},{"name":"value3","nativeSrc":"16015:6:41","nodeType":"YulTypedName","src":"16015:6:41","type":""},{"name":"value2","nativeSrc":"16023:6:41","nodeType":"YulTypedName","src":"16023:6:41","type":""},{"name":"value1","nativeSrc":"16031:6:41","nodeType":"YulTypedName","src":"16031:6:41","type":""},{"name":"value0","nativeSrc":"16039:6:41","nodeType":"YulTypedName","src":"16039:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16050:4:41","nodeType":"YulTypedName","src":"16050:4:41","type":""}],"src":"15876:494:41"},{"body":{"nativeSrc":"16422:132:41","nodeType":"YulBlock","src":"16422:132:41","statements":[{"nativeSrc":"16432:58:41","nodeType":"YulAssignment","src":"16432:58:41","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"16447:1:41","nodeType":"YulIdentifier","src":"16447:1:41"},{"kind":"number","nativeSrc":"16450:14:41","nodeType":"YulLiteral","src":"16450:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"16443:3:41","nodeType":"YulIdentifier","src":"16443:3:41"},"nativeSrc":"16443:22:41","nodeType":"YulFunctionCall","src":"16443:22:41"},{"arguments":[{"name":"y","nativeSrc":"16471:1:41","nodeType":"YulIdentifier","src":"16471:1:41"},{"kind":"number","nativeSrc":"16474:14:41","nodeType":"YulLiteral","src":"16474:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"16467:3:41","nodeType":"YulIdentifier","src":"16467:3:41"},"nativeSrc":"16467:22:41","nodeType":"YulFunctionCall","src":"16467:22:41"}],"functionName":{"name":"add","nativeSrc":"16439:3:41","nodeType":"YulIdentifier","src":"16439:3:41"},"nativeSrc":"16439:51:41","nodeType":"YulFunctionCall","src":"16439:51:41"},"variableNames":[{"name":"sum","nativeSrc":"16432:3:41","nodeType":"YulIdentifier","src":"16432:3:41"}]},{"body":{"nativeSrc":"16526:22:41","nodeType":"YulBlock","src":"16526:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"16528:16:41","nodeType":"YulIdentifier","src":"16528:16:41"},"nativeSrc":"16528:18:41","nodeType":"YulFunctionCall","src":"16528:18:41"},"nativeSrc":"16528:18:41","nodeType":"YulExpressionStatement","src":"16528:18:41"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"16505:3:41","nodeType":"YulIdentifier","src":"16505:3:41"},{"kind":"number","nativeSrc":"16510:14:41","nodeType":"YulLiteral","src":"16510:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"16502:2:41","nodeType":"YulIdentifier","src":"16502:2:41"},"nativeSrc":"16502:23:41","nodeType":"YulFunctionCall","src":"16502:23:41"},"nativeSrc":"16499:49:41","nodeType":"YulIf","src":"16499:49:41"}]},"name":"checked_add_t_uint48","nativeSrc":"16375:179:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"16405:1:41","nodeType":"YulTypedName","src":"16405:1:41","type":""},{"name":"y","nativeSrc":"16408:1:41","nodeType":"YulTypedName","src":"16408:1:41","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"16414:3:41","nodeType":"YulTypedName","src":"16414:3:41","type":""}],"src":"16375:179:41"},{"body":{"nativeSrc":"16770:320:41","nodeType":"YulBlock","src":"16770:320:41","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16787:9:41","nodeType":"YulIdentifier","src":"16787:9:41"},{"arguments":[{"name":"value0","nativeSrc":"16802:6:41","nodeType":"YulIdentifier","src":"16802:6:41"},{"kind":"number","nativeSrc":"16810:14:41","nodeType":"YulLiteral","src":"16810:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"16798:3:41","nodeType":"YulIdentifier","src":"16798:3:41"},"nativeSrc":"16798:27:41","nodeType":"YulFunctionCall","src":"16798:27:41"}],"functionName":{"name":"mstore","nativeSrc":"16780:6:41","nodeType":"YulIdentifier","src":"16780:6:41"},"nativeSrc":"16780:46:41","nodeType":"YulFunctionCall","src":"16780:46:41"},"nativeSrc":"16780:46:41","nodeType":"YulExpressionStatement","src":"16780:46:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16846:9:41","nodeType":"YulIdentifier","src":"16846:9:41"},{"kind":"number","nativeSrc":"16857:2:41","nodeType":"YulLiteral","src":"16857:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16842:3:41","nodeType":"YulIdentifier","src":"16842:3:41"},"nativeSrc":"16842:18:41","nodeType":"YulFunctionCall","src":"16842:18:41"},{"arguments":[{"name":"value1","nativeSrc":"16866:6:41","nodeType":"YulIdentifier","src":"16866:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16882:3:41","nodeType":"YulLiteral","src":"16882:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"16887:1:41","nodeType":"YulLiteral","src":"16887:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16878:3:41","nodeType":"YulIdentifier","src":"16878:3:41"},"nativeSrc":"16878:11:41","nodeType":"YulFunctionCall","src":"16878:11:41"},{"kind":"number","nativeSrc":"16891:1:41","nodeType":"YulLiteral","src":"16891:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16874:3:41","nodeType":"YulIdentifier","src":"16874:3:41"},"nativeSrc":"16874:19:41","nodeType":"YulFunctionCall","src":"16874:19:41"}],"functionName":{"name":"and","nativeSrc":"16862:3:41","nodeType":"YulIdentifier","src":"16862:3:41"},"nativeSrc":"16862:32:41","nodeType":"YulFunctionCall","src":"16862:32:41"}],"functionName":{"name":"mstore","nativeSrc":"16835:6:41","nodeType":"YulIdentifier","src":"16835:6:41"},"nativeSrc":"16835:60:41","nodeType":"YulFunctionCall","src":"16835:60:41"},"nativeSrc":"16835:60:41","nodeType":"YulExpressionStatement","src":"16835:60:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16915:9:41","nodeType":"YulIdentifier","src":"16915:9:41"},{"kind":"number","nativeSrc":"16926:2:41","nodeType":"YulLiteral","src":"16926:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16911:3:41","nodeType":"YulIdentifier","src":"16911:3:41"},"nativeSrc":"16911:18:41","nodeType":"YulFunctionCall","src":"16911:18:41"},{"arguments":[{"name":"value2","nativeSrc":"16935:6:41","nodeType":"YulIdentifier","src":"16935:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16951:3:41","nodeType":"YulLiteral","src":"16951:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"16956:1:41","nodeType":"YulLiteral","src":"16956:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16947:3:41","nodeType":"YulIdentifier","src":"16947:3:41"},"nativeSrc":"16947:11:41","nodeType":"YulFunctionCall","src":"16947:11:41"},{"kind":"number","nativeSrc":"16960:1:41","nodeType":"YulLiteral","src":"16960:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16943:3:41","nodeType":"YulIdentifier","src":"16943:3:41"},"nativeSrc":"16943:19:41","nodeType":"YulFunctionCall","src":"16943:19:41"}],"functionName":{"name":"and","nativeSrc":"16931:3:41","nodeType":"YulIdentifier","src":"16931:3:41"},"nativeSrc":"16931:32:41","nodeType":"YulFunctionCall","src":"16931:32:41"}],"functionName":{"name":"mstore","nativeSrc":"16904:6:41","nodeType":"YulIdentifier","src":"16904:6:41"},"nativeSrc":"16904:60:41","nodeType":"YulFunctionCall","src":"16904:60:41"},"nativeSrc":"16904:60:41","nodeType":"YulExpressionStatement","src":"16904:60:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16984:9:41","nodeType":"YulIdentifier","src":"16984:9:41"},{"kind":"number","nativeSrc":"16995:2:41","nodeType":"YulLiteral","src":"16995:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16980:3:41","nodeType":"YulIdentifier","src":"16980:3:41"},"nativeSrc":"16980:18:41","nodeType":"YulFunctionCall","src":"16980:18:41"},{"kind":"number","nativeSrc":"17000:3:41","nodeType":"YulLiteral","src":"17000:3:41","type":"","value":"128"}],"functionName":{"name":"mstore","nativeSrc":"16973:6:41","nodeType":"YulIdentifier","src":"16973:6:41"},"nativeSrc":"16973:31:41","nodeType":"YulFunctionCall","src":"16973:31:41"},"nativeSrc":"16973:31:41","nodeType":"YulExpressionStatement","src":"16973:31:41"},{"nativeSrc":"17013:71:41","nodeType":"YulAssignment","src":"17013:71:41","value":{"arguments":[{"name":"value3","nativeSrc":"17048:6:41","nodeType":"YulIdentifier","src":"17048:6:41"},{"name":"value4","nativeSrc":"17056:6:41","nodeType":"YulIdentifier","src":"17056:6:41"},{"arguments":[{"name":"headStart","nativeSrc":"17068:9:41","nodeType":"YulIdentifier","src":"17068:9:41"},{"kind":"number","nativeSrc":"17079:3:41","nodeType":"YulLiteral","src":"17079:3:41","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"17064:3:41","nodeType":"YulIdentifier","src":"17064:3:41"},"nativeSrc":"17064:19:41","nodeType":"YulFunctionCall","src":"17064:19:41"}],"functionName":{"name":"abi_encode_string_calldata","nativeSrc":"17021:26:41","nodeType":"YulIdentifier","src":"17021:26:41"},"nativeSrc":"17021:63:41","nodeType":"YulFunctionCall","src":"17021:63:41"},"variableNames":[{"name":"tail","nativeSrc":"17013:4:41","nodeType":"YulIdentifier","src":"17013:4:41"}]}]},"name":"abi_encode_tuple_t_uint48_t_address_t_address_t_bytes_calldata_ptr__to_t_uint48_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"16559:531:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16707:9:41","nodeType":"YulTypedName","src":"16707:9:41","type":""},{"name":"value4","nativeSrc":"16718:6:41","nodeType":"YulTypedName","src":"16718:6:41","type":""},{"name":"value3","nativeSrc":"16726:6:41","nodeType":"YulTypedName","src":"16726:6:41","type":""},{"name":"value2","nativeSrc":"16734:6:41","nodeType":"YulTypedName","src":"16734:6:41","type":""},{"name":"value1","nativeSrc":"16742:6:41","nodeType":"YulTypedName","src":"16742:6:41","type":""},{"name":"value0","nativeSrc":"16750:6:41","nodeType":"YulTypedName","src":"16750:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16761:4:41","nodeType":"YulTypedName","src":"16761:4:41","type":""}],"src":"16559:531:41"},{"body":{"nativeSrc":"17222:170:41","nodeType":"YulBlock","src":"17222:170:41","statements":[{"nativeSrc":"17232:26:41","nodeType":"YulAssignment","src":"17232:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"17244:9:41","nodeType":"YulIdentifier","src":"17244:9:41"},{"kind":"number","nativeSrc":"17255:2:41","nodeType":"YulLiteral","src":"17255:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17240:3:41","nodeType":"YulIdentifier","src":"17240:3:41"},"nativeSrc":"17240:18:41","nodeType":"YulFunctionCall","src":"17240:18:41"},"variableNames":[{"name":"tail","nativeSrc":"17232:4:41","nodeType":"YulIdentifier","src":"17232:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17274:9:41","nodeType":"YulIdentifier","src":"17274:9:41"},{"arguments":[{"name":"value0","nativeSrc":"17289:6:41","nodeType":"YulIdentifier","src":"17289:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17305:3:41","nodeType":"YulLiteral","src":"17305:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"17310:1:41","nodeType":"YulLiteral","src":"17310:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"17301:3:41","nodeType":"YulIdentifier","src":"17301:3:41"},"nativeSrc":"17301:11:41","nodeType":"YulFunctionCall","src":"17301:11:41"},{"kind":"number","nativeSrc":"17314:1:41","nodeType":"YulLiteral","src":"17314:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"17297:3:41","nodeType":"YulIdentifier","src":"17297:3:41"},"nativeSrc":"17297:19:41","nodeType":"YulFunctionCall","src":"17297:19:41"}],"functionName":{"name":"and","nativeSrc":"17285:3:41","nodeType":"YulIdentifier","src":"17285:3:41"},"nativeSrc":"17285:32:41","nodeType":"YulFunctionCall","src":"17285:32:41"}],"functionName":{"name":"mstore","nativeSrc":"17267:6:41","nodeType":"YulIdentifier","src":"17267:6:41"},"nativeSrc":"17267:51:41","nodeType":"YulFunctionCall","src":"17267:51:41"},"nativeSrc":"17267:51:41","nodeType":"YulExpressionStatement","src":"17267:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17338:9:41","nodeType":"YulIdentifier","src":"17338:9:41"},{"kind":"number","nativeSrc":"17349:2:41","nodeType":"YulLiteral","src":"17349:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17334:3:41","nodeType":"YulIdentifier","src":"17334:3:41"},"nativeSrc":"17334:18:41","nodeType":"YulFunctionCall","src":"17334:18:41"},{"arguments":[{"name":"value1","nativeSrc":"17358:6:41","nodeType":"YulIdentifier","src":"17358:6:41"},{"kind":"number","nativeSrc":"17366:18:41","nodeType":"YulLiteral","src":"17366:18:41","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"17354:3:41","nodeType":"YulIdentifier","src":"17354:3:41"},"nativeSrc":"17354:31:41","nodeType":"YulFunctionCall","src":"17354:31:41"}],"functionName":{"name":"mstore","nativeSrc":"17327:6:41","nodeType":"YulIdentifier","src":"17327:6:41"},"nativeSrc":"17327:59:41","nodeType":"YulFunctionCall","src":"17327:59:41"},"nativeSrc":"17327:59:41","nodeType":"YulExpressionStatement","src":"17327:59:41"}]},"name":"abi_encode_tuple_t_address_t_uint64__to_t_address_t_uint64__fromStack_reversed","nativeSrc":"17095:297:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17183:9:41","nodeType":"YulTypedName","src":"17183:9:41","type":""},{"name":"value1","nativeSrc":"17194:6:41","nodeType":"YulTypedName","src":"17194:6:41","type":""},{"name":"value0","nativeSrc":"17202:6:41","nodeType":"YulTypedName","src":"17202:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17213:4:41","nodeType":"YulTypedName","src":"17213:4:41","type":""}],"src":"17095:297:41"},{"body":{"nativeSrc":"17496:103:41","nodeType":"YulBlock","src":"17496:103:41","statements":[{"nativeSrc":"17506:26:41","nodeType":"YulAssignment","src":"17506:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"17518:9:41","nodeType":"YulIdentifier","src":"17518:9:41"},{"kind":"number","nativeSrc":"17529:2:41","nodeType":"YulLiteral","src":"17529:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17514:3:41","nodeType":"YulIdentifier","src":"17514:3:41"},"nativeSrc":"17514:18:41","nodeType":"YulFunctionCall","src":"17514:18:41"},"variableNames":[{"name":"tail","nativeSrc":"17506:4:41","nodeType":"YulIdentifier","src":"17506:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17548:9:41","nodeType":"YulIdentifier","src":"17548:9:41"},{"arguments":[{"name":"value0","nativeSrc":"17563:6:41","nodeType":"YulIdentifier","src":"17563:6:41"},{"arguments":[{"kind":"number","nativeSrc":"17575:3:41","nodeType":"YulLiteral","src":"17575:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"17580:10:41","nodeType":"YulLiteral","src":"17580:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"17571:3:41","nodeType":"YulIdentifier","src":"17571:3:41"},"nativeSrc":"17571:20:41","nodeType":"YulFunctionCall","src":"17571:20:41"}],"functionName":{"name":"and","nativeSrc":"17559:3:41","nodeType":"YulIdentifier","src":"17559:3:41"},"nativeSrc":"17559:33:41","nodeType":"YulFunctionCall","src":"17559:33:41"}],"functionName":{"name":"mstore","nativeSrc":"17541:6:41","nodeType":"YulIdentifier","src":"17541:6:41"},"nativeSrc":"17541:52:41","nodeType":"YulFunctionCall","src":"17541:52:41"},"nativeSrc":"17541:52:41","nodeType":"YulExpressionStatement","src":"17541:52:41"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nativeSrc":"17397:202:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17465:9:41","nodeType":"YulTypedName","src":"17465:9:41","type":""},{"name":"value0","nativeSrc":"17476:6:41","nodeType":"YulTypedName","src":"17476:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17487:4:41","nodeType":"YulTypedName","src":"17487:4:41","type":""}],"src":"17397:202:41"},{"body":{"nativeSrc":"17704:238:41","nodeType":"YulBlock","src":"17704:238:41","statements":[{"nativeSrc":"17714:29:41","nodeType":"YulVariableDeclaration","src":"17714:29:41","value":{"arguments":[{"name":"array","nativeSrc":"17737:5:41","nodeType":"YulIdentifier","src":"17737:5:41"}],"functionName":{"name":"calldataload","nativeSrc":"17724:12:41","nodeType":"YulIdentifier","src":"17724:12:41"},"nativeSrc":"17724:19:41","nodeType":"YulFunctionCall","src":"17724:19:41"},"variables":[{"name":"_1","nativeSrc":"17718:2:41","nodeType":"YulTypedName","src":"17718:2:41","type":""}]},{"nativeSrc":"17752:38:41","nodeType":"YulAssignment","src":"17752:38:41","value":{"arguments":[{"name":"_1","nativeSrc":"17765:2:41","nodeType":"YulIdentifier","src":"17765:2:41"},{"arguments":[{"kind":"number","nativeSrc":"17773:3:41","nodeType":"YulLiteral","src":"17773:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"17778:10:41","nodeType":"YulLiteral","src":"17778:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"17769:3:41","nodeType":"YulIdentifier","src":"17769:3:41"},"nativeSrc":"17769:20:41","nodeType":"YulFunctionCall","src":"17769:20:41"}],"functionName":{"name":"and","nativeSrc":"17761:3:41","nodeType":"YulIdentifier","src":"17761:3:41"},"nativeSrc":"17761:29:41","nodeType":"YulFunctionCall","src":"17761:29:41"},"variableNames":[{"name":"value","nativeSrc":"17752:5:41","nodeType":"YulIdentifier","src":"17752:5:41"}]},{"body":{"nativeSrc":"17821:115:41","nodeType":"YulBlock","src":"17821:115:41","statements":[{"nativeSrc":"17835:91:41","nodeType":"YulAssignment","src":"17835:91:41","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"17852:2:41","nodeType":"YulIdentifier","src":"17852:2:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17864:1:41","nodeType":"YulLiteral","src":"17864:1:41","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"17871:1:41","nodeType":"YulLiteral","src":"17871:1:41","type":"","value":"4"},{"name":"len","nativeSrc":"17874:3:41","nodeType":"YulIdentifier","src":"17874:3:41"}],"functionName":{"name":"sub","nativeSrc":"17867:3:41","nodeType":"YulIdentifier","src":"17867:3:41"},"nativeSrc":"17867:11:41","nodeType":"YulFunctionCall","src":"17867:11:41"}],"functionName":{"name":"shl","nativeSrc":"17860:3:41","nodeType":"YulIdentifier","src":"17860:3:41"},"nativeSrc":"17860:19:41","nodeType":"YulFunctionCall","src":"17860:19:41"},{"arguments":[{"kind":"number","nativeSrc":"17885:3:41","nodeType":"YulLiteral","src":"17885:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"17890:10:41","nodeType":"YulLiteral","src":"17890:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"17881:3:41","nodeType":"YulIdentifier","src":"17881:3:41"},"nativeSrc":"17881:20:41","nodeType":"YulFunctionCall","src":"17881:20:41"}],"functionName":{"name":"shl","nativeSrc":"17856:3:41","nodeType":"YulIdentifier","src":"17856:3:41"},"nativeSrc":"17856:46:41","nodeType":"YulFunctionCall","src":"17856:46:41"}],"functionName":{"name":"and","nativeSrc":"17848:3:41","nodeType":"YulIdentifier","src":"17848:3:41"},"nativeSrc":"17848:55:41","nodeType":"YulFunctionCall","src":"17848:55:41"},{"arguments":[{"kind":"number","nativeSrc":"17909:3:41","nodeType":"YulLiteral","src":"17909:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"17914:10:41","nodeType":"YulLiteral","src":"17914:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"17905:3:41","nodeType":"YulIdentifier","src":"17905:3:41"},"nativeSrc":"17905:20:41","nodeType":"YulFunctionCall","src":"17905:20:41"}],"functionName":{"name":"and","nativeSrc":"17844:3:41","nodeType":"YulIdentifier","src":"17844:3:41"},"nativeSrc":"17844:82:41","nodeType":"YulFunctionCall","src":"17844:82:41"},"variableNames":[{"name":"value","nativeSrc":"17835:5:41","nodeType":"YulIdentifier","src":"17835:5:41"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"17805:3:41","nodeType":"YulIdentifier","src":"17805:3:41"},{"kind":"number","nativeSrc":"17810:1:41","nodeType":"YulLiteral","src":"17810:1:41","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"17802:2:41","nodeType":"YulIdentifier","src":"17802:2:41"},"nativeSrc":"17802:10:41","nodeType":"YulFunctionCall","src":"17802:10:41"},"nativeSrc":"17799:137:41","nodeType":"YulIf","src":"17799:137:41"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4","nativeSrc":"17604:338:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"17679:5:41","nodeType":"YulTypedName","src":"17679:5:41","type":""},{"name":"len","nativeSrc":"17686:3:41","nodeType":"YulTypedName","src":"17686:3:41","type":""}],"returnVariables":[{"name":"value","nativeSrc":"17694:5:41","nodeType":"YulTypedName","src":"17694:5:41","type":""}],"src":"17604:338:41"},{"body":{"nativeSrc":"18074:172:41","nodeType":"YulBlock","src":"18074:172:41","statements":[{"nativeSrc":"18084:26:41","nodeType":"YulAssignment","src":"18084:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"18096:9:41","nodeType":"YulIdentifier","src":"18096:9:41"},{"kind":"number","nativeSrc":"18107:2:41","nodeType":"YulLiteral","src":"18107:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18092:3:41","nodeType":"YulIdentifier","src":"18092:3:41"},"nativeSrc":"18092:18:41","nodeType":"YulFunctionCall","src":"18092:18:41"},"variableNames":[{"name":"tail","nativeSrc":"18084:4:41","nodeType":"YulIdentifier","src":"18084:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18126:9:41","nodeType":"YulIdentifier","src":"18126:9:41"},{"arguments":[{"name":"value0","nativeSrc":"18141:6:41","nodeType":"YulIdentifier","src":"18141:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18157:3:41","nodeType":"YulLiteral","src":"18157:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"18162:1:41","nodeType":"YulLiteral","src":"18162:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18153:3:41","nodeType":"YulIdentifier","src":"18153:3:41"},"nativeSrc":"18153:11:41","nodeType":"YulFunctionCall","src":"18153:11:41"},{"kind":"number","nativeSrc":"18166:1:41","nodeType":"YulLiteral","src":"18166:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18149:3:41","nodeType":"YulIdentifier","src":"18149:3:41"},"nativeSrc":"18149:19:41","nodeType":"YulFunctionCall","src":"18149:19:41"}],"functionName":{"name":"and","nativeSrc":"18137:3:41","nodeType":"YulIdentifier","src":"18137:3:41"},"nativeSrc":"18137:32:41","nodeType":"YulFunctionCall","src":"18137:32:41"}],"functionName":{"name":"mstore","nativeSrc":"18119:6:41","nodeType":"YulIdentifier","src":"18119:6:41"},"nativeSrc":"18119:51:41","nodeType":"YulFunctionCall","src":"18119:51:41"},"nativeSrc":"18119:51:41","nodeType":"YulExpressionStatement","src":"18119:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18190:9:41","nodeType":"YulIdentifier","src":"18190:9:41"},{"kind":"number","nativeSrc":"18201:2:41","nodeType":"YulLiteral","src":"18201:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18186:3:41","nodeType":"YulIdentifier","src":"18186:3:41"},"nativeSrc":"18186:18:41","nodeType":"YulFunctionCall","src":"18186:18:41"},{"arguments":[{"name":"value1","nativeSrc":"18210:6:41","nodeType":"YulIdentifier","src":"18210:6:41"},{"arguments":[{"kind":"number","nativeSrc":"18222:3:41","nodeType":"YulLiteral","src":"18222:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"18227:10:41","nodeType":"YulLiteral","src":"18227:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"18218:3:41","nodeType":"YulIdentifier","src":"18218:3:41"},"nativeSrc":"18218:20:41","nodeType":"YulFunctionCall","src":"18218:20:41"}],"functionName":{"name":"and","nativeSrc":"18206:3:41","nodeType":"YulIdentifier","src":"18206:3:41"},"nativeSrc":"18206:33:41","nodeType":"YulFunctionCall","src":"18206:33:41"}],"functionName":{"name":"mstore","nativeSrc":"18179:6:41","nodeType":"YulIdentifier","src":"18179:6:41"},"nativeSrc":"18179:61:41","nodeType":"YulFunctionCall","src":"18179:61:41"},"nativeSrc":"18179:61:41","nodeType":"YulExpressionStatement","src":"18179:61:41"}]},"name":"abi_encode_tuple_t_address_t_bytes4__to_t_address_t_bytes4__fromStack_reversed","nativeSrc":"17947:299:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18035:9:41","nodeType":"YulTypedName","src":"18035:9:41","type":""},{"name":"value1","nativeSrc":"18046:6:41","nodeType":"YulTypedName","src":"18046:6:41","type":""},{"name":"value0","nativeSrc":"18054:6:41","nodeType":"YulTypedName","src":"18054:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18065:4:41","nodeType":"YulTypedName","src":"18065:4:41","type":""}],"src":"17947:299:41"},{"body":{"nativeSrc":"18380:119:41","nodeType":"YulBlock","src":"18380:119:41","statements":[{"nativeSrc":"18390:26:41","nodeType":"YulAssignment","src":"18390:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"18402:9:41","nodeType":"YulIdentifier","src":"18402:9:41"},{"kind":"number","nativeSrc":"18413:2:41","nodeType":"YulLiteral","src":"18413:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18398:3:41","nodeType":"YulIdentifier","src":"18398:3:41"},"nativeSrc":"18398:18:41","nodeType":"YulFunctionCall","src":"18398:18:41"},"variableNames":[{"name":"tail","nativeSrc":"18390:4:41","nodeType":"YulIdentifier","src":"18390:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18432:9:41","nodeType":"YulIdentifier","src":"18432:9:41"},{"name":"value0","nativeSrc":"18443:6:41","nodeType":"YulIdentifier","src":"18443:6:41"}],"functionName":{"name":"mstore","nativeSrc":"18425:6:41","nodeType":"YulIdentifier","src":"18425:6:41"},"nativeSrc":"18425:25:41","nodeType":"YulFunctionCall","src":"18425:25:41"},"nativeSrc":"18425:25:41","nodeType":"YulExpressionStatement","src":"18425:25:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18470:9:41","nodeType":"YulIdentifier","src":"18470:9:41"},{"kind":"number","nativeSrc":"18481:2:41","nodeType":"YulLiteral","src":"18481:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18466:3:41","nodeType":"YulIdentifier","src":"18466:3:41"},"nativeSrc":"18466:18:41","nodeType":"YulFunctionCall","src":"18466:18:41"},{"name":"value1","nativeSrc":"18486:6:41","nodeType":"YulIdentifier","src":"18486:6:41"}],"functionName":{"name":"mstore","nativeSrc":"18459:6:41","nodeType":"YulIdentifier","src":"18459:6:41"},"nativeSrc":"18459:34:41","nodeType":"YulFunctionCall","src":"18459:34:41"},"nativeSrc":"18459:34:41","nodeType":"YulExpressionStatement","src":"18459:34:41"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"18251:248:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18341:9:41","nodeType":"YulTypedName","src":"18341:9:41","type":""},{"name":"value1","nativeSrc":"18352:6:41","nodeType":"YulTypedName","src":"18352:6:41","type":""},{"name":"value0","nativeSrc":"18360:6:41","nodeType":"YulTypedName","src":"18360:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18371:4:41","nodeType":"YulTypedName","src":"18371:4:41","type":""}],"src":"18251:248:41"},{"body":{"nativeSrc":"18641:52:41","nodeType":"YulBlock","src":"18641:52:41","statements":[{"nativeSrc":"18651:36:41","nodeType":"YulAssignment","src":"18651:36:41","value":{"arguments":[{"name":"value0","nativeSrc":"18675:6:41","nodeType":"YulIdentifier","src":"18675:6:41"},{"name":"pos","nativeSrc":"18683:3:41","nodeType":"YulIdentifier","src":"18683:3:41"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"18658:16:41","nodeType":"YulIdentifier","src":"18658:16:41"},"nativeSrc":"18658:29:41","nodeType":"YulFunctionCall","src":"18658:29:41"},"variableNames":[{"name":"end","nativeSrc":"18651:3:41","nodeType":"YulIdentifier","src":"18651:3:41"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"18504:189:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"18617:3:41","nodeType":"YulTypedName","src":"18617:3:41","type":""},{"name":"value0","nativeSrc":"18622:6:41","nodeType":"YulTypedName","src":"18622:6:41","type":""}],"returnVariables":[{"name":"end","nativeSrc":"18633:3:41","nodeType":"YulTypedName","src":"18633:3:41","type":""}],"src":"18504:189:41"},{"body":{"nativeSrc":"18845:216:41","nodeType":"YulBlock","src":"18845:216:41","statements":[{"nativeSrc":"18855:26:41","nodeType":"YulAssignment","src":"18855:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"18867:9:41","nodeType":"YulIdentifier","src":"18867:9:41"},{"kind":"number","nativeSrc":"18878:2:41","nodeType":"YulLiteral","src":"18878:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"18863:3:41","nodeType":"YulIdentifier","src":"18863:3:41"},"nativeSrc":"18863:18:41","nodeType":"YulFunctionCall","src":"18863:18:41"},"variableNames":[{"name":"tail","nativeSrc":"18855:4:41","nodeType":"YulIdentifier","src":"18855:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18897:9:41","nodeType":"YulIdentifier","src":"18897:9:41"},{"arguments":[{"name":"value0","nativeSrc":"18912:6:41","nodeType":"YulIdentifier","src":"18912:6:41"},{"kind":"number","nativeSrc":"18920:10:41","nodeType":"YulLiteral","src":"18920:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"18908:3:41","nodeType":"YulIdentifier","src":"18908:3:41"},"nativeSrc":"18908:23:41","nodeType":"YulFunctionCall","src":"18908:23:41"}],"functionName":{"name":"mstore","nativeSrc":"18890:6:41","nodeType":"YulIdentifier","src":"18890:6:41"},"nativeSrc":"18890:42:41","nodeType":"YulFunctionCall","src":"18890:42:41"},"nativeSrc":"18890:42:41","nodeType":"YulExpressionStatement","src":"18890:42:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18952:9:41","nodeType":"YulIdentifier","src":"18952:9:41"},{"kind":"number","nativeSrc":"18963:2:41","nodeType":"YulLiteral","src":"18963:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18948:3:41","nodeType":"YulIdentifier","src":"18948:3:41"},"nativeSrc":"18948:18:41","nodeType":"YulFunctionCall","src":"18948:18:41"},{"arguments":[{"name":"value1","nativeSrc":"18972:6:41","nodeType":"YulIdentifier","src":"18972:6:41"},{"kind":"number","nativeSrc":"18980:14:41","nodeType":"YulLiteral","src":"18980:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"18968:3:41","nodeType":"YulIdentifier","src":"18968:3:41"},"nativeSrc":"18968:27:41","nodeType":"YulFunctionCall","src":"18968:27:41"}],"functionName":{"name":"mstore","nativeSrc":"18941:6:41","nodeType":"YulIdentifier","src":"18941:6:41"},"nativeSrc":"18941:55:41","nodeType":"YulFunctionCall","src":"18941:55:41"},"nativeSrc":"18941:55:41","nodeType":"YulExpressionStatement","src":"18941:55:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19016:9:41","nodeType":"YulIdentifier","src":"19016:9:41"},{"kind":"number","nativeSrc":"19027:2:41","nodeType":"YulLiteral","src":"19027:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19012:3:41","nodeType":"YulIdentifier","src":"19012:3:41"},"nativeSrc":"19012:18:41","nodeType":"YulFunctionCall","src":"19012:18:41"},{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"19046:6:41","nodeType":"YulIdentifier","src":"19046:6:41"}],"functionName":{"name":"iszero","nativeSrc":"19039:6:41","nodeType":"YulIdentifier","src":"19039:6:41"},"nativeSrc":"19039:14:41","nodeType":"YulFunctionCall","src":"19039:14:41"}],"functionName":{"name":"iszero","nativeSrc":"19032:6:41","nodeType":"YulIdentifier","src":"19032:6:41"},"nativeSrc":"19032:22:41","nodeType":"YulFunctionCall","src":"19032:22:41"}],"functionName":{"name":"mstore","nativeSrc":"19005:6:41","nodeType":"YulIdentifier","src":"19005:6:41"},"nativeSrc":"19005:50:41","nodeType":"YulFunctionCall","src":"19005:50:41"},"nativeSrc":"19005:50:41","nodeType":"YulExpressionStatement","src":"19005:50:41"}]},"name":"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed","nativeSrc":"18698:363:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18798:9:41","nodeType":"YulTypedName","src":"18798:9:41","type":""},{"name":"value2","nativeSrc":"18809:6:41","nodeType":"YulTypedName","src":"18809:6:41","type":""},{"name":"value1","nativeSrc":"18817:6:41","nodeType":"YulTypedName","src":"18817:6:41","type":""},{"name":"value0","nativeSrc":"18825:6:41","nodeType":"YulTypedName","src":"18825:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18836:4:41","nodeType":"YulTypedName","src":"18836:4:41","type":""}],"src":"18698:363:41"},{"body":{"nativeSrc":"19191:157:41","nodeType":"YulBlock","src":"19191:157:41","statements":[{"nativeSrc":"19201:26:41","nodeType":"YulAssignment","src":"19201:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"19213:9:41","nodeType":"YulIdentifier","src":"19213:9:41"},{"kind":"number","nativeSrc":"19224:2:41","nodeType":"YulLiteral","src":"19224:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19209:3:41","nodeType":"YulIdentifier","src":"19209:3:41"},"nativeSrc":"19209:18:41","nodeType":"YulFunctionCall","src":"19209:18:41"},"variableNames":[{"name":"tail","nativeSrc":"19201:4:41","nodeType":"YulIdentifier","src":"19201:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19243:9:41","nodeType":"YulIdentifier","src":"19243:9:41"},{"arguments":[{"name":"value0","nativeSrc":"19258:6:41","nodeType":"YulIdentifier","src":"19258:6:41"},{"kind":"number","nativeSrc":"19266:10:41","nodeType":"YulLiteral","src":"19266:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"19254:3:41","nodeType":"YulIdentifier","src":"19254:3:41"},"nativeSrc":"19254:23:41","nodeType":"YulFunctionCall","src":"19254:23:41"}],"functionName":{"name":"mstore","nativeSrc":"19236:6:41","nodeType":"YulIdentifier","src":"19236:6:41"},"nativeSrc":"19236:42:41","nodeType":"YulFunctionCall","src":"19236:42:41"},"nativeSrc":"19236:42:41","nodeType":"YulExpressionStatement","src":"19236:42:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19298:9:41","nodeType":"YulIdentifier","src":"19298:9:41"},{"kind":"number","nativeSrc":"19309:2:41","nodeType":"YulLiteral","src":"19309:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19294:3:41","nodeType":"YulIdentifier","src":"19294:3:41"},"nativeSrc":"19294:18:41","nodeType":"YulFunctionCall","src":"19294:18:41"},{"arguments":[{"name":"value1","nativeSrc":"19318:6:41","nodeType":"YulIdentifier","src":"19318:6:41"},{"kind":"number","nativeSrc":"19326:14:41","nodeType":"YulLiteral","src":"19326:14:41","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19314:3:41","nodeType":"YulIdentifier","src":"19314:3:41"},"nativeSrc":"19314:27:41","nodeType":"YulFunctionCall","src":"19314:27:41"}],"functionName":{"name":"mstore","nativeSrc":"19287:6:41","nodeType":"YulIdentifier","src":"19287:6:41"},"nativeSrc":"19287:55:41","nodeType":"YulFunctionCall","src":"19287:55:41"},"nativeSrc":"19287:55:41","nodeType":"YulExpressionStatement","src":"19287:55:41"}]},"name":"abi_encode_tuple_t_uint32_t_uint48__to_t_uint32_t_uint48__fromStack_reversed","nativeSrc":"19066:282:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19152:9:41","nodeType":"YulTypedName","src":"19152:9:41","type":""},{"name":"value1","nativeSrc":"19163:6:41","nodeType":"YulTypedName","src":"19163:6:41","type":""},{"name":"value0","nativeSrc":"19171:6:41","nodeType":"YulTypedName","src":"19171:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19182:4:41","nodeType":"YulTypedName","src":"19182:4:41","type":""}],"src":"19066:282:41"},{"body":{"nativeSrc":"19431:177:41","nodeType":"YulBlock","src":"19431:177:41","statements":[{"body":{"nativeSrc":"19477:16:41","nodeType":"YulBlock","src":"19477:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19486:1:41","nodeType":"YulLiteral","src":"19486:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"19489:1:41","nodeType":"YulLiteral","src":"19489:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19479:6:41","nodeType":"YulIdentifier","src":"19479:6:41"},"nativeSrc":"19479:12:41","nodeType":"YulFunctionCall","src":"19479:12:41"},"nativeSrc":"19479:12:41","nodeType":"YulExpressionStatement","src":"19479:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"19452:7:41","nodeType":"YulIdentifier","src":"19452:7:41"},{"name":"headStart","nativeSrc":"19461:9:41","nodeType":"YulIdentifier","src":"19461:9:41"}],"functionName":{"name":"sub","nativeSrc":"19448:3:41","nodeType":"YulIdentifier","src":"19448:3:41"},"nativeSrc":"19448:23:41","nodeType":"YulFunctionCall","src":"19448:23:41"},{"kind":"number","nativeSrc":"19473:2:41","nodeType":"YulLiteral","src":"19473:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"19444:3:41","nodeType":"YulIdentifier","src":"19444:3:41"},"nativeSrc":"19444:32:41","nodeType":"YulFunctionCall","src":"19444:32:41"},"nativeSrc":"19441:52:41","nodeType":"YulIf","src":"19441:52:41"},{"nativeSrc":"19502:36:41","nodeType":"YulVariableDeclaration","src":"19502:36:41","value":{"arguments":[{"name":"headStart","nativeSrc":"19528:9:41","nodeType":"YulIdentifier","src":"19528:9:41"}],"functionName":{"name":"calldataload","nativeSrc":"19515:12:41","nodeType":"YulIdentifier","src":"19515:12:41"},"nativeSrc":"19515:23:41","nodeType":"YulFunctionCall","src":"19515:23:41"},"variables":[{"name":"value","nativeSrc":"19506:5:41","nodeType":"YulTypedName","src":"19506:5:41","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"19572:5:41","nodeType":"YulIdentifier","src":"19572:5:41"}],"functionName":{"name":"validator_revert_address","nativeSrc":"19547:24:41","nodeType":"YulIdentifier","src":"19547:24:41"},"nativeSrc":"19547:31:41","nodeType":"YulFunctionCall","src":"19547:31:41"},"nativeSrc":"19547:31:41","nodeType":"YulExpressionStatement","src":"19547:31:41"},{"nativeSrc":"19587:15:41","nodeType":"YulAssignment","src":"19587:15:41","value":{"name":"value","nativeSrc":"19597:5:41","nodeType":"YulIdentifier","src":"19597:5:41"},"variableNames":[{"name":"value0","nativeSrc":"19587:6:41","nodeType":"YulIdentifier","src":"19587:6:41"}]}]},"name":"abi_decode_tuple_t_address_payable","nativeSrc":"19353:255:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19397:9:41","nodeType":"YulTypedName","src":"19397:9:41","type":""},{"name":"dataEnd","nativeSrc":"19408:7:41","nodeType":"YulTypedName","src":"19408:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"19420:6:41","nodeType":"YulTypedName","src":"19420:6:41","type":""}],"src":"19353:255:41"},{"body":{"nativeSrc":"19661:122:41","nodeType":"YulBlock","src":"19661:122:41","statements":[{"nativeSrc":"19671:51:41","nodeType":"YulAssignment","src":"19671:51:41","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"19687:1:41","nodeType":"YulIdentifier","src":"19687:1:41"},{"kind":"number","nativeSrc":"19690:10:41","nodeType":"YulLiteral","src":"19690:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"19683:3:41","nodeType":"YulIdentifier","src":"19683:3:41"},"nativeSrc":"19683:18:41","nodeType":"YulFunctionCall","src":"19683:18:41"},{"arguments":[{"name":"y","nativeSrc":"19707:1:41","nodeType":"YulIdentifier","src":"19707:1:41"},{"kind":"number","nativeSrc":"19710:10:41","nodeType":"YulLiteral","src":"19710:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"19703:3:41","nodeType":"YulIdentifier","src":"19703:3:41"},"nativeSrc":"19703:18:41","nodeType":"YulFunctionCall","src":"19703:18:41"}],"functionName":{"name":"sub","nativeSrc":"19679:3:41","nodeType":"YulIdentifier","src":"19679:3:41"},"nativeSrc":"19679:43:41","nodeType":"YulFunctionCall","src":"19679:43:41"},"variableNames":[{"name":"diff","nativeSrc":"19671:4:41","nodeType":"YulIdentifier","src":"19671:4:41"}]},{"body":{"nativeSrc":"19755:22:41","nodeType":"YulBlock","src":"19755:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"19757:16:41","nodeType":"YulIdentifier","src":"19757:16:41"},"nativeSrc":"19757:18:41","nodeType":"YulFunctionCall","src":"19757:18:41"},"nativeSrc":"19757:18:41","nodeType":"YulExpressionStatement","src":"19757:18:41"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"19737:4:41","nodeType":"YulIdentifier","src":"19737:4:41"},{"kind":"number","nativeSrc":"19743:10:41","nodeType":"YulLiteral","src":"19743:10:41","type":"","value":"0xffffffff"}],"functionName":{"name":"gt","nativeSrc":"19734:2:41","nodeType":"YulIdentifier","src":"19734:2:41"},"nativeSrc":"19734:20:41","nodeType":"YulFunctionCall","src":"19734:20:41"},"nativeSrc":"19731:46:41","nodeType":"YulIf","src":"19731:46:41"}]},"name":"checked_sub_t_uint32","nativeSrc":"19613:170:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"19643:1:41","nodeType":"YulTypedName","src":"19643:1:41","type":""},{"name":"y","nativeSrc":"19646:1:41","nodeType":"YulTypedName","src":"19646:1:41","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"19652:4:41","nodeType":"YulTypedName","src":"19652:4:41","type":""}],"src":"19613:170:41"},{"body":{"nativeSrc":"19924:130:41","nodeType":"YulBlock","src":"19924:130:41","statements":[{"nativeSrc":"19934:26:41","nodeType":"YulAssignment","src":"19934:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"19946:9:41","nodeType":"YulIdentifier","src":"19946:9:41"},{"kind":"number","nativeSrc":"19957:2:41","nodeType":"YulLiteral","src":"19957:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19942:3:41","nodeType":"YulIdentifier","src":"19942:3:41"},"nativeSrc":"19942:18:41","nodeType":"YulFunctionCall","src":"19942:18:41"},"variableNames":[{"name":"tail","nativeSrc":"19934:4:41","nodeType":"YulIdentifier","src":"19934:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19976:9:41","nodeType":"YulIdentifier","src":"19976:9:41"},{"arguments":[{"name":"value0","nativeSrc":"19991:6:41","nodeType":"YulIdentifier","src":"19991:6:41"},{"kind":"number","nativeSrc":"19999:4:41","nodeType":"YulLiteral","src":"19999:4:41","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"19987:3:41","nodeType":"YulIdentifier","src":"19987:3:41"},"nativeSrc":"19987:17:41","nodeType":"YulFunctionCall","src":"19987:17:41"}],"functionName":{"name":"mstore","nativeSrc":"19969:6:41","nodeType":"YulIdentifier","src":"19969:6:41"},"nativeSrc":"19969:36:41","nodeType":"YulFunctionCall","src":"19969:36:41"},"nativeSrc":"19969:36:41","nodeType":"YulExpressionStatement","src":"19969:36:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20025:9:41","nodeType":"YulIdentifier","src":"20025:9:41"},{"kind":"number","nativeSrc":"20036:2:41","nodeType":"YulLiteral","src":"20036:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20021:3:41","nodeType":"YulIdentifier","src":"20021:3:41"},"nativeSrc":"20021:18:41","nodeType":"YulFunctionCall","src":"20021:18:41"},{"name":"value1","nativeSrc":"20041:6:41","nodeType":"YulIdentifier","src":"20041:6:41"}],"functionName":{"name":"mstore","nativeSrc":"20014:6:41","nodeType":"YulIdentifier","src":"20014:6:41"},"nativeSrc":"20014:34:41","nodeType":"YulFunctionCall","src":"20014:34:41"},"nativeSrc":"20014:34:41","nodeType":"YulExpressionStatement","src":"20014:34:41"}]},"name":"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"19788:266:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19885:9:41","nodeType":"YulTypedName","src":"19885:9:41","type":""},{"name":"value1","nativeSrc":"19896:6:41","nodeType":"YulTypedName","src":"19896:6:41","type":""},{"name":"value0","nativeSrc":"19904:6:41","nodeType":"YulTypedName","src":"19904:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19915:4:41","nodeType":"YulTypedName","src":"19915:4:41","type":""}],"src":"19788:266:41"}]},"contents":"{\n    { }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_array_bytes4_dyn_calldata(offset, end) -> arrayPos, length\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        length := calldataload(offset)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        arrayPos := add(offset, 0x20)\n        if gt(add(add(offset, shl(5, length)), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_uint64(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_array$_t_bytes4_$dyn_calldata_ptrt_uint64(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_bytes4_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        value3 := abi_decode_uint64(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_uint64(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        if iszero(eq(value_1, iszero(iszero(value_1)))) { revert(0, 0) }\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_decode_bytes_calldata(offset, end) -> arrayPos, length\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        length := calldataload(offset)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        arrayPos := add(offset, 0x20)\n        if gt(add(add(offset, length), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_uint64t_addresst_uint32(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        let value := calldataload(add(headStart, 32))\n        validator_revert_address(value)\n        value1 := value\n        value2 := abi_decode_uint32(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_uint64t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        let value := calldataload(add(headStart, 32))\n        validator_revert_address(value)\n        value1 := value\n    }\n    function abi_encode_tuple_t_uint48_t_uint32_t_uint32_t_uint48__to_t_uint48_t_uint32_t_uint32_t_uint48__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(value0, 0xffffffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n        mstore(add(headStart, 64), and(value2, 0xffffffff))\n        mstore(add(headStart, 96), and(value3, 0xffffffffffff))\n    }\n    function abi_decode_tuple_t_uint64t_uint64(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        value1 := abi_decode_uint64(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bytes32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_encode_tuple_t_uint48__to_t_uint48__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffff))\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function validator_revert_bytes4(value)\n    {\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_bytes4(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_bytes4(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_uint64t_string_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_decode_tuple_t_uint64t_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        value1 := abi_decode_uint32(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let offset := calldataload(add(headStart, 64))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value2_1, value3_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_array_bytes4_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n    }\n    function abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let tail_1 := add(headStart, 32)\n        mstore(headStart, 32)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let tail_2 := add(add(headStart, shl(5, length)), 64)\n        let srcPtr := add(value0, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, headStart), not(63)))\n            let _1 := mload(srcPtr)\n            let length_1 := mload(_1)\n            mstore(tail_2, length_1)\n            mcopy(add(tail_2, 32), add(_1, 32), length_1)\n            mstore(add(add(tail_2, length_1), 32), 0)\n            tail_2 := add(add(tail_2, and(add(length_1, 31), not(31))), 32)\n            srcPtr := add(srcPtr, 32)\n            pos := add(pos, 32)\n        }\n        tail := tail_2\n    }\n    function abi_decode_tuple_t_addresst_addresst_bytes4(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_bytes4(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_bool_t_uint32__to_t_bool_t_uint32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, iszero(iszero(value0)))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n    }\n    function abi_decode_tuple_t_addresst_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := abi_decode_uint32(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_bytes_calldata_ptrt_uint48(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        let value_1 := calldataload(add(headStart, 64))\n        if iszero(eq(value_1, and(value_1, 0xffffffffffff))) { revert(0, 0) }\n        value3 := value_1\n    }\n    function abi_encode_tuple_t_bytes32_t_uint32__to_t_bytes32_t_uint32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_bytes4(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, shl(224, 0xffffffff)))\n    }\n    function abi_encode_string_calldata(start, length, pos) -> end\n    {\n        mstore(pos, length)\n        calldatacopy(add(pos, 0x20), start, length)\n        mstore(add(add(pos, length), 0x20), 0)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_string_calldata_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string_calldata(value0, value1, add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bytes4(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_address_t_bytes_calldata_ptr__to_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), 96)\n        tail := abi_encode_string_calldata(value2, value3, add(headStart, 96))\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n    {\n        if gt(startIndex, endIndex) { revert(0, 0) }\n        if gt(endIndex, length) { revert(0, 0) }\n        offsetOut := add(offset, startIndex)\n        lengthOut := sub(endIndex, startIndex)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function access_calldata_tail_t_bytes_calldata_ptr(base_ref, ptr_to_tail) -> addr, length\n    {\n        let rel_offset_of_tail := calldataload(ptr_to_tail)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(30)))) { revert(0, 0) }\n        let addr_1 := add(base_ref, rel_offset_of_tail)\n        length := calldataload(addr_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        addr := add(addr_1, 0x20)\n        if sgt(addr, sub(calldatasize(), length)) { revert(0, 0) }\n    }\n    function abi_encode_bytes(value, pos) -> end\n    {\n        let length := mload(value)\n        mcopy(pos, add(value, 0x20), length)\n        let _1 := add(pos, length)\n        mstore(_1, 0)\n        end := _1\n    }\n    function abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value2, value1, value0) -> end\n    {\n        calldatacopy(pos, value0, value1)\n        let _1 := add(pos, value1)\n        mstore(_1, 0)\n        end := abi_encode_bytes(value2, _1)\n    }\n    function abi_encode_tuple_t_address_t_address_t_address_t_bytes4__to_t_address_t_address_t_address_t_bytes4__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 96), and(value3, shl(224, 0xffffffff)))\n    }\n    function checked_add_t_uint48(x, y) -> sum\n    {\n        sum := add(and(x, 0xffffffffffff), and(y, 0xffffffffffff))\n        if gt(sum, 0xffffffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_uint48_t_address_t_address_t_bytes_calldata_ptr__to_t_uint48_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, 0xffffffffffff))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 96), 128)\n        tail := abi_encode_string_calldata(value3, value4, add(headStart, 128))\n    }\n    function abi_encode_tuple_t_address_t_uint64__to_t_address_t_uint64__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, shl(224, 0xffffffff)))\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, shl(224, 0xffffffff))\n        if lt(len, 4)\n        {\n            value := and(and(_1, shl(shl(3, sub(4, len)), shl(224, 0xffffffff))), shl(224, 0xffffffff))\n        }\n    }\n    function abi_encode_tuple_t_address_t_bytes4__to_t_address_t_bytes4__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, shl(224, 0xffffffff)))\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        end := abi_encode_bytes(value0, pos)\n    }\n    function abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffff))\n        mstore(add(headStart, 64), iszero(iszero(value2)))\n    }\n    function abi_encode_tuple_t_uint32_t_uint48__to_t_uint32_t_uint48__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffff))\n    }\n    function abi_decode_tuple_t_address_payable(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffff), and(y, 0xffffffff))\n        if gt(diff, 0xffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), value1)\n    }\n}","id":41,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"6080604052600436106101db575f3560e01c80636d5115bd116100fd578063b700961311610092578063d22b598911610062578063d22b598914610636578063d6bb62c614610655578063f801a69814610674578063fe0776f5146106ad575f5ffd5b8063b7009613146105a8578063b7d2b162146105e3578063cc1b6c8114610602578063d1f856ee14610617575f5ffd5b8063a166aa89116100cd578063a166aa8914610501578063a64d95ce14610530578063abd9bd2a1461054f578063ac9650d81461057c575f5ffd5b80636d5115bd1461049157806375b238fc146104b0578063853551b8146104c357806394c7d7ee146104e2575f5ffd5b806330cae187116101735780634665096d116101435780634665096d146104035780634c1da1e2146104185780635296295214610437578063530dd45614610456575f5ffd5b806330cae1871461035c5780633adc277a1461037b5780633ca7c02a146103b15780634136a33c146103cb575f5ffd5b806318ff183c116101ae57806318ff183c146102b25780631cff79cd146102d157806325c471a0146102e45780633078f11414610303575f5ffd5b806308d6122d146101df5780630b0a93ba1461020057806312be87271461025f578063167bd39514610293575b5f5ffd5b3480156101ea575f5ffd5b506101fe6101f936600461218f565b6106cc565b005b34801561020b575f5ffd5b5061024261021a3660046121f1565b6001600160401b039081165f9081526001602081905260409091200154600160401b90041690565b6040516001600160401b0390911681526020015b60405180910390f35b34801561026a575f5ffd5b5061027e6102793660046121f1565b61071e565b60405163ffffffff9091168152602001610256565b34801561029e575f5ffd5b506101fe6102ad36600461220a565b610758565b3480156102bd575f5ffd5b506101fe6102cc366004612245565b61076e565b61027e6102df3660046122ae565b6107d0565b3480156102ef575f5ffd5b506101fe6102fe366004612311565b6108fc565b34801561030e575f5ffd5b5061032261031d366004612353565b61091e565b604051610256949392919065ffffffffffff948516815263ffffffff93841660208201529190921660408201529116606082015260800190565b348015610367575f5ffd5b506101fe61037636600461236d565b6109b7565b348015610386575f5ffd5b5061039a61039536600461239e565b6109c9565b60405165ffffffffffff9091168152602001610256565b3480156103bc575f5ffd5b506102426001600160401b0381565b3480156103d6575f5ffd5b5061027e6103e536600461239e565b5f90815260026020526040902054600160301b900463ffffffff1690565b34801561040e575f5ffd5b5062093a8061027e565b348015610423575f5ffd5b5061027e6104323660046123b5565b6109fa565b348015610442575f5ffd5b506101fe61045136600461236d565b610a27565b348015610461575f5ffd5b506102426104703660046121f1565b6001600160401b039081165f90815260016020819052604090912001541690565b34801561049c575f5ffd5b506102426104ab3660046123e5565b610a39565b3480156104bb575f5ffd5b506102425f81565b3480156104ce575f5ffd5b506101fe6104dd366004612411565b610a73565b3480156104ed575f5ffd5b506101fe6104fc3660046122ae565b610b0a565b34801561050c575f5ffd5b5061052061051b3660046123b5565b610bb4565b6040519015158152602001610256565b34801561053b575f5ffd5b506101fe61054a36600461242c565b610bdb565b34801561055a575f5ffd5b5061056e610569366004612454565b610bed565b604051908152602001610256565b348015610587575f5ffd5b5061059b6105963660046124b4565b610c25565b60405161025691906124f2565b3480156105b3575f5ffd5b506105c76105c2366004612576565b610d0a565b60408051921515835263ffffffff909116602083015201610256565b3480156105ee575f5ffd5b506101fe6105fd366004612353565b610d8b565b34801561060d575f5ffd5b506206978061027e565b348015610622575f5ffd5b506105c7610631366004612353565b610da2565b348015610641575f5ffd5b506101fe6106503660046125be565b610e26565b348015610660575f5ffd5b5061027e61066f366004612454565b610e38565b34801561067f575f5ffd5b5061069361068e3660046125da565b610f8b565b6040805192835263ffffffff909116602083015201610256565b3480156106b8575f5ffd5b506101fe6106c7366004612353565b6110cc565b6106d46110f5565b5f5b828110156107175761070f858585848181106106f4576106f4612647565b9050602002016020810190610709919061265b565b8461116c565b6001016106d6565b5050505050565b6001600160401b0381165f9081526001602081905260408220015461075290600160801b90046001600160701b03166111ed565b92915050565b6107606110f5565b61076a828261120b565b5050565b6107766110f5565b604051637a9e5e4b60e01b81526001600160a01b038281166004830152831690637a9e5e4b906024015f604051808303815f87803b1580156107b6575f5ffd5b505af11580156107c8573d5f5f3e3d5ffd5b505050505050565b5f3381806107e08388888861127c565b91509150811580156107f6575063ffffffff8116155b1561084957828761080788886112cd565b6040516381c6f24b60e01b81526001600160a01b0393841660048201529290911660248301526001600160e01b03191660448201526064015b60405180910390fd5b5f61085684898989610bed565b90505f63ffffffff831615158061087c5750610871826109c9565b65ffffffffffff1615155b1561088d5761088a826112e4565b90505b6003546108a38a61089e8b8b6112cd565b6113e2565b6003819055506108ea8a8a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250349250611424915050565b506003559450505050505b9392505050565b6109046110f5565b61091883836109128661071e565b846114c4565b50505050565b6001600160401b0382165f9081526001602090815260408083206001600160a01b03851684529091528120805465ffffffffffff1691908190819060ff825c161561098a57805461097e90600160301b90046001600160701b031661170a565b919550935091506109ad565b80546109a590600160301b90046001600160701b031661172b565b919550935091505b5092959194509250565b6109bf6110f5565b61076a828261173f565b5f8181526002602052604081205465ffffffffffff166109e8816117e2565b6109f257806108f5565b5f9392505050565b6001600160a01b0381165f90815260208190526040812060010154610752906001600160701b03166111ed565b610a2f6110f5565b61076a8282611810565b6001600160a01b0382165f908152602081815260408083206001600160e01b0319851684529091529020546001600160401b031692915050565b610a7b6110f5565b6001600160401b0383161580610a9957506001600160401b03838116145b15610ac25760405163061c6a4360e21b81526001600160401b0384166004820152602401610840565b826001600160401b03167f1256f5b5ecb89caec12db449738f2fbcd1ba5806cf38f35413f4e5c15bf6a4508383604051610afd92919061269e565b60405180910390a2505050565b60408051638fb3603760e01b80825291513392918391638fb36037916004808201926020929091908290030181865afa158015610b49573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b6d91906126b9565b6001600160e01b03191614610ba057604051630641fee960e31b81526001600160a01b0382166004820152602401610840565b610717610baf85838686610bed565b6112e4565b6001600160a01b03165f90815260208190526040902060010154600160701b900460ff1690565b610be36110f5565b61076a82826118c1565b5f84848484604051602001610c0594939291906126d4565b604051602081830303815290604052805190602001209050949350505050565b604080515f815260208101909152606090826001600160401b03811115610c4e57610c4e61273b565b604051908082528060200260200182016040528015610c8157816020015b6060815260200190600190039081610c6c5790505b5091505f5b83811015610d0257610cdd30868684818110610ca457610ca4612647565b9050602002810190610cb6919061274f565b85604051602001610cc9939291906127a8565b6040516020818303038152906040526119d0565b838281518110610cef57610cef612647565b6020908102919091010152600101610c86565b505092915050565b5f5f610d1584610bb4565b15610d2457505f905080610d83565b306001600160a01b03861603610d4857610d3e8484611a42565b5f91509150610d83565b5f610d538585610a39565b90505f5f610d618389610da2565b9150915081610d71575f5f610d7b565b63ffffffff811615815b945094505050505b935093915050565b610d936110f5565b610d9d8282611a58565b505050565b5f8067fffffffffffffffe196001600160401b03851601610dc85750600190505f610e1f565b5f5f610dd4868661091e565b5050915091508165ffffffffffff165f14158015610e14575060ff5f5c1680610e145750610e00611b41565b65ffffffffffff168265ffffffffffff1611155b93509150610e1f9050565b9250929050565b610e2e6110f5565b61076a8282611b50565b5f3381610e4585856112cd565b90505f610e5488888888610bed565b5f8181526002602052604081205491925065ffffffffffff9091169003610e915760405163060a299b60e41b815260048101829052602401610840565b826001600160a01b0316886001600160a01b031614610f2a575f610eb55f85610da2565b5090505f610ecf610ec961021a8b87610a39565b86610da2565b50905081158015610ede575080155b15610f2757604051630ff89d4760e21b81526001600160a01b038087166004830152808c1660248301528a1660448201526001600160e01b031985166064820152608401610840565b50505b5f81815260026020526040808220805465ffffffffffff1916908190559051600160301b90910463ffffffff1691829184917fbd9ac67a6e2f6463b80927326310338bcbb4bdb7936ce1365ea3e01067e7b9f791a398975050505050505050565b5f803381610f9b8289898961127c565b9150505f8163ffffffff16610fae611b41565b610fb891906127bd565b905063ffffffff82161580610fee57505f8665ffffffffffff16118015610fee57508065ffffffffffff168665ffffffffffff16105b15610fff5782896108078a8a6112cd565b6110198665ffffffffffff168265ffffffffffff16611c0b565b9550611027838a8a8a610bed565b945061103285611c1a565b5f8581526002602052604090819020805465ffffffffffff891669ffffffffffffffffffff19821617600160301b9182900463ffffffff90811660010190811692830291909117909255915190955086907f82a2da5dee54ea8021c6545b4444620291e07ee83be6dd57edb175062715f3b4906110b8908a9088908f908f908f906127db565b60405180910390a350505094509492505050565b6001600160a01b0381163314610d9357604051635f159e6360e01b815260040160405180910390fd5b335f80611103838236611c66565b9150915081610d9d578063ffffffff165f0361115d575f6111248136611d29565b5060405163f07e038f60e01b81526001600160a01b03871660048201526001600160401b03821660248201529092506044019050610840565b610918610baf84305f36610bed565b6001600160a01b0383165f818152602081815260408083206001600160e01b0319871680855290835292819020805467ffffffffffffffff19166001600160401b038716908117909155905192835292917f9ea6790c7dadfd01c9f8b9762b3682607af2c7e79e05a9f9fdf5580dde949151910160405180910390a3505050565b5f5f611201836001600160701b031661172b565b5090949350505050565b6001600160a01b0382165f81815260208190526040908190206001018054841515600160701b0260ff60701b19909116179055517f90d4e7bb7e5d933792b3562e1741306f8be94837e1348dacef9b6f1df56eb1389061127090841515815260200190565b60405180910390a25050565b5f80306001600160a01b038616036112a257611299868585611c66565b915091506112c4565b600483106112be576112b986866105c287876112cd565b611299565b505f9050805b94509492505050565b5f6112db6004828486612714565b6108f591612820565b5f8181526002602052604081205465ffffffffffff811690600160301b900463ffffffff1681830361132c5760405163060a299b60e41b815260048101859052602401610840565b611334611b41565b65ffffffffffff168265ffffffffffff16111561136757604051630c65b5bd60e11b815260048101859052602401610840565b611370826117e2565b1561139157604051631e2975b960e21b815260048101859052602401610840565b5f84815260026020526040808220805465ffffffffffff191690555163ffffffff83169186917f76a2a46953689d4861a5d3f6ed883ad7e6af674a21f8e162707159fc9dde614d9190a39392505050565b604080516001600160a01b03939093166020808501919091526001600160e01b0319929092168382015280518084038201815260609093019052815191012090565b6060814710156114505760405163cf47918160e01b815247600482015260248101839052604401610840565b5f5f856001600160a01b0316848660405161146b9190612858565b5f6040518083038185875af1925050503d805f81146114a5576040519150601f19603f3d011682016040523d82523d5f602084013e6114aa565b606091505b50915091506114ba868383611f0f565b9695505050505050565b5f67fffffffffffffffe196001600160401b038616016115025760405163061c6a4360e21b81526001600160401b0386166004820152602401610840565b6001600160401b0385165f9081526001602090815260408083206001600160a01b038816845290915281205465ffffffffffff16159081156115f2578463ffffffff1661154d611b41565b61155791906127bd565b905060405180604001604052808265ffffffffffff1681526020016115858663ffffffff1663ffffffff1690565b6001600160701b039081169091526001600160401b0389165f9081526001602090815260408083206001600160a01b038c1684528252909120835181549490920151909216600160301b026001600160a01b031990931665ffffffffffff9091161791909117905561169c565b6001600160401b0387165f9081526001602090815260408083206001600160a01b038a16845290915281205461163b91600160301b9091046001600160701b0316908690611f6b565b6001600160401b0389165f9081526001602090815260408083206001600160a01b038c168452909152902080546001600160701b03909316600160301b0273ffffffffffffffffffffffffffff000000000000199093169290921790915590505b6040805163ffffffff8616815265ffffffffffff831660208201528315158183015290516001600160a01b038816916001600160401b038a16917ff98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf9181900360600190a35095945050505050565b5f5f5f61171e84611719612011565b612020565b9250925092509193909250565b5f5f5f61171e8461173a611b41565b612072565b6001600160401b038216158061175d57506001600160401b03828116145b156117865760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b038281165f818152600160208190526040808320909101805467ffffffffffffffff19169486169485179055517f1fd6dd7631312dfac2205b52913f99de03b4d7e381d5d27d3dbfe0713e6e63409190a35050565b5f6117eb611b41565b65ffffffffffff1661180062093a80846127bd565b65ffffffffffff16111592915050565b6001600160401b038216158061182e57506001600160401b03828116145b156118575760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b038281165f81815260016020819052604080832090910180546fffffffffffffffff00000000000000001916600160401b958716958602179055517f7a8059630b897b5de4c08ade69f8b90c3ead1f8596d62d10b6c4d14a0afb4ae29190a35050565b67fffffffffffffffe196001600160401b038316016118fe5760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b0382165f9081526001602081905260408220015461193790600160801b90046001600160701b03168362069780611f6b565b6001600160401b0385165f818152600160208190526040918290200180546001600160701b03909516600160801b026dffffffffffffffffffffffffffff60801b199095169490941790935591519092507ffeb69018ee8b8fd50ea86348f1267d07673379f72cffdeccec63853ee8ce8b4890610afd908590859063ffffffff92909216825265ffffffffffff16602082015260400190565b60605f5f846001600160a01b0316846040516119ec9190612858565b5f60405180830381855af49150503d805f8114611a24576040519150601f19603f3d011682016040523d82523d5f602084013e611a29565b606091505b5091509150611a39858383611f0f565b95945050505050565b5f611a4d83836113e2565b600354149392505050565b5f67fffffffffffffffe196001600160401b03841601611a965760405163061c6a4360e21b81526001600160401b0384166004820152602401610840565b6001600160401b0383165f9081526001602090815260408083206001600160a01b038616845290915281205465ffffffffffff169003611ad757505f610752565b6001600160401b0383165f8181526001602090815260408083206001600160a01b038716808552925280832080546001600160a01b0319169055519092917ff229baa593af28c41b1d16b748cd7688f0c83aaf92d4be41c44005defe84c16691a350600192915050565b5f611b4b426120be565b905090565b6001600160a01b0382165f90815260208190526040812060010154611b82906001600160701b03168362069780611f6b565b6001600160a01b0385165f818152602081815260409182902060010180546dffffffffffffffffffffffffffff19166001600160701b039690961695909517909455805163ffffffff8716815265ffffffffffff841694810194909452919350917fa56b76017453f399ec2327ba00375dbfb1fd070ff854341ad6191e6a2e2de19c9101610afd565b5f8282188284110282186108f5565b5f8181526002602052604090205465ffffffffffff168015801590611c455750611c43816117e2565b155b1561076a5760405163813e945960e01b815260048101839052602401610840565b5f806004831015611c7b57505f905080610d83565b306001600160a01b03861603611c9e57610d3e30611c9986866112cd565b611a42565b5f5f5f611cab8787611d29565b92509250925082158015611cc35750611cc330610bb4565b15611cd6575f5f94509450505050610d83565b5f5f611ce2848b610da2565b9150915081611cfb575f5f965096505050505050610d83565b611d118363ffffffff168263ffffffff16611c0b565b63ffffffff8116159b909a5098505050505050505050565b5f80806004841015611d4257505f915081905080611f08565b5f611d4d86866112cd565b90506001600160e01b031981166310a6aa3760e31b1480611d7e57506001600160e01b031981166330cae18760e01b145b80611d9957506001600160e01b0319811663294b14a960e11b145b80611db457506001600160e01b03198116635326cae760e11b145b80611dcf57506001600160e01b0319811663d22b598960e01b145b15611de45760015f5f93509350935050611f08565b6001600160e01b0319811663063fc60f60e21b1480611e1357506001600160e01b0319811663167bd39560e01b145b80611e2e57506001600160e01b031981166308d6122d60e01b145b15611e6d575f611e4260246004888a612714565b810190611e4f91906123b5565b90505f611e5b826109fa565b600196505f95509350611f0892505050565b6001600160e01b0319811663012e238d60e51b1480611e9c57506001600160e01b03198116635be958b160e11b145b15611ef4575f611eb060246004888a612714565b810190611ebd91906121f1565b90506001611ee6826001600160401b039081165f90815260016020819052604090912001541690565b5f9450945094505050611f08565b5f611eff3083610a39565b5f935093509350505b9250925092565b606082611f2457611f1f826120f4565b6108f5565b8151158015611f3b57506001600160a01b0384163b155b15611f6457604051639996b31560e01b81526001600160a01b0385166004820152602401610840565b50806108f5565b5f5f5f611f80866001600160701b03166111ed565b90505f611fbb8563ffffffff168763ffffffff168463ffffffff1611611fa6575f611fb0565b611fb08885612863565b63ffffffff16611c0b565b90508063ffffffff16611fcc611b41565b611fd691906127bd565b925063ffffffff8616602083901b67ffffffff0000000016604085901b6dffffffffffff000000000000000016171793505050935093915050565b5f611b4b6407915ecc006120be565b5f808069ffffffffffffffffffff602086901c166001600160701b03861665ffffffffffff604088901c811690871681111561205e57828282612062565b815f5f5b9550955095505050509250925092565b69ffffffffffffffffffff602083901c166001600160701b03831665ffffffffffff604085901c81169084168111156120ad578282826120b1565b815f5f5b9250925092509250925092565b5f65ffffffffffff8211156120f0576040516306dfcc6560e41b81526030600482015260248101839052604401610840565b5090565b8051156121045780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b50565b6001600160a01b038116811461211d575f5ffd5b5f5f83601f840112612144575f5ffd5b5081356001600160401b0381111561215a575f5ffd5b6020830191508360208260051b8501011115610e1f575f5ffd5b80356001600160401b038116811461218a575f5ffd5b919050565b5f5f5f5f606085870312156121a2575f5ffd5b84356121ad81612120565b935060208501356001600160401b038111156121c7575f5ffd5b6121d387828801612134565b90945092506121e6905060408601612174565b905092959194509250565b5f60208284031215612201575f5ffd5b6108f582612174565b5f5f6040838503121561221b575f5ffd5b823561222681612120565b91506020830135801515811461223a575f5ffd5b809150509250929050565b5f5f60408385031215612256575f5ffd5b823561226181612120565b9150602083013561223a81612120565b5f5f83601f840112612281575f5ffd5b5081356001600160401b03811115612297575f5ffd5b602083019150836020828501011115610e1f575f5ffd5b5f5f5f604084860312156122c0575f5ffd5b83356122cb81612120565b925060208401356001600160401b038111156122e5575f5ffd5b6122f186828701612271565b9497909650939450505050565b803563ffffffff8116811461218a575f5ffd5b5f5f5f60608486031215612323575f5ffd5b61232c84612174565b9250602084013561233c81612120565b915061234a604085016122fe565b90509250925092565b5f5f60408385031215612364575f5ffd5b61226183612174565b5f5f6040838503121561237e575f5ffd5b61238783612174565b915061239560208401612174565b90509250929050565b5f602082840312156123ae575f5ffd5b5035919050565b5f602082840312156123c5575f5ffd5b81356108f581612120565b6001600160e01b03198116811461211d575f5ffd5b5f5f604083850312156123f6575f5ffd5b823561240181612120565b9150602083013561223a816123d0565b5f5f5f60408486031215612423575f5ffd5b6122cb84612174565b5f5f6040838503121561243d575f5ffd5b61244683612174565b9150612395602084016122fe565b5f5f5f5f60608587031215612467575f5ffd5b843561247281612120565b9350602085013561248281612120565b925060408501356001600160401b0381111561249c575f5ffd5b6124a887828801612271565b95989497509550505050565b5f5f602083850312156124c5575f5ffd5b82356001600160401b038111156124da575f5ffd5b6124e685828601612134565b90969095509350505050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b8281101561256a57603f19878603018452815180518087528060208301602089015e5f602082890101526020601f19601f83011688010196505050602082019150602084019350600181019050612518565b50929695505050505050565b5f5f5f60608486031215612588575f5ffd5b833561259381612120565b925060208401356125a381612120565b915060408401356125b3816123d0565b809150509250925092565b5f5f604083850312156125cf575f5ffd5b823561244681612120565b5f5f5f5f606085870312156125ed575f5ffd5b84356125f881612120565b935060208501356001600160401b03811115612612575f5ffd5b61261e87828801612271565b909450925050604085013565ffffffffffff8116811461263c575f5ffd5b939692955090935050565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561266b575f5ffd5b81356108f5816123d0565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b602081525f6126b1602083018486612676565b949350505050565b5f602082840312156126c9575f5ffd5b81516108f5816123d0565b6001600160a01b038581168252841660208201526060604082018190525f906114ba9083018486612676565b634e487b7160e01b5f52601160045260245ffd5b5f5f85851115612722575f5ffd5b8386111561272e575f5ffd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f5f8335601e19843603018112612764575f5ffd5b8301803591506001600160401b0382111561277d575f5ffd5b602001915036819003821315610e1f575f5ffd5b5f81518060208401855e5f93019283525090919050565b828482375f8382015f81526114ba8185612791565b65ffffffffffff818116838216019081111561075257610752612700565b65ffffffffffff861681526001600160a01b038581166020830152841660408201526080606082018190525f906128159083018486612676565b979650505050505050565b80356001600160e01b03198116906004841015612851576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f6108f58284612791565b63ffffffff82811682821603908111156107525761075261270056fea2646970667358221220e5651ef5cf3ba574508e0f1368da9c614b1c943795416bdf235ce37eaf23841164736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1DB JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6D5115BD GT PUSH2 0xFD JUMPI DUP1 PUSH4 0xB7009613 GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xD22B5989 GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xD22B5989 EQ PUSH2 0x636 JUMPI DUP1 PUSH4 0xD6BB62C6 EQ PUSH2 0x655 JUMPI DUP1 PUSH4 0xF801A698 EQ PUSH2 0x674 JUMPI DUP1 PUSH4 0xFE0776F5 EQ PUSH2 0x6AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB7009613 EQ PUSH2 0x5A8 JUMPI DUP1 PUSH4 0xB7D2B162 EQ PUSH2 0x5E3 JUMPI DUP1 PUSH4 0xCC1B6C81 EQ PUSH2 0x602 JUMPI DUP1 PUSH4 0xD1F856EE EQ PUSH2 0x617 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA166AA89 GT PUSH2 0xCD JUMPI DUP1 PUSH4 0xA166AA89 EQ PUSH2 0x501 JUMPI DUP1 PUSH4 0xA64D95CE EQ PUSH2 0x530 JUMPI DUP1 PUSH4 0xABD9BD2A EQ PUSH2 0x54F JUMPI DUP1 PUSH4 0xAC9650D8 EQ PUSH2 0x57C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6D5115BD EQ PUSH2 0x491 JUMPI DUP1 PUSH4 0x75B238FC EQ PUSH2 0x4B0 JUMPI DUP1 PUSH4 0x853551B8 EQ PUSH2 0x4C3 JUMPI DUP1 PUSH4 0x94C7D7EE EQ PUSH2 0x4E2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x30CAE187 GT PUSH2 0x173 JUMPI DUP1 PUSH4 0x4665096D GT PUSH2 0x143 JUMPI DUP1 PUSH4 0x4665096D EQ PUSH2 0x403 JUMPI DUP1 PUSH4 0x4C1DA1E2 EQ PUSH2 0x418 JUMPI DUP1 PUSH4 0x52962952 EQ PUSH2 0x437 JUMPI DUP1 PUSH4 0x530DD456 EQ PUSH2 0x456 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x30CAE187 EQ PUSH2 0x35C JUMPI DUP1 PUSH4 0x3ADC277A EQ PUSH2 0x37B JUMPI DUP1 PUSH4 0x3CA7C02A EQ PUSH2 0x3B1 JUMPI DUP1 PUSH4 0x4136A33C EQ PUSH2 0x3CB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18FF183C GT PUSH2 0x1AE JUMPI DUP1 PUSH4 0x18FF183C EQ PUSH2 0x2B2 JUMPI DUP1 PUSH4 0x1CFF79CD EQ PUSH2 0x2D1 JUMPI DUP1 PUSH4 0x25C471A0 EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0x3078F114 EQ PUSH2 0x303 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8D6122D EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0xB0A93BA EQ PUSH2 0x200 JUMPI DUP1 PUSH4 0x12BE8727 EQ PUSH2 0x25F JUMPI DUP1 PUSH4 0x167BD395 EQ PUSH2 0x293 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x1F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x218F JUMP JUMPDEST PUSH2 0x6CC JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x20B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x21A CALLDATASIZE PUSH1 0x4 PUSH2 0x21F1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x26A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x279 CALLDATASIZE PUSH1 0x4 PUSH2 0x21F1 JUMP JUMPDEST PUSH2 0x71E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x29E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2AD CALLDATASIZE PUSH1 0x4 PUSH2 0x220A JUMP JUMPDEST PUSH2 0x758 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2CC CALLDATASIZE PUSH1 0x4 PUSH2 0x2245 JUMP JUMPDEST PUSH2 0x76E JUMP JUMPDEST PUSH2 0x27E PUSH2 0x2DF CALLDATASIZE PUSH1 0x4 PUSH2 0x22AE JUMP JUMPDEST PUSH2 0x7D0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2FE CALLDATASIZE PUSH1 0x4 PUSH2 0x2311 JUMP JUMPDEST PUSH2 0x8FC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x30E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x322 PUSH2 0x31D CALLDATASIZE PUSH1 0x4 PUSH2 0x2353 JUMP JUMPDEST PUSH2 0x91E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x256 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH6 0xFFFFFFFFFFFF SWAP5 DUP6 AND DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP4 DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x40 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x367 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x376 CALLDATASIZE PUSH1 0x4 PUSH2 0x236D JUMP JUMPDEST PUSH2 0x9B7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x386 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x39A PUSH2 0x395 CALLDATASIZE PUSH1 0x4 PUSH2 0x239E JUMP JUMPDEST PUSH2 0x9C9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x3E5 CALLDATASIZE PUSH1 0x4 PUSH2 0x239E JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x40E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x93A80 PUSH2 0x27E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x423 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x432 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B5 JUMP JUMPDEST PUSH2 0x9FA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x442 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x451 CALLDATASIZE PUSH1 0x4 PUSH2 0x236D JUMP JUMPDEST PUSH2 0xA27 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x461 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x470 CALLDATASIZE PUSH1 0x4 PUSH2 0x21F1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x49C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x4AB CALLDATASIZE PUSH1 0x4 PUSH2 0x23E5 JUMP JUMPDEST PUSH2 0xA39 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x4DD CALLDATASIZE PUSH1 0x4 PUSH2 0x2411 JUMP JUMPDEST PUSH2 0xA73 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x4FC CALLDATASIZE PUSH1 0x4 PUSH2 0x22AE JUMP JUMPDEST PUSH2 0xB0A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x520 PUSH2 0x51B CALLDATASIZE PUSH1 0x4 PUSH2 0x23B5 JUMP JUMPDEST PUSH2 0xBB4 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x54A CALLDATASIZE PUSH1 0x4 PUSH2 0x242C JUMP JUMPDEST PUSH2 0xBDB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x55A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x56E PUSH2 0x569 CALLDATASIZE PUSH1 0x4 PUSH2 0x2454 JUMP JUMPDEST PUSH2 0xBED JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x587 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x59B PUSH2 0x596 CALLDATASIZE PUSH1 0x4 PUSH2 0x24B4 JUMP JUMPDEST PUSH2 0xC25 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x256 SWAP2 SWAP1 PUSH2 0x24F2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5C7 PUSH2 0x5C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x2576 JUMP JUMPDEST PUSH2 0xD0A JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 ISZERO ISZERO DUP4 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x5FD CALLDATASIZE PUSH1 0x4 PUSH2 0x2353 JUMP JUMPDEST PUSH2 0xD8B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x60D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x69780 PUSH2 0x27E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x622 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5C7 PUSH2 0x631 CALLDATASIZE PUSH1 0x4 PUSH2 0x2353 JUMP JUMPDEST PUSH2 0xDA2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x641 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x650 CALLDATASIZE PUSH1 0x4 PUSH2 0x25BE JUMP JUMPDEST PUSH2 0xE26 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x660 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x66F CALLDATASIZE PUSH1 0x4 PUSH2 0x2454 JUMP JUMPDEST PUSH2 0xE38 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x67F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x693 PUSH2 0x68E CALLDATASIZE PUSH1 0x4 PUSH2 0x25DA JUMP JUMPDEST PUSH2 0xF8B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x6C7 CALLDATASIZE PUSH1 0x4 PUSH2 0x2353 JUMP JUMPDEST PUSH2 0x10CC JUMP JUMPDEST PUSH2 0x6D4 PUSH2 0x10F5 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x717 JUMPI PUSH2 0x70F DUP6 DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x6F4 JUMPI PUSH2 0x6F4 PUSH2 0x2647 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x709 SWAP2 SWAP1 PUSH2 0x265B JUMP JUMPDEST DUP5 PUSH2 0x116C JUMP JUMPDEST PUSH1 0x1 ADD PUSH2 0x6D6 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 KECCAK256 ADD SLOAD PUSH2 0x752 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11ED JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x760 PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x120B JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x776 PUSH2 0x10F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x7A9E5E4B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x7A9E5E4B SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x7B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x7C8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 CALLER DUP2 DUP1 PUSH2 0x7E0 DUP4 DUP9 DUP9 DUP9 PUSH2 0x127C JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x7F6 JUMPI POP PUSH4 0xFFFFFFFF DUP2 AND ISZERO JUMPDEST ISZERO PUSH2 0x849 JUMPI DUP3 DUP8 PUSH2 0x807 DUP9 DUP9 PUSH2 0x12CD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x81C6F24B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x856 DUP5 DUP10 DUP10 DUP10 PUSH2 0xBED JUMP JUMPDEST SWAP1 POP PUSH0 PUSH4 0xFFFFFFFF DUP4 AND ISZERO ISZERO DUP1 PUSH2 0x87C JUMPI POP PUSH2 0x871 DUP3 PUSH2 0x9C9 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x88D JUMPI PUSH2 0x88A DUP3 PUSH2 0x12E4 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x8A3 DUP11 PUSH2 0x89E DUP12 DUP12 PUSH2 0x12CD JUMP JUMPDEST PUSH2 0x13E2 JUMP JUMPDEST PUSH1 0x3 DUP2 SWAP1 SSTORE POP PUSH2 0x8EA DUP11 DUP11 DUP11 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP CALLVALUE SWAP3 POP PUSH2 0x1424 SWAP2 POP POP JUMP JUMPDEST POP PUSH1 0x3 SSTORE SWAP5 POP POP POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x904 PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0x918 DUP4 DUP4 PUSH2 0x912 DUP7 PUSH2 0x71E JUMP JUMPDEST DUP5 PUSH2 0x14C4 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP2 SWAP1 DUP2 SWAP1 DUP2 SWAP1 PUSH1 0xFF DUP3 TLOAD AND ISZERO PUSH2 0x98A JUMPI DUP1 SLOAD PUSH2 0x97E SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x170A JUMP JUMPDEST SWAP2 SWAP6 POP SWAP4 POP SWAP2 POP PUSH2 0x9AD JUMP JUMPDEST DUP1 SLOAD PUSH2 0x9A5 SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x172B JUMP JUMPDEST SWAP2 SWAP6 POP SWAP4 POP SWAP2 POP JUMPDEST POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH2 0x9BF PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x173F JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x9E8 DUP2 PUSH2 0x17E2 JUMP JUMPDEST PUSH2 0x9F2 JUMPI DUP1 PUSH2 0x8F5 JUMP JUMPDEST PUSH0 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x752 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11ED JUMP JUMPDEST PUSH2 0xA2F PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x1810 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xA7B PUSH2 0x10F5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ISZERO DUP1 PUSH2 0xA99 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0xAC2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH32 0x1256F5B5ECB89CAEC12DB449738F2FBCD1BA5806CF38F35413F4E5C15BF6A450 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0xAFD SWAP3 SWAP2 SWAP1 PUSH2 0x269E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0x8FB36037 PUSH1 0xE0 SHL DUP1 DUP3 MSTORE SWAP2 MLOAD CALLER SWAP3 SWAP2 DUP4 SWAP2 PUSH4 0x8FB36037 SWAP2 PUSH1 0x4 DUP1 DUP3 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP1 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB49 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xB6D SWAP2 SWAP1 PUSH2 0x26B9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND EQ PUSH2 0xBA0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x641FEE9 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x717 PUSH2 0xBAF DUP6 DUP4 DUP7 DUP7 PUSH2 0xBED JUMP JUMPDEST PUSH2 0x12E4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x70 SHL SWAP1 DIV PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0xBE3 PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x18C1 JUMP JUMPDEST PUSH0 DUP5 DUP5 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xC05 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 SWAP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xC4E JUMPI PUSH2 0xC4E PUSH2 0x273B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xC81 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xC6C JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xD02 JUMPI PUSH2 0xCDD ADDRESS DUP7 DUP7 DUP5 DUP2 DUP2 LT PUSH2 0xCA4 JUMPI PUSH2 0xCA4 PUSH2 0x2647 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xCB6 SWAP2 SWAP1 PUSH2 0x274F JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xCC9 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x27A8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x19D0 JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xCEF JUMPI PUSH2 0xCEF PUSH2 0x2647 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0xC86 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xD15 DUP5 PUSH2 0xBB4 JUMP JUMPDEST ISZERO PUSH2 0xD24 JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xD83 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0xD48 JUMPI PUSH2 0xD3E DUP5 DUP5 PUSH2 0x1A42 JUMP JUMPDEST PUSH0 SWAP2 POP SWAP2 POP PUSH2 0xD83 JUMP JUMPDEST PUSH0 PUSH2 0xD53 DUP6 DUP6 PUSH2 0xA39 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH0 PUSH2 0xD61 DUP4 DUP10 PUSH2 0xDA2 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xD71 JUMPI PUSH0 PUSH0 PUSH2 0xD7B JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO DUP2 JUMPDEST SWAP5 POP SWAP5 POP POP POP POP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD93 PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0xD9D DUP3 DUP3 PUSH2 0x1A58 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND ADD PUSH2 0xDC8 JUMPI POP PUSH1 0x1 SWAP1 POP PUSH0 PUSH2 0xE1F JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xDD4 DUP7 DUP7 PUSH2 0x91E JUMP JUMPDEST POP POP SWAP2 POP SWAP2 POP DUP2 PUSH6 0xFFFFFFFFFFFF AND PUSH0 EQ ISZERO DUP1 ISZERO PUSH2 0xE14 JUMPI POP PUSH1 0xFF PUSH0 TLOAD AND DUP1 PUSH2 0xE14 JUMPI POP PUSH2 0xE00 PUSH2 0x1B41 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO JUMPDEST SWAP4 POP SWAP2 POP PUSH2 0xE1F SWAP1 POP JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xE2E PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x1B50 JUMP JUMPDEST PUSH0 CALLER DUP2 PUSH2 0xE45 DUP6 DUP6 PUSH2 0x12CD JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0xE54 DUP9 DUP9 DUP9 DUP9 PUSH2 0xBED JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP2 SWAP3 POP PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 SUB PUSH2 0xE91 JUMPI PUSH1 0x40 MLOAD PUSH4 0x60A299B PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF2A JUMPI PUSH0 PUSH2 0xEB5 PUSH0 DUP6 PUSH2 0xDA2 JUMP JUMPDEST POP SWAP1 POP PUSH0 PUSH2 0xECF PUSH2 0xEC9 PUSH2 0x21A DUP12 DUP8 PUSH2 0xA39 JUMP JUMPDEST DUP7 PUSH2 0xDA2 JUMP JUMPDEST POP SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xEDE JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xF27 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFF89D47 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND PUSH1 0x4 DUP4 ADD MSTORE DUP1 DUP13 AND PUSH1 0x24 DUP4 ADD MSTORE DUP11 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP6 AND PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x840 JUMP JUMPDEST POP POP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND SWAP1 DUP2 SWAP1 SSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP2 DUP3 SWAP2 DUP5 SWAP2 PUSH32 0xBD9AC67A6E2F6463B80927326310338BCBB4BDB7936CE1365EA3E01067E7B9F7 SWAP2 LOG3 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 CALLER DUP2 PUSH2 0xF9B DUP3 DUP10 DUP10 DUP10 PUSH2 0x127C JUMP JUMPDEST SWAP2 POP POP PUSH0 DUP2 PUSH4 0xFFFFFFFF AND PUSH2 0xFAE PUSH2 0x1B41 JUMP JUMPDEST PUSH2 0xFB8 SWAP2 SWAP1 PUSH2 0x27BD JUMP JUMPDEST SWAP1 POP PUSH4 0xFFFFFFFF DUP3 AND ISZERO DUP1 PUSH2 0xFEE JUMPI POP PUSH0 DUP7 PUSH6 0xFFFFFFFFFFFF AND GT DUP1 ISZERO PUSH2 0xFEE JUMPI POP DUP1 PUSH6 0xFFFFFFFFFFFF AND DUP7 PUSH6 0xFFFFFFFFFFFF AND LT JUMPDEST ISZERO PUSH2 0xFFF JUMPI DUP3 DUP10 PUSH2 0x807 DUP11 DUP11 PUSH2 0x12CD JUMP JUMPDEST PUSH2 0x1019 DUP7 PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x1C0B JUMP JUMPDEST SWAP6 POP PUSH2 0x1027 DUP4 DUP11 DUP11 DUP11 PUSH2 0xBED JUMP JUMPDEST SWAP5 POP PUSH2 0x1032 DUP6 PUSH2 0x1C1A JUMP JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF DUP10 AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF NOT DUP3 AND OR PUSH1 0x1 PUSH1 0x30 SHL SWAP2 DUP3 SWAP1 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH1 0x1 ADD SWAP1 DUP2 AND SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD SWAP1 SWAP6 POP DUP7 SWAP1 PUSH32 0x82A2DA5DEE54EA8021C6545B4444620291E07EE83BE6DD57EDB175062715F3B4 SWAP1 PUSH2 0x10B8 SWAP1 DUP11 SWAP1 DUP9 SWAP1 DUP16 SWAP1 DUP16 SWAP1 DUP16 SWAP1 PUSH2 0x27DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ PUSH2 0xD93 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5F159E63 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH0 DUP1 PUSH2 0x1103 DUP4 DUP3 CALLDATASIZE PUSH2 0x1C66 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xD9D JUMPI DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x115D JUMPI PUSH0 PUSH2 0x1124 DUP2 CALLDATASIZE PUSH2 0x1D29 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0xF07E038F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE SWAP1 SWAP3 POP PUSH1 0x44 ADD SWAP1 POP PUSH2 0x840 JUMP JUMPDEST PUSH2 0x918 PUSH2 0xBAF DUP5 ADDRESS PUSH0 CALLDATASIZE PUSH2 0xBED JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP3 DUP4 MSTORE SWAP3 SWAP2 PUSH32 0x9EA6790C7DADFD01C9F8B9762B3682607AF2C7E79E05A9F9FDF5580DDE949151 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1201 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x172B JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x1 ADD DUP1 SLOAD DUP5 ISZERO ISZERO PUSH1 0x1 PUSH1 0x70 SHL MUL PUSH1 0xFF PUSH1 0x70 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE MLOAD PUSH32 0x90D4E7BB7E5D933792B3562E1741306F8BE94837E1348DACEF9B6F1DF56EB138 SWAP1 PUSH2 0x1270 SWAP1 DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 DUP1 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x12A2 JUMPI PUSH2 0x1299 DUP7 DUP6 DUP6 PUSH2 0x1C66 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x12C4 JUMP JUMPDEST PUSH1 0x4 DUP4 LT PUSH2 0x12BE JUMPI PUSH2 0x12B9 DUP7 DUP7 PUSH2 0x5C2 DUP8 DUP8 PUSH2 0x12CD JUMP JUMPDEST PUSH2 0x1299 JUMP JUMPDEST POP PUSH0 SWAP1 POP DUP1 JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x12DB PUSH1 0x4 DUP3 DUP5 DUP7 PUSH2 0x2714 JUMP JUMPDEST PUSH2 0x8F5 SWAP2 PUSH2 0x2820 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP2 DUP4 SUB PUSH2 0x132C JUMPI PUSH1 0x40 MLOAD PUSH4 0x60A299B PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x1334 PUSH2 0x1B41 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO PUSH2 0x1367 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC65B5BD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x1370 DUP3 PUSH2 0x17E2 JUMP JUMPDEST ISZERO PUSH2 0x1391 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1E2975B9 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND SWAP1 SSTORE MLOAD PUSH4 0xFFFFFFFF DUP4 AND SWAP2 DUP7 SWAP2 PUSH32 0x76A2A46953689D4861A5D3F6ED883AD7E6AF674A21F8E162707159FC9DDE614D SWAP2 SWAP1 LOG3 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP3 SWAP1 SWAP3 AND DUP4 DUP3 ADD MSTORE DUP1 MLOAD DUP1 DUP5 SUB DUP3 ADD DUP2 MSTORE PUSH1 0x60 SWAP1 SWAP4 ADD SWAP1 MSTORE DUP2 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x1450 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0x146B SWAP2 SWAP1 PUSH2 0x2858 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x14A5 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x14AA JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x14BA DUP7 DUP4 DUP4 PUSH2 0x1F0F JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND ADD PUSH2 0x1502 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND ISZERO SWAP1 DUP2 ISZERO PUSH2 0x15F2 JUMPI DUP5 PUSH4 0xFFFFFFFF AND PUSH2 0x154D PUSH2 0x1B41 JUMP JUMPDEST PUSH2 0x1557 SWAP2 SWAP1 PUSH2 0x27BD JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH6 0xFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1585 DUP7 PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 DUP2 AND SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE DUP3 MSTORE SWAP1 SWAP2 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP5 SWAP1 SWAP3 ADD MLOAD SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x169C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH2 0x163B SWAP2 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 DUP7 SWAP1 PUSH2 0x1F6B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000 NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE SWAP1 POP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP7 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE DUP4 ISZERO ISZERO DUP2 DUP4 ADD MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP11 AND SWAP2 PUSH32 0xF98448B987F1428E0E230E1F3C6E2CE15B5693EAF31827FBD0B1EC4B424AE7CF SWAP2 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG3 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x171E DUP5 PUSH2 0x1719 PUSH2 0x2011 JUMP JUMPDEST PUSH2 0x2020 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x171E DUP5 PUSH2 0x173A PUSH2 0x1B41 JUMP JUMPDEST PUSH2 0x2072 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x175D JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1786 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND SWAP5 DUP7 AND SWAP5 DUP6 OR SWAP1 SSTORE MLOAD PUSH32 0x1FD6DD7631312DFAC2205B52913F99DE03B4D7E381D5D27D3DBFE0713E6E6340 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x17EB PUSH2 0x1B41 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x1800 PUSH3 0x93A80 DUP5 PUSH2 0x27BD JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND GT ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x182E JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1857 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH16 0xFFFFFFFFFFFFFFFF0000000000000000 NOT AND PUSH1 0x1 PUSH1 0x40 SHL SWAP6 DUP8 AND SWAP6 DUP7 MUL OR SWAP1 SSTORE MLOAD PUSH32 0x7A8059630B897B5DE4C08ADE69F8B90C3EAD1F8596D62D10B6C4D14A0AFB4AE2 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ADD PUSH2 0x18FE JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 KECCAK256 ADD SLOAD PUSH2 0x1937 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x1F6B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x80 SHL NOT SWAP1 SWAP6 AND SWAP5 SWAP1 SWAP5 OR SWAP1 SWAP4 SSTORE SWAP2 MLOAD SWAP1 SWAP3 POP PUSH32 0xFEB69018EE8B8FD50EA86348F1267D07673379F72CFFDECCEC63853EE8CE8B48 SWAP1 PUSH2 0xAFD SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x19EC SWAP2 SWAP1 PUSH2 0x2858 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1A24 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1A29 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1A39 DUP6 DUP4 DUP4 PUSH2 0x1F0F JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A4D DUP4 DUP4 PUSH2 0x13E2 JUMP JUMPDEST PUSH1 0x3 SLOAD EQ SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND ADD PUSH2 0x1A96 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP1 SUB PUSH2 0x1AD7 JUMPI POP PUSH0 PUSH2 0x752 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE MLOAD SWAP1 SWAP3 SWAP2 PUSH32 0xF229BAA593AF28C41B1D16B748CD7688F0C83AAF92D4BE41C44005DEFE84C166 SWAP2 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1B4B TIMESTAMP PUSH2 0x20BE JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x1B82 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x1F6B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x1 ADD DUP1 SLOAD PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP7 SWAP1 SWAP7 AND SWAP6 SWAP1 SWAP6 OR SWAP1 SWAP5 SSTORE DUP1 MLOAD PUSH4 0xFFFFFFFF DUP8 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP5 AND SWAP5 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE SWAP2 SWAP4 POP SWAP2 PUSH32 0xA56B76017453F399EC2327BA00375DBFB1FD070FF854341AD6191E6A2E2DE19C SWAP2 ADD PUSH2 0xAFD JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 GT MUL DUP3 XOR PUSH2 0x8F5 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x1C45 JUMPI POP PUSH2 0x1C43 DUP2 PUSH2 0x17E2 JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x76A JUMPI PUSH1 0x40 MLOAD PUSH4 0x813E9459 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x4 DUP4 LT ISZERO PUSH2 0x1C7B JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xD83 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x1C9E JUMPI PUSH2 0xD3E ADDRESS PUSH2 0x1C99 DUP7 DUP7 PUSH2 0x12CD JUMP JUMPDEST PUSH2 0x1A42 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1CAB DUP8 DUP8 PUSH2 0x1D29 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP DUP3 ISZERO DUP1 ISZERO PUSH2 0x1CC3 JUMPI POP PUSH2 0x1CC3 ADDRESS PUSH2 0xBB4 JUMP JUMPDEST ISZERO PUSH2 0x1CD6 JUMPI PUSH0 PUSH0 SWAP5 POP SWAP5 POP POP POP POP PUSH2 0xD83 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1CE2 DUP5 DUP12 PUSH2 0xDA2 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x1CFB JUMPI PUSH0 PUSH0 SWAP7 POP SWAP7 POP POP POP POP POP POP PUSH2 0xD83 JUMP JUMPDEST PUSH2 0x1D11 DUP4 PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x1C0B JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO SWAP12 SWAP1 SWAP11 POP SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x1D42 JUMPI POP PUSH0 SWAP2 POP DUP2 SWAP1 POP DUP1 PUSH2 0x1F08 JUMP JUMPDEST PUSH0 PUSH2 0x1D4D DUP7 DUP7 PUSH2 0x12CD JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x10A6AA37 PUSH1 0xE3 SHL EQ DUP1 PUSH2 0x1D7E JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x30CAE187 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1D99 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x294B14A9 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x1DB4 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5326CAE7 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x1DCF JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xD22B5989 PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x1DE4 JUMPI PUSH1 0x1 PUSH0 PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x63FC60F PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x1E13 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x167BD395 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1E2E JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x8D6122D PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x1E6D JUMPI PUSH0 PUSH2 0x1E42 PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x2714 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1E4F SWAP2 SWAP1 PUSH2 0x23B5 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1E5B DUP3 PUSH2 0x9FA JUMP JUMPDEST PUSH1 0x1 SWAP7 POP PUSH0 SWAP6 POP SWAP4 POP PUSH2 0x1F08 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x12E238D PUSH1 0xE5 SHL EQ DUP1 PUSH2 0x1E9C JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5BE958B1 PUSH1 0xE1 SHL EQ JUMPDEST ISZERO PUSH2 0x1EF4 JUMPI PUSH0 PUSH2 0x1EB0 PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x2714 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1EBD SWAP2 SWAP1 PUSH2 0x21F1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH2 0x1EE6 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD AND SWAP1 JUMP JUMPDEST PUSH0 SWAP5 POP SWAP5 POP SWAP5 POP POP POP PUSH2 0x1F08 JUMP JUMPDEST PUSH0 PUSH2 0x1EFF ADDRESS DUP4 PUSH2 0xA39 JUMP JUMPDEST PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0x1F24 JUMPI PUSH2 0x1F1F DUP3 PUSH2 0x20F4 JUMP JUMPDEST PUSH2 0x8F5 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0x1F3B JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x1F64 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST POP DUP1 PUSH2 0x8F5 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1F80 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11ED JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1FBB DUP6 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1FA6 JUMPI PUSH0 PUSH2 0x1FB0 JUMP JUMPDEST PUSH2 0x1FB0 DUP9 DUP6 PUSH2 0x2863 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x1C0B JUMP JUMPDEST SWAP1 POP DUP1 PUSH4 0xFFFFFFFF AND PUSH2 0x1FCC PUSH2 0x1B41 JUMP JUMPDEST PUSH2 0x1FD6 SWAP2 SWAP1 PUSH2 0x27BD JUMP JUMPDEST SWAP3 POP PUSH4 0xFFFFFFFF DUP7 AND PUSH1 0x20 DUP4 SWAP1 SHL PUSH8 0xFFFFFFFF00000000 AND PUSH1 0x40 DUP6 SWAP1 SHL PUSH14 0xFFFFFFFFFFFF0000000000000000 AND OR OR SWAP4 POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1B4B PUSH5 0x7915ECC00 PUSH2 0x20BE JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH10 0xFFFFFFFFFFFFFFFFFFFF PUSH1 0x20 DUP7 SWAP1 SHR AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP7 AND PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 DUP9 SWAP1 SHR DUP2 AND SWAP1 DUP8 AND DUP2 GT ISZERO PUSH2 0x205E JUMPI DUP3 DUP3 DUP3 PUSH2 0x2062 JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH10 0xFFFFFFFFFFFFFFFFFFFF PUSH1 0x20 DUP4 SWAP1 SHR AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP4 AND PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 DUP6 SWAP1 SHR DUP2 AND SWAP1 DUP5 AND DUP2 GT ISZERO PUSH2 0x20AD JUMPI DUP3 DUP3 DUP3 PUSH2 0x20B1 JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH6 0xFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x20F0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x30 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x840 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP1 MLOAD ISZERO PUSH2 0x2104 JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x211D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2144 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x215A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xE1F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x218A JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x21A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x21AD DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x21C7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x21D3 DUP8 DUP3 DUP9 ADD PUSH2 0x2134 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x21E6 SWAP1 POP PUSH1 0x40 DUP7 ADD PUSH2 0x2174 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2201 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x8F5 DUP3 PUSH2 0x2174 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x221B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2226 DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x223A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2256 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2261 DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x223A DUP2 PUSH2 0x2120 JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2281 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2297 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xE1F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x22C0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x22CB DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x22E5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x22F1 DUP7 DUP3 DUP8 ADD PUSH2 0x2271 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x218A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2323 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x232C DUP5 PUSH2 0x2174 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x233C DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP2 POP PUSH2 0x234A PUSH1 0x40 DUP6 ADD PUSH2 0x22FE JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2364 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2261 DUP4 PUSH2 0x2174 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x237E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2387 DUP4 PUSH2 0x2174 JUMP JUMPDEST SWAP2 POP PUSH2 0x2395 PUSH1 0x20 DUP5 ADD PUSH2 0x2174 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23AE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8F5 DUP2 PUSH2 0x2120 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x211D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x23F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2401 DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x223A DUP2 PUSH2 0x23D0 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2423 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x22CB DUP5 PUSH2 0x2174 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x243D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2446 DUP4 PUSH2 0x2174 JUMP JUMPDEST SWAP2 POP PUSH2 0x2395 PUSH1 0x20 DUP5 ADD PUSH2 0x22FE JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2467 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2472 DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x2482 DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x249C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x24A8 DUP8 DUP3 DUP9 ADD PUSH2 0x2271 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x24C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x24DA JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x24E6 DUP6 DUP3 DUP7 ADD PUSH2 0x2134 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD PUSH1 0x20 DUP4 MSTORE DUP1 DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP6 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP7 ADD ADD SWAP3 POP PUSH1 0x20 DUP7 ADD PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x256A JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE DUP2 MLOAD DUP1 MLOAD DUP1 DUP8 MSTORE DUP1 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP10 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP10 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP9 ADD ADD SWAP7 POP POP POP PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x2518 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2588 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x2593 DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x25A3 DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x25B3 DUP2 PUSH2 0x23D0 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x25CF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2446 DUP2 PUSH2 0x2120 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x25ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x25F8 DUP2 PUSH2 0x2120 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2612 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x261E DUP8 DUP3 DUP9 ADD PUSH2 0x2271 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x263C JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x266B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8F5 DUP2 PUSH2 0x23D0 JUMP JUMPDEST DUP2 DUP4 MSTORE DUP2 DUP2 PUSH1 0x20 DUP6 ADD CALLDATACOPY POP PUSH0 DUP3 DUP3 ADD PUSH1 0x20 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND SWAP1 SWAP2 ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x26B1 PUSH1 0x20 DUP4 ADD DUP5 DUP7 PUSH2 0x2676 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x26C9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x8F5 DUP2 PUSH2 0x23D0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x14BA SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x2676 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x2722 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x272E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x2764 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x277D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0xE1F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 DUP2 MLOAD DUP1 PUSH1 0x20 DUP5 ADD DUP6 MCOPY PUSH0 SWAP4 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH0 DUP4 DUP3 ADD PUSH0 DUP2 MSTORE PUSH2 0x14BA DUP2 DUP6 PUSH2 0x2791 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x752 JUMPI PUSH2 0x752 PUSH2 0x2700 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP7 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE DUP5 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x2815 SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x2676 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x2851 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x8F5 DUP3 DUP5 PUSH2 0x2791 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x752 JUMPI PUSH2 0x752 PUSH2 0x2700 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE5 PUSH6 0x1EF5CF3BA574 POP DUP15 0xF SGT PUSH9 0xDA9C614B1C94379541 PUSH12 0xDF235CE37EAF23841164736F PUSH13 0x634300081C0033000000000000 ","sourceMap":"3931:26481:36:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15686:291;;;;;;;;;;-1:-1:-1;15686:291:36;;;;;:::i;:::-;;:::i;:::-;;8873:124;;;;;;;;;;-1:-1:-1;8873:124:36;;;;;:::i;:::-;-1:-1:-1;;;;;8967:14:36;;;8942:6;8967:14;;;:6;:14;;;;;;;;:23;;-1:-1:-1;;;8967:23:36;;;;8873:124;;;;-1:-1:-1;;;;;1695:31:41;;;1677:50;;1665:2;1650:18;8873:124:36;;;;;;;;9038:134;;;;;;;;;;-1:-1:-1;9038:134:36;;;;;:::i;:::-;;:::i;:::-;;;1912:10:41;1900:23;;;1882:42;;1870:2;1855:18;9038:134:36;1738:192:41;17155:133:36;;;;;;;;;;-1:-1:-1;17155:133:36;;;;;:::i;:::-;;:::i;24322:159::-;;;;;;;;;;-1:-1:-1;24322:159:36;;;;;:::i;:::-;;:::i;20269:1238::-;;;;;;:::i;:::-;;:::i;10735:191::-;;;;;;;;;;-1:-1:-1;10735:191:36;;;;;:::i;:::-;;:::i;9213:591::-;;;;;;;;;;-1:-1:-1;9213:591:36;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;4791:14:41;4779:27;;;4761:46;;4855:10;4843:23;;;4838:2;4823:18;;4816:51;4903:23;;;;4898:2;4883:18;;4876:51;4963:27;;4958:2;4943:18;;4936:55;4748:3;4733:19;;4538:459;11423:126:36;;;;;;;;;;-1:-1:-1;11423:126:36;;;;;:::i;:::-;;:::i;17783:184::-;;;;;;;;;;-1:-1:-1;17783:184:36;;;;;:::i;:::-;;:::i;:::-;;;5622:14:41;5610:27;;;5592:46;;5580:2;5565:18;17783:184:36;5448:196:41;5787:53:36;;;;;;;;;;;;-1:-1:-1;;;;;5787:53:36;;18008:111;;;;;;;;;;-1:-1:-1;18008:111:36;;;;;:::i;:::-;18067:6;18092:14;;;:10;:14;;;;;:20;-1:-1:-1;;;18092:20:36;;;;;18008:111;7905:90;;;;;;;;;;-1:-1:-1;7981:7:36;7905:90;;8534:139;;;;;;;;;;-1:-1:-1;8534:139:36;;;;;:::i;:::-;;:::i;11590:138::-;;;;;;;;;;-1:-1:-1;11590:138:36;;;;;:::i;:::-;;:::i;8714:118::-;;;;;;;;;;-1:-1:-1;8714:118:36;;;;;:::i;:::-;-1:-1:-1;;;;;8805:14:36;;;8780:6;8805:14;;;:6;:14;;;;;;;;:20;;;;8714:118;8329:164;;;;;;;;;;-1:-1:-1;8329:164:36;;;;;:::i;:::-;;:::i;5606:52::-;;;;;;;;;;;;5642:16;5606:52;;10438:256;;;;;;;;;;-1:-1:-1;10438:256:36;;;;;:::i;:::-;;:::i;22697:376::-;;;;;;;;;;-1:-1:-1;22697:376:36;;;;;:::i;:::-;;:::i;8166:122::-;;;;;;;;;;-1:-1:-1;8166:122:36;;;;;:::i;:::-;;:::i;:::-;;;7080:14:41;;7073:22;7055:41;;7043:2;7028:18;8166:122:36;6915:187:41;11769:134:36;;;;;;;;;;-1:-1:-1;11769:134:36;;;;;:::i;:::-;;:::i;23980:181::-;;;;;;;;;;-1:-1:-1;23980:181:36;;;;;:::i;:::-;;:::i;:::-;;;8204:25:41;;;8192:2;8177:18;23980:181:36;8058:177:41;1208:484:22;;;;;;;;;;-1:-1:-1;1208:484:22;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7062:802:36:-;;;;;;;;;;-1:-1:-1;7062:802:36;;;;;:::i;:::-;;:::i;:::-;;;;10436:14:41;;10429:22;10411:41;;10500:10;10488:23;;;10483:2;10468:18;;10461:51;10384:18;7062:802:36;10245:273:41;10967:127:36;;;;;;;;;;-1:-1:-1;10967:127:36;;;;;:::i;:::-;;:::i;8036:89::-;;;;;;;;;;-1:-1:-1;8112:6:36;8036:89;;9845:433;;;;;;;;;;-1:-1:-1;9845:433:36;;;;;:::i;:::-;;:::i;16405:147::-;;;;;;;;;;-1:-1:-1;16405:147:36;;;;;:::i;:::-;;:::i;21548:1108::-;;;;;;;;;;-1:-1:-1;21548:1108:36;;;;;:::i;:::-;;:::i;18160:1373::-;;;;;;;;;;-1:-1:-1;18160:1373:36;;;;;:::i;:::-;;:::i;:::-;;;;11744:25:41;;;11817:10;11805:23;;;11800:2;11785:18;;11778:51;11717:18;18160:1373:36;11572:263:41;11135:247:36;;;;;;;;;;-1:-1:-1;11135:247:36;;;;;:::i;:::-;;:::i;15686:291::-;6477:18;:16;:18::i;:::-;15852:9:::1;15847:124;15867:20:::0;;::::1;15847:124;;;15908:52;15931:6;15939:9;;15949:1;15939:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;15953:6;15908:22;:52::i;:::-;15889:3;;15847:124;;;;15686:291:::0;;;;:::o;9038:134::-;-1:-1:-1;;;;;9134:14:36;;9109:6;9134:14;;;:6;:14;;;;;;;:25;;:31;;-1:-1:-1;;;9134:25:36;;-1:-1:-1;;;;;9134:25:36;:29;:31::i;:::-;9127:38;9038:134;-1:-1:-1;;9038:134:36:o;17155:133::-;6477:18;:16;:18::i;:::-;17249:32:::1;17266:6;17274;17249:16;:32::i;:::-;17155:133:::0;;:::o;24322:159::-;6477:18;:16;:18::i;:::-;24425:49:::1;::::0;-1:-1:-1;;;24425:49:36;;-1:-1:-1;;;;;12386:32:41;;;24425:49:36::1;::::0;::::1;12368:51:41::0;24425:35:36;::::1;::::0;::::1;::::0;12341:18:41;;24425:49:36::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24322:159:::0;;:::o;20269:1238::-;20355:6;735:10:20;20355:6:36;;20528:38;735:10:20;20553:6:36;20561:4;;20528:16;:38::i;:::-;20493:73;;;;20627:9;20626:10;:26;;;;-1:-1:-1;20640:12:36;;;;20626:26;20622:131;;;20705:6;20713;20721:20;20736:4;;20721:14;:20::i;:::-;20675:67;;-1:-1:-1;;;20675:67:36;;-1:-1:-1;;;;;12648:32:41;;;20675:67:36;;;12630:51:41;12717:32;;;;12697:18;;;12690:60;-1:-1:-1;;;;;;12786:33:41;12766:18;;;12759:61;12603:18;;20675:67:36;;;;;;;;20622:131;20763:19;20785:35;20799:6;20807;20815:4;;20785:13;:35::i;:::-;20763:57;-1:-1:-1;20830:12:36;21022;;;;;;:45;;;21038:24;21050:11;21038;:24::i;:::-;:29;;;;21022:45;21018:116;;;21091:32;21111:11;21091:19;:32::i;:::-;21083:40;;21018:116;21226:12;;21263:46;21280:6;21288:20;21303:4;;21288:14;:20::i;:::-;21263:16;:46::i;:::-;21248:12;:61;;;;21344:54;21374:6;21382:4;;21344:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21388:9:36;;-1:-1:-1;21344:29:36;;-1:-1:-1;;21344:54:36:i;:::-;-1:-1:-1;21445:12:36;:32;21495:5;-1:-1:-1;;;;;20269:1238:36;;;;;;:::o;10735:191::-;6477:18;:16;:18::i;:::-;10849:70:::1;10860:6;10868:7;10877:25;10895:6;10877:17;:25::i;:::-;10904:14;10849:10;:70::i;:::-;;10735:191:::0;;;:::o;9213:591::-;-1:-1:-1;;;;;9420:14:36;;9315:12;9420:14;;;:6;:14;;;;;;;;-1:-1:-1;;;;;9420:31:36;;;;;;;;;9470:12;;;;;9315;;;;;9496:9;;;;9492:245;;;9619:12;;9560:74;;-1:-1:-1;;;9619:12:36;;-1:-1:-1;;;;;9619:12:36;9560:18;:74::i;:::-;9521:113;;-1:-1:-1;9521:113:36;-1:-1:-1;9521:113:36;-1:-1:-1;9492:245:36;;;9704:12;;:22;;-1:-1:-1;;;9704:12:36;;-1:-1:-1;;;;;9704:12:36;:20;:22::i;:::-;9665:61;;-1:-1:-1;9665:61:36;-1:-1:-1;9665:61:36;-1:-1:-1;9492:245:36;9747:50;9213:591;;;;;;;:::o;11423:126::-;6477:18;:16;:18::i;:::-;11514:28:::1;11528:6;11536:5;11514:13;:28::i;17783:184::-:0;17845:6;17882:14;;;:10;:14;;;;;:24;;;17923:21;17882:24;17923:10;:21::i;:::-;:37;;17951:9;17923:37;;;17947:1;17916:44;17783:184;-1:-1:-1;;;17783:184:36:o;8534:139::-;-1:-1:-1;;;;;8633:16:36;;8608:6;8633:16;;;;;;;;;;:27;;;:33;;-1:-1:-1;;;;;8633:27:36;:31;:33::i;11590:138::-;6477:18;:16;:18::i;:::-;11687:34:::1;11704:6;11712:8;11687:16;:34::i;8329:164::-:0;-1:-1:-1;;;;;8447:16:36;;8422:6;8447:16;;;;;;;;;;;-1:-1:-1;;;;;;8447:39:36;;;;;;;;;;-1:-1:-1;;;;;8447:39:36;8329:164;;;;:::o;10438:256::-;6477:18;:16;:18::i;:::-;-1:-1:-1;;;;;10539:20:36;::::1;::::0;;:45:::1;;-1:-1:-1::0;;;;;;10563:21:36;;::::1;;10539:45;10535:114;;;10607:31;::::0;-1:-1:-1;;;10607:31:36;;-1:-1:-1;;;;;1695:31:41;;10607::36::1;::::0;::::1;1677:50:41::0;1650:18;;10607:31:36::1;1533:200:41::0;10535:114:36::1;10673:6;-1:-1:-1::0;;;;;10663:24:36::1;;10681:5;;10663:24;;;;;;;:::i;:::-;;;;;;;;10438:256:::0;;;:::o;22697:376::-;22830:47;;;-1:-1:-1;;;22830:47:36;;;;;735:10:20;;22881:46:36;735:10:20;;22881:46:36;;22830:47;;;;;;;;;;;;;;;735:10:20;22830:47:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22830:97:36;;22826:175;;22950:40;;-1:-1:-1;;;22950:40:36;;-1:-1:-1;;;;;12386:32:41;;22950:40:36;;;12368:51:41;12341:18;;22950:40:36;12222:203:41;22826:175:36;23010:56;23030:35;23044:6;23052;23060:4;;23030:13;:35::i;:::-;23010:19;:56::i;8166:122::-;-1:-1:-1;;;;;8258:16:36;8235:4;8258:16;;;;;;;;;;:23;;;-1:-1:-1;;;8258:23:36;;;;;8166:122::o;11769:134::-;6477:18;:16;:18::i;:::-;11864:32:::1;11879:6;11887:8;11864:14;:32::i;23980:181::-:0;24085:7;24132:6;24140;24148:4;;24121:32;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24111:43;;;;;;24104:50;;23980:181;;;;;;:::o;1208:484:22:-;1374:12;;;1310:20;1374:12;;;;;;;;1276:22;;1485:4;-1:-1:-1;;;;;1473:24:22;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1463:34:22;-1:-1:-1;1512:9:22;1507:155;1527:15;;;1507:155;;;1576:75;1613:4;1633;;1638:1;1633:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;1642;1620:30;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1576:28;:75::i;:::-;1563:7;1571:1;1563:10;;;;;;;;:::i;:::-;;;;;;;;;;:88;1544:3;;1507:155;;;;1671:14;1208:484;;;;:::o;7062:802:36:-;7187:14;7203:12;7231:22;7246:6;7231:14;:22::i;:::-;7227:631;;;-1:-1:-1;7277:5:36;;-1:-1:-1;7277:5:36;7269:17;;7227:631;7325:4;-1:-1:-1;;;;;7307:23:36;;;7303:555;;7573:30;7586:6;7594:8;7573:12;:30::i;:::-;7605:1;7565:42;;;;;;7303:555;7638:13;7654:39;7676:6;7684:8;7654:21;:39::i;:::-;7638:55;;7708:13;7723:19;7746:23;7754:6;7762;7746:7;:23::i;:::-;7707:62;;;;7790:8;:57;;7838:5;7845:1;7790:57;;;7802:17;;;;:12;7790:57;7783:64;;;;;;;7303:555;7062:802;;;;;;:::o;10967:127::-;6477:18;:16;:18::i;:::-;11059:28:::1;11071:6;11079:7;11059:11;:28::i;:::-;;10967:127:::0;;:::o;9845:433::-;9945:13;;-1:-1:-1;;;;;;;9997:21:36;;;9993:279;;-1:-1:-1;10042:4:36;;-1:-1:-1;10048:1:36;10034:16;;9993:279;10082:19;10103;10130:26;10140:6;10148:7;10130:9;:26::i;:::-;10081:75;;;;;;10178:12;:17;;10194:1;10178:17;;:68;;;;-1:-1:-1;10200:9:36;;;;;:45;;;10229:16;:14;:16::i;:::-;10213:32;;:12;:32;;;;10200:45;10170:91;-1:-1:-1;10248:12:36;-1:-1:-1;10170:91:36;;-1:-1:-1;10170:91:36;9993:279;9845:433;;;;;:::o;16405:147::-;6477:18;:16;:18::i;:::-;16507:38:::1;16528:6;16536:8;16507:20;:38::i;21548:1108::-:0;21641:6;735:10:20;21641:6:36;21719:20;21734:4;;21719:14;:20::i;:::-;21701:38;;21750:19;21772:35;21786:6;21794;21802:4;;21772:13;:35::i;:::-;21821:23;;;;:10;:23;;;;;:33;21750:57;;-1:-1:-1;21821:33:36;;;;:38;;21817:614;;21882:38;;-1:-1:-1;;;21882:38:36;;;;;8204:25:41;;;8177:18;;21882:38:36;8058:177:41;21817:614:36;21951:9;-1:-1:-1;;;;;21941:19:36;:6;-1:-1:-1;;;;;21941:19:36;;21937:494;;22110:12;22128:30;5642:16;22148:9;22128:7;:30::i;:::-;22109:49;;;22173:15;22194:76;22202:56;22218:39;22240:6;22248:8;22218:21;:39::i;22202:56::-;22260:9;22194:7;:76::i;:::-;22172:98;;;22289:7;22288:8;:23;;;;;22301:10;22300:11;22288:23;22284:137;;;22338:68;;-1:-1:-1;;;22338:68:36;;-1:-1:-1;;;;;16123:32:41;;;22338:68:36;;;16105:51:41;16192:32;;;16172:18;;;16165:60;16261:32;;16241:18;;;16234:60;-1:-1:-1;;;;;;16330:33:41;;16310:18;;;16303:61;16077:19;;22338:68:36;15876:494:41;22284:137:36;21962:469;;21937:494;22448:23;;;;:10;:23;;;;;;22441:40;;-1:-1:-1;;22441:40:36;;;;;22589:37;;-1:-1:-1;;;22545:29:36;;;;;;;;22448:23;;22589:37;;;22644:5;21548:1108;-1:-1:-1;;;;;;;;21548:1108:36:o;18160:1373::-;18282:19;;735:10:20;18282:19:36;18468:38;735:10:20;18493:6:36;18501:4;;18468:16;:38::i;:::-;18447:59;;;18517:14;18553:7;18534:26;;:16;:14;:16::i;:::-;:26;;;;:::i;:::-;18517:43;-1:-1:-1;18667:12:36;;;;;:44;;;18691:1;18684:4;:8;;;:26;;;;;18703:7;18696:14;;:4;:14;;;18684:26;18663:149;;;18764:6;18772;18780:20;18795:4;;18780:14;:20::i;18663:149::-;18884:23;18893:4;18884:23;;18899:7;18884:23;;:8;:23::i;:::-;18870:38;;19028:35;19042:6;19050;19058:4;;19028:13;:35::i;:::-;19014:49;;19074:31;19093:11;19074:18;:31::i;:::-;19227:23;;;;:10;:23;;;;;;;:29;;19280:40;;;-1:-1:-1;;19330:37:36;;;-1:-1:-1;;;19227:29:36;;;;;;;;19259:1;19227:33;19330:37;;;;;;;;;;;;;19382:66;;19227:33;;-1:-1:-1;19227:23:36;;19382:66;;;;19280:40;;19427:6;;19435;;19443:4;;;;19382:66;:::i;:::-;;;;;;;;18317:1216;;;18160:1373;;;;;;;:::o;11135:247::-;-1:-1:-1;;;;;11229:34:36;;735:10:20;11229:34:36;11225:102;;11286:30;;-1:-1:-1;;;11286:30:36;;;;;;;;;;;24835:503;735:10:20;24881:14:36;;24953:32;735:10:20;24881:14:36;809::20;24953:12:36;:32::i;:::-;24920:65;;;;25000:9;24995:337;;25029:5;:10;;25038:1;25029:10;25025:297;;25062:19;25087:33;25062:19;809:14:20;25087:21:36;:33::i;:::-;-1:-1:-1;25145:54:36;;-1:-1:-1;;;25145:54:36;;-1:-1:-1;;;;;17285:32:41;;25145:54:36;;;17267:51:41;-1:-1:-1;;;;;17354:31:41;;17334:18;;;17327:59;25059:61:36;;-1:-1:-1;17240:18:41;;;-1:-1:-1;25145:54:36;17095:297:41;25025::36;25238:69;25258:48;25272:6;25288:4;809:14:20;;23980:181:36;:::i;16136:228::-;-1:-1:-1;;;;;16243:16:36;;:8;:16;;;;;;;;;;;-1:-1:-1;;;;;;16243:39:36;;;;;;;;;;;;:48;;-1:-1:-1;;16243:48:36;-1:-1:-1;;;;;16243:48:36;;;;;;;;16306:51;;17541:52:41;;;16243:48:36;:16;16306:51;;17514:18:41;16306:51:36;;;;;;;16136:228;;;:::o;3609:130:32:-;3657:6;3676:12;3696:14;:4;-1:-1:-1;;;;;3696:12:32;;:14::i;:::-;-1:-1:-1;3675:35:32;;3609:130;-1:-1:-1;;;;3609:130:32:o;17458:164:36:-;-1:-1:-1;;;;;17540:16:36;;:8;:16;;;;;;;;;;;;:23;;:32;;;;;-1:-1:-1;;;17540:32:36;-1:-1:-1;;;;17540:32:36;;;;;;17587:28;;;;;17566:6;7080:14:41;7073:22;7055:41;;7043:2;7028:18;;6915:187;17587:28:36;;;;;;;;17458:164;;:::o;27853:378::-;27984:14;;28046:4;-1:-1:-1;;;;;28028:23:36;;;28024:201;;28074:26;28087:6;28095:4;;28074:12;:26::i;:::-;28067:33;;;;;;28024:201;28152:1;28138:15;;:76;;28169:45;28177:6;28185;28193:20;28208:4;;28193:14;:20::i;28169:45::-;28138:76;;;-1:-1:-1;28157:5:36;;-1:-1:-1;28157:5:36;28024:201;27853:378;;;;;;;:::o;30067:116::-;30134:6;30166:9;30173:1;30134:6;30166:4;;:9;:::i;:::-;30159:17;;;:::i;23263:676::-;23339:6;23376:23;;;:10;:23;;;;;:33;;;;;-1:-1:-1;;;23434:29:36;;;;23478:14;;;23474:294;;23515:38;;-1:-1:-1;;;23515:38:36;;;;;8204:25:41;;;8177:18;;23515:38:36;8058:177:41;23474:294:36;23586:16;:14;:16::i;:::-;23574:28;;:9;:28;;;23570:198;;;23625:34;;-1:-1:-1;;;23625:34:36;;;;;8204:25:41;;;8177:18;;23625:34:36;8058:177:41;23570:198:36;23680:21;23691:9;23680:10;:21::i;:::-;23676:92;;;23724:33;;-1:-1:-1;;;23724:33:36;;;;;8204:25:41;;;8177:18;;23724:33:36;8058:177:41;23676:92:36;23785:23;;;;:10;:23;;;;;;23778:40;;-1:-1:-1;;23778:40:36;;;23872:37;;;;;23796:11;;23872:37;;23785:23;23872:37;23927:5;23263:676;-1:-1:-1;;;23263:676:36:o;30257:153::-;30374:28;;;-1:-1:-1;;;;;18137:32:41;;;;30374:28:36;;;;18119:51:41;;;;-1:-1:-1;;;;;;18206:33:41;;;;18186:18;;;18179:61;30374:28:36;;;;;;;;;18092:18:41;;;;30374:28:36;;30364:39;;;;;;30257:153::o;2975:407:19:-;3074:12;3126:5;3102:21;:29;3098:123;;;3154:56;;-1:-1:-1;;;3154:56:19;;3181:21;3154:56;;;18425:25:41;18466:18;;;18459:34;;;18398:18;;3154:56:19;18251:248:41;3098:123:19;3231:12;3245:23;3272:6;-1:-1:-1;;;;;3272:11:19;3291:5;3298:4;3272:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3230:73;;;;3320:55;3347:6;3355:7;3364:10;3320:26;:55::i;:::-;3313:62;2975:407;-1:-1:-1;;;;;;2975:407:19:o;12080:1061:36:-;12238:4;-1:-1:-1;;;;;;;12258:21:36;;;12254:90;;12302:31;;-1:-1:-1;;;12302:31:36;;-1:-1:-1;;;;;1695:31:41;;12302::36;;;1677:50:41;1650:18;;12302:31:36;1533:200:41;12254:90:36;-1:-1:-1;;;;;12371:14:36;;12354;12371;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12371:31:36;;;;;;;;;:37;;;:42;;12446:585;;;;12502:10;12483:29;;:16;:14;:16::i;:::-;:29;;;;:::i;:::-;12475:37;;12560:55;;;;;;;;12575:5;12560:55;;;;;;12589:24;:14;:22;;2589:20:32;;;2508:108;12589:24:36;-1:-1:-1;;;;;12560:55:36;;;;;;-1:-1:-1;;;;;12526:14:36;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12526:31:36;;;;;;;;;:89;;;;;;;;;;;;-1:-1:-1;;;12526:89:36;-1:-1:-1;;;;;;12526:89:36;;;;;;;;;;;;;;12446:585;;;-1:-1:-1;;;;;12907:14:36;;13005:1;12907:14;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12907:31:36;;;;;;;;;:37;:113;;-1:-1:-1;;;12907:37:36;;;-1:-1:-1;;;;;12907:37:36;;12973:14;;12907:48;:113::i;:::-;-1:-1:-1;;;;;12859:14:36;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12859:31:36;;;;;;;;;12858:162;;-1:-1:-1;;;;;12858:162:36;;;-1:-1:-1;;;12858:162:36;-1:-1:-1;;12858:162:36;;;;;;;;;;;-1:-1:-1;12446:585:36;13046:62;;;18920:10:41;18908:23;;18890:42;;18980:14;18968:27;;18963:2;18948:18;;18941:55;19039:14;;19032:22;19012:18;;;19005:50;13046:62:36;;-1:-1:-1;;;;;13046:62:36;;;-1:-1:-1;;;;;13046:62:36;;;;;;;;18878:2:41;13046:62:36;;;-1:-1:-1;13125:9:36;12080:1061;-1:-1:-1;;;;;12080:1061:36:o;3492:129:37:-;3544:6;3552;3560;3585:29;3596:4;3602:11;:9;:11::i;:::-;3585:10;:29::i;:::-;3578:36;;;;;;3492:129;;;;;:::o;3393:159:32:-;3445:18;3465:17;3484:13;3516:29;3527:4;3533:11;:9;:11::i;:::-;3516:10;:29::i;14097:285:36:-;-1:-1:-1;;;;;14180:20:36;;;;:45;;-1:-1:-1;;;;;;14204:21:36;;;;14180:45;14176:114;;;14248:31;;-1:-1:-1;;;14248:31:36;;-1:-1:-1;;;;;1695:31:41;;14248::36;;;1677:50:41;1650:18;;14248:31:36;1533:200:41;14176:114:36;-1:-1:-1;;;;;14300:14:36;;;;;;;:6;:14;;;;;;;;:20;;;:28;;-1:-1:-1;;14300:28:36;;;;;;;;;14344:31;;;14300:14;14344:31;14097:285;;:::o;29823:134::-;29883:4;29934:16;:14;:16::i;:::-;29906:44;;:24;7981:7;29906:9;:24;:::i;:::-;:44;;;;;29823:134;-1:-1:-1;;29823:134:36:o;14701:303::-;-1:-1:-1;;;;;14790:20:36;;;;:45;;-1:-1:-1;;;;;;14814:21:36;;;;14790:45;14786:114;;;14858:31;;-1:-1:-1;;;14858:31:36;;-1:-1:-1;;;;;1695:31:41;;14858::36;;;1677:50:41;1650:18;;14858:31:36;1533:200:41;14786:114:36;-1:-1:-1;;;;;14910:14:36;;;;;;;:6;:14;;;;;;;;:23;;;:34;;-1:-1:-1;;14910:34:36;-1:-1:-1;;;14910:34:36;;;;;;;;;14960:37;;;14910:14;14960:37;14701:303;;:::o;15151:374::-;-1:-1:-1;;;;;;;15238:21:36;;;15234:90;;15282:31;;-1:-1:-1;;;15282:31:36;;-1:-1:-1;;;;;1695:31:41;;15282::36;;;1677:50:41;1650:18;;15282:31:36;1533:200:41;15234:90:36;-1:-1:-1;;;;;15395:14:36;;15334:13;15395:14;;;:6;:14;;;;;;;:25;;:60;;-1:-1:-1;;;15395:25:36;;-1:-1:-1;;;;;15395:25:36;15432:8;8112:6;15395:36;:60::i;:::-;-1:-1:-1;;;;;15358:14:36;;;;;;:6;:14;;;;;;;;;:25;15357:98;;-1:-1:-1;;;;;15357:98:36;;;-1:-1:-1;;;15357:98:36;-1:-1:-1;;;;15357:98:36;;;;;;;;;;15471:47;;15357:98;;-1:-1:-1;15471:47:36;;;;15501:8;;15357:98;;19266:10:41;19254:23;;;;19236:42;;19326:14;19314:27;19309:2;19294:18;;19287:55;19224:2;19209:18;;19066:282;3916:253:19;3999:12;4024;4038:23;4065:6;-1:-1:-1;;;;;4065:19:19;4085:4;4065:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4023:67;;;;4107:55;4134:6;4142:7;4151:10;4107:26;:55::i;:::-;4100:62;3916:253;-1:-1:-1;;;;;3916:253:19:o;29562:157:36:-;29639:4;29678:34;29695:6;29703:8;29678:16;:34::i;:::-;29662:12;;:50;;29562:157;-1:-1:-1;;;29562:157:36:o;13402:400::-;13481:4;-1:-1:-1;;;;;;;13501:21:36;;;13497:90;;13545:31;;-1:-1:-1;;;13545:31:36;;-1:-1:-1;;;;;1695:31:41;;13545::36;;;1677:50:41;1650:18;;13545:31:36;1533:200:41;13497:90:36;-1:-1:-1;;;;;13601:14:36;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;13601:31:36;;;;;;;;;:37;;;:42;;13597:85;;-1:-1:-1;13666:5:36;13659:12;;13597:85;-1:-1:-1;;;;;13699:14:36;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;13699:31:36;;;;;;;;;;13692:38;;-1:-1:-1;;;;;;13692:38:36;;;13746:28;13699:31;;:14;13746:28;;;-1:-1:-1;13791:4:36;13402:400;;;;:::o;750:110:32:-;794:6;819:34;837:15;819:17;:34::i;:::-;812:41;;750:110;:::o;16707:287:36:-;-1:-1:-1;;;;;16860:16:36;;16797:13;16860:16;;;;;;;;;;:27;;;:62;;-1:-1:-1;;;;;16860:27:36;16899:8;8112:6;16860:38;:62::i;:::-;-1:-1:-1;;;;;16821:16:36;;:8;:16;;;;;;;;;;;;:27;;16820:102;;-1:-1:-1;;16820:102:36;-1:-1:-1;;;;;16820:102:36;;;;;;;;;;;16938:49;;19266:10:41;19254:23;;19236:42;;19326:14;19314:27;;19294:18;;;19287:55;;;;16820:102:36;;-1:-1:-1;16821:16:36;16938:49;;19209:18:41;16938:49:36;19066:282:41;3189:111:29;3247:7;3066:5;;;3281;;;3065:36;3060:42;;3273:20;2825:294;19727:272:36;19799:20;19822:23;;;:10;:23;;;;;:33;;;19869:18;;;;;:48;;;19892:25;19903:13;19892:10;:25::i;:::-;19891:26;19869:48;19865:128;;;19940:42;;-1:-1:-1;;;19940:42:36;;;;;8204:25:41;;;8177:18;;19940:42:36;8058:177:41;28335:1107:36;28416:14;;28474:1;28460:15;;28456:63;;;-1:-1:-1;28499:5:36;;-1:-1:-1;28499:5:36;28491:17;;28456:63;28551:4;-1:-1:-1;;;;;28533:23:36;;;28529:334;;28799:49;28820:4;28827:20;28842:4;;28827:14;:20::i;:::-;28799:12;:49::i;28529:334::-;28874:20;28896:13;28911:21;28936:27;28958:4;;28936:21;:27::i;:::-;28873:90;;;;;;29044:15;29043:16;:49;;;;;29063:29;29086:4;29063:14;:29::i;:::-;29039:97;;;29116:5;29123:1;29108:17;;;;;;;;;29039:97;29147:11;29160:21;29185:23;29193:6;29201;29185:7;:23::i;:::-;29146:62;;;;29223:6;29218:55;;29253:5;29260:1;29245:17;;;;;;;;;;;29218:55;29358:40;29367:14;29358:40;;29383:14;29358:40;;:8;:40::i;:::-;29417:10;;;;;;;-1:-1:-1;28335:1107:36;-1:-1:-1;;;;;;;;;28335:1107:36:o;25744:1678::-;25832:20;;;25925:1;25911:15;;25907:66;;;-1:-1:-1;25950:5:36;;-1:-1:-1;25950:5:36;;-1:-1:-1;25950:5:36;25942:20;;25907:66;25983:15;26001:20;26016:4;;26001:14;:20::i;:::-;25983:38;-1:-1:-1;;;;;;;26141:35:36;;-1:-1:-1;;;26141:35:36;;:89;;-1:-1:-1;;;;;;;26192:38:36;;-1:-1:-1;;;26192:38:36;26141:89;:146;;;-1:-1:-1;;;;;;;26246:41:36;;-1:-1:-1;;;26246:41:36;26141:146;:201;;;-1:-1:-1;;;;;;;26303:39:36;;-1:-1:-1;;;26303:39:36;26141:201;:262;;;-1:-1:-1;;;;;;;26358:45:36;;-1:-1:-1;;;26358:45:36;26141:262;26124:343;;;26436:4;5642:16;26454:1;26428:28;;;;;;;;;26124:343;-1:-1:-1;;;;;;26574:41:36;;-1:-1:-1;;;26574:41:36;;:98;;-1:-1:-1;;;;;;;26631:41:36;;-1:-1:-1;;;26631:41:36;26574:98;:161;;;-1:-1:-1;;;;;;;26688:47:36;;-1:-1:-1;;;26688:47:36;26574:161;26557:414;;;26803:14;26831:15;26841:4;26836;26831;;:15;:::i;:::-;26820:38;;;;;;;:::i;:::-;26803:55;;26872:12;26887:27;26907:6;26887:19;:27::i;:::-;26936:4;;-1:-1:-1;5642:16:36;;-1:-1:-1;26872:42:36;-1:-1:-1;26928:32:36;;-1:-1:-1;;;26928:32:36;26557:414;-1:-1:-1;;;;;;27090:35:36;;-1:-1:-1;;;27090:35:36;;:75;;-1:-1:-1;;;;;;;27129:36:36;;-1:-1:-1;;;27129:36:36;27090:75;27086:254;;;27224:13;27251:15;27261:4;27256;27251;;:15;:::i;:::-;27240:37;;;;;;;:::i;:::-;27224:53;;27299:4;27305:20;27318:6;-1:-1:-1;;;;;8805:14:36;;;8780:6;8805:14;;;:6;:14;;;;;;;;:20;;;;8714:118;27305:20;27327:1;27291:38;;;;;;;;;;27086:254;27358:5;27365:46;27395:4;27402:8;27365:21;:46::i;:::-;27413:1;27350:65;;;;;;;25744:1678;;;;;;:::o;4437:582:19:-;4581:12;4610:7;4605:408;;4633:19;4641:10;4633:7;:19::i;:::-;4605:408;;;4857:17;;:22;:49;;;;-1:-1:-1;;;;;;4883:18:19;;;:23;4857:49;4853:119;;;4933:24;;-1:-1:-1;;;4933:24:19;;-1:-1:-1;;;;;12386:32:41;;4933:24:19;;;12368:51:41;12341:18;;4933:24:19;12222:203:41;4853:119:19;-1:-1:-1;4992:10:19;4985:17;;4033:390:32;4154:18;4174:13;4199:12;4214:10;:4;-1:-1:-1;;;;;4214:8:32;;:10::i;:::-;4199:25;;4234:14;4258:61;4267:10;4258:61;;4287:8;4279:16;;:5;:16;;;:39;;4317:1;4279:39;;;4298:16;4306:8;4298:5;:16;:::i;:::-;4258:61;;:8;:61::i;:::-;4234:86;;4353:7;4339:21;;:11;:9;:11::i;:::-;:21;;;;:::i;:::-;4330:30;-1:-1:-1;5126:19:32;;;5120:2;5096:26;;;;;5089:2;5070:21;;;;;5069:54;:76;4370:46;;;;4033:390;;;;;;:::o;816:174:37:-;860:6;939:30;957:11;939:17;:30::i;2998:276::-;3070:6;;;4833:9;4840:2;4833:9;;;;-1:-1:-1;;;;;3161:11:37;;4869:9;4876:2;4869:9;;;;;;3191:19;;;;;:76;;3235:11;3248:10;3260:6;3191:76;;;3214:10;3226:1;3229;3191:76;3184:83;;;;;;;;;2998:276;;;;;:::o;2868:307:32:-;4833:9:37;4840:2;4833:9;;;;-1:-1:-1;;;;;3062:11:32;;4869:9:37;4876:2;4869:9;;;;;;3092:19:32;;;;;:76;;3136:11;3149:10;3161:6;3092:76;;;3115:10;3127:1;3130;3092:76;3085:83;;;;;;2868:307;;;;;:::o;14296:213:30:-;14352:6;14382:16;14374:24;;14370:103;;;14421:41;;-1:-1:-1;;;14421:41:30;;14452:2;14421:41;;;19969:36:41;20021:18;;;20014:34;;;19942:18;;14421:41:30;19788:266:41;14370:103:30;-1:-1:-1;14496:5:30;14296:213::o;5559:487:19:-;5690:17;;:21;5686:354;;5887:10;5881:17;5943:15;5930:10;5926:2;5922:19;5915:44;5686:354;6010:19;;-1:-1:-1;;;6010:19:19;;;;;;;;;;;5686:354;5559:487;:::o;14:131:41:-;-1:-1:-1;;;;;89:31:41;;79:42;;69:70;;135:1;132;125:12;150:366;212:8;222:6;276:3;269:4;261:6;257:17;253:27;243:55;;294:1;291;284:12;243:55;-1:-1:-1;317:20:41;;-1:-1:-1;;;;;349:30:41;;346:50;;;392:1;389;382:12;346:50;429:4;421:6;417:17;405:29;;489:3;482:4;472:6;469:1;465:14;457:6;453:27;449:38;446:47;443:67;;;506:1;503;496:12;521:171;588:20;;-1:-1:-1;;;;;637:30:41;;627:41;;617:69;;682:1;679;672:12;617:69;521:171;;;:::o;697:642::-;799:6;807;815;823;876:2;864:9;855:7;851:23;847:32;844:52;;;892:1;889;882:12;844:52;931:9;918:23;950:31;975:5;950:31;:::i;:::-;1000:5;-1:-1:-1;1056:2:41;1041:18;;1028:32;-1:-1:-1;;;;;1072:30:41;;1069:50;;;1115:1;1112;1105:12;1069:50;1154:69;1215:7;1206:6;1195:9;1191:22;1154:69;:::i;:::-;1242:8;;-1:-1:-1;1128:95:41;-1:-1:-1;1296:37:41;;-1:-1:-1;1329:2:41;1314:18;;1296:37;:::i;:::-;1286:47;;697:642;;;;;;;:::o;1344:184::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;1494:28;1512:9;1494:28;:::i;1935:416::-;2000:6;2008;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2116:9;2103:23;2135:31;2160:5;2135:31;:::i;:::-;2185:5;-1:-1:-1;2242:2:41;2227:18;;2214:32;2284:15;;2277:23;2265:36;;2255:64;;2315:1;2312;2305:12;2255:64;2338:7;2328:17;;;1935:416;;;;;:::o;2356:388::-;2424:6;2432;2485:2;2473:9;2464:7;2460:23;2456:32;2453:52;;;2501:1;2498;2491:12;2453:52;2540:9;2527:23;2559:31;2584:5;2559:31;:::i;:::-;2609:5;-1:-1:-1;2666:2:41;2651:18;;2638:32;2679:33;2638:32;2679:33;:::i;2749:347::-;2800:8;2810:6;2864:3;2857:4;2849:6;2845:17;2841:27;2831:55;;2882:1;2879;2872:12;2831:55;-1:-1:-1;2905:20:41;;-1:-1:-1;;;;;2937:30:41;;2934:50;;;2980:1;2977;2970:12;2934:50;3017:4;3009:6;3005:17;2993:29;;3069:3;3062:4;3053:6;3045;3041:19;3037:30;3034:39;3031:59;;;3086:1;3083;3076:12;3101:544;3180:6;3188;3196;3249:2;3237:9;3228:7;3224:23;3220:32;3217:52;;;3265:1;3262;3255:12;3217:52;3304:9;3291:23;3323:31;3348:5;3323:31;:::i;:::-;3373:5;-1:-1:-1;3429:2:41;3414:18;;3401:32;-1:-1:-1;;;;;3445:30:41;;3442:50;;;3488:1;3485;3478:12;3442:50;3527:58;3577:7;3568:6;3557:9;3553:22;3527:58;:::i;:::-;3101:544;;3604:8;;-1:-1:-1;3501:84:41;;-1:-1:-1;;;;3101:544:41:o;3650:163::-;3717:20;;3777:10;3766:22;;3756:33;;3746:61;;3803:1;3800;3793:12;3818:391;3893:6;3901;3909;3962:2;3950:9;3941:7;3937:23;3933:32;3930:52;;;3978:1;3975;3968:12;3930:52;4001:28;4019:9;4001:28;:::i;:::-;3991:38;;4079:2;4068:9;4064:18;4051:32;4092:31;4117:5;4092:31;:::i;:::-;4142:5;-1:-1:-1;4166:37:41;4199:2;4184:18;;4166:37;:::i;:::-;4156:47;;3818:391;;;;;:::o;4214:319::-;4281:6;4289;4342:2;4330:9;4321:7;4317:23;4313:32;4310:52;;;4358:1;4355;4348:12;4310:52;4381:28;4399:9;4381:28;:::i;5002:256::-;5068:6;5076;5129:2;5117:9;5108:7;5104:23;5100:32;5097:52;;;5145:1;5142;5135:12;5097:52;5168:28;5186:9;5168:28;:::i;:::-;5158:38;;5215:37;5248:2;5237:9;5233:18;5215:37;:::i;:::-;5205:47;;5002:256;;;;;:::o;5263:180::-;5322:6;5375:2;5363:9;5354:7;5350:23;5346:32;5343:52;;;5391:1;5388;5381:12;5343:52;-1:-1:-1;5414:23:41;;5263:180;-1:-1:-1;5263:180:41:o;5649:247::-;5708:6;5761:2;5749:9;5740:7;5736:23;5732:32;5729:52;;;5777:1;5774;5767:12;5729:52;5816:9;5803:23;5835:31;5860:5;5835:31;:::i;5901:131::-;-1:-1:-1;;;;;;5975:32:41;;5965:43;;5955:71;;6022:1;6019;6012:12;6037:386;6104:6;6112;6165:2;6153:9;6144:7;6140:23;6136:32;6133:52;;;6181:1;6178;6171:12;6133:52;6220:9;6207:23;6239:31;6264:5;6239:31;:::i;:::-;6289:5;-1:-1:-1;6346:2:41;6331:18;;6318:32;6359;6318;6359;:::i;6428:482::-;6507:6;6515;6523;6576:2;6564:9;6555:7;6551:23;6547:32;6544:52;;;6592:1;6589;6582:12;6544:52;6615:28;6633:9;6615:28;:::i;7107:256::-;7173:6;7181;7234:2;7222:9;7213:7;7209:23;7205:32;7202:52;;;7250:1;7247;7240:12;7202:52;7273:28;7291:9;7273:28;:::i;:::-;7263:38;;7320:37;7353:2;7342:9;7338:18;7320:37;:::i;7368:685::-;7456:6;7464;7472;7480;7533:2;7521:9;7512:7;7508:23;7504:32;7501:52;;;7549:1;7546;7539:12;7501:52;7588:9;7575:23;7607:31;7632:5;7607:31;:::i;:::-;7657:5;-1:-1:-1;7714:2:41;7699:18;;7686:32;7727:33;7686:32;7727:33;:::i;:::-;7779:7;-1:-1:-1;7837:2:41;7822:18;;7809:32;-1:-1:-1;;;;;7853:30:41;;7850:50;;;7896:1;7893;7886:12;7850:50;7935:58;7985:7;7976:6;7965:9;7961:22;7935:58;:::i;:::-;7368:685;;;;-1:-1:-1;8012:8:41;-1:-1:-1;;;;7368:685:41:o;8240:447::-;8337:6;8345;8398:2;8386:9;8377:7;8373:23;8369:32;8366:52;;;8414:1;8411;8404:12;8366:52;8454:9;8441:23;-1:-1:-1;;;;;8479:6:41;8476:30;8473:50;;;8519:1;8516;8509:12;8473:50;8558:69;8619:7;8610:6;8599:9;8595:22;8558:69;:::i;:::-;8646:8;;8532:95;;-1:-1:-1;8240:447:41;-1:-1:-1;;;;8240:447:41:o;8692:1016::-;8852:4;8900:2;8889:9;8885:18;8930:2;8919:9;8912:21;8953:6;8988;8982:13;9019:6;9011;9004:22;9057:2;9046:9;9042:18;9035:25;;9119:2;9109:6;9106:1;9102:14;9091:9;9087:30;9083:39;9069:53;;9157:2;9149:6;9145:15;9178:1;9188:491;9202:6;9199:1;9196:13;9188:491;;;9295:2;9291:7;9279:9;9271:6;9267:22;9263:36;9258:3;9251:49;9329:6;9323:13;9371:2;9365:9;9402:8;9394:6;9387:24;9460:8;9455:2;9451;9447:11;9442:2;9434:6;9430:15;9424:45;9521:1;9516:2;9505:8;9497:6;9493:21;9489:30;9482:41;9596:2;9589;9585:7;9580:2;9570:8;9566:17;9562:31;9554:6;9550:44;9546:53;9536:63;;;;9634:2;9626:6;9622:15;9612:25;;9666:2;9661:3;9657:12;9650:19;;9224:1;9221;9217:9;9212:14;;9188:491;;;-1:-1:-1;9696:6:41;;8692:1016;-1:-1:-1;;;;;;8692:1016:41:o;9713:527::-;9789:6;9797;9805;9858:2;9846:9;9837:7;9833:23;9829:32;9826:52;;;9874:1;9871;9864:12;9826:52;9913:9;9900:23;9932:31;9957:5;9932:31;:::i;:::-;9982:5;-1:-1:-1;10039:2:41;10024:18;;10011:32;10052:33;10011:32;10052:33;:::i;:::-;10104:7;-1:-1:-1;10163:2:41;10148:18;;10135:32;10176;10135;10176;:::i;:::-;10227:7;10217:17;;;9713:527;;;;;:::o;10523:319::-;10590:6;10598;10651:2;10639:9;10630:7;10626:23;10622:32;10619:52;;;10667:1;10664;10657:12;10619:52;10706:9;10693:23;10725:31;10750:5;10725:31;:::i;10847:720::-;10934:6;10942;10950;10958;11011:2;10999:9;10990:7;10986:23;10982:32;10979:52;;;11027:1;11024;11017:12;10979:52;11066:9;11053:23;11085:31;11110:5;11085:31;:::i;:::-;11135:5;-1:-1:-1;11191:2:41;11176:18;;11163:32;-1:-1:-1;;;;;11207:30:41;;11204:50;;;11250:1;11247;11240:12;11204:50;11289:58;11339:7;11330:6;11319:9;11315:22;11289:58;:::i;:::-;11366:8;;-1:-1:-1;11263:84:41;-1:-1:-1;;11453:2:41;11438:18;;11425:32;11501:14;11488:28;;11476:41;;11466:69;;11531:1;11528;11521:12;11466:69;10847:720;;;;-1:-1:-1;10847:720:41;;-1:-1:-1;;10847:720:41:o;11840:127::-;11901:10;11896:3;11892:20;11889:1;11882:31;11932:4;11929:1;11922:15;11956:4;11953:1;11946:15;11972:245;12030:6;12083:2;12071:9;12062:7;12058:23;12054:32;12051:52;;;12099:1;12096;12089:12;12051:52;12138:9;12125:23;12157:30;12181:5;12157:30;:::i;12831:267::-;12920:6;12915:3;12908:19;12972:6;12965:5;12958:4;12953:3;12949:14;12936:43;-1:-1:-1;13024:1:41;12999:16;;;13017:4;12995:27;;;12988:38;;;;13080:2;13059:15;;;-1:-1:-1;;13055:29:41;13046:39;;;13042:50;;12831:267::o;13103:247::-;13262:2;13251:9;13244:21;13225:4;13282:62;13340:2;13329:9;13325:18;13317:6;13309;13282:62;:::i;:::-;13274:70;13103:247;-1:-1:-1;;;;13103:247:41:o;13355:249::-;13424:6;13477:2;13465:9;13456:7;13452:23;13448:32;13445:52;;;13493:1;13490;13483:12;13445:52;13525:9;13519:16;13544:30;13568:5;13544:30;:::i;13609:439::-;-1:-1:-1;;;;;13822:32:41;;;13804:51;;13891:32;;13886:2;13871:18;;13864:60;13960:2;13955;13940:18;;13933:30;;;-1:-1:-1;;13980:62:41;;14023:18;;14015:6;14007;13980:62;:::i;14053:127::-;14114:10;14109:3;14105:20;14102:1;14095:31;14145:4;14142:1;14135:15;14169:4;14166:1;14159:15;14318:331;14423:9;14434;14476:8;14464:10;14461:24;14458:44;;;14498:1;14495;14488:12;14458:44;14527:6;14517:8;14514:20;14511:40;;;14547:1;14544;14537:12;14511:40;-1:-1:-1;;14573:23:41;;;14618:25;;;;;-1:-1:-1;14318:331:41:o;14654:127::-;14715:10;14710:3;14706:20;14703:1;14696:31;14746:4;14743:1;14736:15;14770:4;14767:1;14760:15;14786:521;14863:4;14869:6;14929:11;14916:25;15023:2;15019:7;15008:8;14992:14;14988:29;14984:43;14964:18;14960:68;14950:96;;15042:1;15039;15032:12;14950:96;15069:33;;15121:20;;;-1:-1:-1;;;;;;15153:30:41;;15150:50;;;15196:1;15193;15186:12;15150:50;15229:4;15217:17;;-1:-1:-1;15260:14:41;15256:27;;;15246:38;;15243:58;;;15297:1;15294;15287:12;15312:211;15353:3;15391:5;15385:12;15435:6;15428:4;15421:5;15417:16;15412:3;15406:36;15497:1;15461:16;;15486:13;;;-1:-1:-1;15461:16:41;;15312:211;-1:-1:-1;15312:211:41:o;15528:343::-;15757:6;15749;15744:3;15731:33;15713:3;15792:6;15787:3;15783:16;15819:1;15815:2;15808:13;15837:28;15862:2;15854:6;15837:28;:::i;16375:179::-;16474:14;16443:22;;;16467;;;16439:51;;16502:23;;16499:49;;;16528:18;;:::i;16559:531::-;16810:14;16798:27;;16780:46;;-1:-1:-1;;;;;16862:32:41;;;16857:2;16842:18;;16835:60;16931:32;;16926:2;16911:18;;16904:60;17000:3;16995:2;16980:18;;16973:31;;;-1:-1:-1;;17021:63:41;;17064:19;;17056:6;17048;17021:63;:::i;:::-;17013:71;16559:531;-1:-1:-1;;;;;;;16559:531:41:o;17604:338::-;17724:19;;-1:-1:-1;;;;;;17761:29:41;;;17810:1;17802:10;;17799:137;;;-1:-1:-1;;;;;;17871:1:41;17867:11;;;17864:1;17860:19;17856:46;;;17848:55;;17844:82;;-1:-1:-1;17799:137:41;;17604:338;;;;:::o;18504:189::-;18633:3;18658:29;18683:3;18675:6;18658:29;:::i;19613:170::-;19710:10;19703:18;;;19683;;;19679:43;;19734:20;;19731:46;;;19757:18;;:::i"},"methodIdentifiers":{"ADMIN_ROLE()":"75b238fc","PUBLIC_ROLE()":"3ca7c02a","canCall(address,address,bytes4)":"b7009613","cancel(address,address,bytes)":"d6bb62c6","consumeScheduledOp(address,bytes)":"94c7d7ee","execute(address,bytes)":"1cff79cd","expiration()":"4665096d","getAccess(uint64,address)":"3078f114","getNonce(bytes32)":"4136a33c","getRoleAdmin(uint64)":"530dd456","getRoleGrantDelay(uint64)":"12be8727","getRoleGuardian(uint64)":"0b0a93ba","getSchedule(bytes32)":"3adc277a","getTargetAdminDelay(address)":"4c1da1e2","getTargetFunctionRole(address,bytes4)":"6d5115bd","grantRole(uint64,address,uint32)":"25c471a0","hasRole(uint64,address)":"d1f856ee","hashOperation(address,address,bytes)":"abd9bd2a","isTargetClosed(address)":"a166aa89","labelRole(uint64,string)":"853551b8","minSetback()":"cc1b6c81","multicall(bytes[])":"ac9650d8","renounceRole(uint64,address)":"fe0776f5","revokeRole(uint64,address)":"b7d2b162","schedule(address,bytes,uint48)":"f801a698","setGrantDelay(uint64,uint32)":"a64d95ce","setRoleAdmin(uint64,uint64)":"30cae187","setRoleGuardian(uint64,uint64)":"52962952","setTargetAdminDelay(address,uint32)":"d22b5989","setTargetClosed(address,bool)":"167bd395","setTargetFunctionRole(address,bytes4[],uint64)":"08d6122d","updateAuthority(address,address)":"18ff183c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"initialAdmin\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerAlreadyScheduled\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"AccessManagerBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerExpired\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"initialAdmin\",\"type\":\"address\"}],\"name\":\"AccessManagerInvalidInitialAdmin\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"AccessManagerLockedRole\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerNotReady\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerNotScheduled\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"msgsender\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"AccessManagerUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"AccessManagerUnauthorizedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"msgsender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"AccessManagerUnauthorizedCancel\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AccessManagerUnauthorizedConsume\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"name\":\"OperationCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"name\":\"OperationExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"schedule\",\"type\":\"uint48\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"OperationScheduled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"admin\",\"type\":\"uint64\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"}],\"name\":\"RoleGrantDelayChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"newMember\",\"type\":\"bool\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"guardian\",\"type\":\"uint64\"}],\"name\":\"RoleGuardianChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"label\",\"type\":\"string\"}],\"name\":\"RoleLabel\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"}],\"name\":\"TargetAdminDelayUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"closed\",\"type\":\"bool\"}],\"name\":\"TargetClosed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"TargetFunctionRoleUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PUBLIC_ROLE\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"canCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"immediate\",\"type\":\"bool\"},{\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"consumeScheduledOp\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"expiration\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getAccess\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"},{\"internalType\":\"uint32\",\"name\":\"currentDelay\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"pendingDelay\",\"type\":\"uint32\"},{\"internalType\":\"uint48\",\"name\":\"effect\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleGrantDelay\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleGuardian\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getSchedule\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"getTargetAdminDelay\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"getTargetFunctionRole\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"executionDelay\",\"type\":\"uint32\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"isMember\",\"type\":\"bool\"},{\"internalType\":\"uint32\",\"name\":\"executionDelay\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"hashOperation\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"isTargetClosed\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"string\",\"name\":\"label\",\"type\":\"string\"}],\"name\":\"labelRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"minSetback\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"multicall\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"results\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"uint48\",\"name\":\"when\",\"type\":\"uint48\"}],\"name\":\"schedule\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"newDelay\",\"type\":\"uint32\"}],\"name\":\"setGrantDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"admin\",\"type\":\"uint64\"}],\"name\":\"setRoleAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"guardian\",\"type\":\"uint64\"}],\"name\":\"setRoleGuardian\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"newDelay\",\"type\":\"uint32\"}],\"name\":\"setTargetAdminDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"closed\",\"type\":\"bool\"}],\"name\":\"setTargetClosed\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4[]\",\"name\":\"selectors\",\"type\":\"bytes4[]\"},{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"setTargetFunctionRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"newAuthority\",\"type\":\"address\"}],\"name\":\"updateAuthority\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"AccessManager is a central contract to store the permissions of a system. A smart contract under the control of an AccessManager instance is known as a target, and will inherit from the {AccessManaged} contract, be connected to this contract as its manager and implement the {AccessManaged-restricted} modifier on a set of functions selected to be permissioned. Note that any function without this setup won't be effectively restricted. The restriction rules for such functions are defined in terms of \\\"roles\\\" identified by an `uint64` and scoped by target (`address`) and function selectors (`bytes4`). These roles are stored in this contract and can be configured by admins (`ADMIN_ROLE` members) after a delay (see {getTargetAdminDelay}). For each target contract, admins can configure the following without any delay: * The target's {AccessManaged-authority} via {updateAuthority}. * Close or open a target via {setTargetClosed} keeping the permissions intact. * The roles that are allowed (or disallowed) to call a given function (identified by its selector) through {setTargetFunctionRole}. By default every address is member of the `PUBLIC_ROLE` and every target function is restricted to the `ADMIN_ROLE` until configured otherwise. Additionally, each role has the following configuration options restricted to this manager's admins: * A role's admin role via {setRoleAdmin} who can grant or revoke roles. * A role's guardian role via {setRoleGuardian} who's allowed to cancel operations. * A delay in which a role takes effect after being granted through {setGrantDelay}. * A delay of any target's admin action via {setTargetAdminDelay}. * A role label for discoverability purposes with {labelRole}. Any account can be added and removed into any number of these roles by using the {grantRole} and {revokeRole} functions restricted to each role's admin (see {getRoleAdmin}). Since all the permissions of the managed system can be modified by the admins of this instance, it is expected that they will be highly secured (e.g., a multisig or a well-configured DAO). NOTE: This contract implements a form of the {IAuthority} interface, but {canCall} has additional return data so it doesn't inherit `IAuthority`. It is however compatible with the `IAuthority` interface since the first 32 bytes of the return data are a boolean as expected by that interface. NOTE: Systems that implement other access control mechanisms (for example using {Ownable}) can be paired with an {AccessManager} by transferring permissions (ownership in the case of {Ownable}) directly to the {AccessManager}. Users will be able to interact with these contracts through the {execute} function, following the access rules registered in the {AccessManager}. Keep in mind that in that context, the msg.sender seen by restricted functions will be {AccessManager} itself. WARNING: When granting permissions over an {Ownable} or {AccessControl} contract to an {AccessManager}, be very mindful of the danger associated with functions such as {Ownable-renounceOwnership} or {AccessControl-renounceRole}.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InsufficientBalance(uint256,uint256)\":[{\"details\":\"The ETH balance of the account is not enough to perform the operation.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}]},\"events\":{\"OperationCanceled(bytes32,uint32)\":{\"details\":\"A scheduled operation was canceled.\"},\"OperationExecuted(bytes32,uint32)\":{\"details\":\"A scheduled operation was executed.\"},\"OperationScheduled(bytes32,uint32,uint48,address,address,bytes)\":{\"details\":\"A delayed operation was scheduled.\"},\"RoleAdminChanged(uint64,uint64)\":{\"details\":\"Role acting as admin over a given `roleId` is updated.\"},\"RoleGrantDelayChanged(uint64,uint32,uint48)\":{\"details\":\"Grant delay for a given `roleId` will be updated to `delay` when `since` is reached.\"},\"RoleGranted(uint64,address,uint32,uint48,bool)\":{\"details\":\"Emitted when `account` is granted `roleId`. NOTE: The meaning of the `since` argument depends on the `newMember` argument. If the role is granted to a new member, the `since` argument indicates when the account becomes a member of the role, otherwise it indicates the execution delay for this account and roleId is updated.\"},\"RoleGuardianChanged(uint64,uint64)\":{\"details\":\"Role acting as guardian over a given `roleId` is updated.\"},\"RoleLabel(uint64,string)\":{\"details\":\"Informational labelling for a roleId.\"},\"RoleRevoked(uint64,address)\":{\"details\":\"Emitted when `account` membership or `roleId` is revoked. Unlike granting, revoking is instantaneous.\"},\"TargetAdminDelayUpdated(address,uint32,uint48)\":{\"details\":\"Admin delay for a given `target` will be updated to `delay` when `since` is reached.\"},\"TargetClosed(address,bool)\":{\"details\":\"Target mode is updated (true = closed, false = open).\"},\"TargetFunctionRoleUpdated(address,bytes4,uint64)\":{\"details\":\"Role required to invoke `selector` on `target` is updated to `roleId`.\"}},\"kind\":\"dev\",\"methods\":{\"canCall(address,address,bytes4)\":{\"details\":\"Check if an address (`caller`) is authorised to call a given function on a given contract directly (with no restriction). Additionally, it returns the delay needed to perform the call indirectly through the {schedule} & {execute} workflow. This function is usually called by the targeted contract to control immediate execution of restricted functions. Therefore we only return true if the call can be performed without any delay. If the call is subject to a previously set delay (not zero), then the function should return false and the caller should schedule the operation for future execution. If `immediate` is true, the delay can be disregarded and the operation can be immediately executed, otherwise the operation can be executed if and only if delay is greater than 0. NOTE: The IAuthority interface does not include the `uint32` delay. This is an extension of that interface that is backward compatible. Some contracts may thus ignore the second return argument. In that case they will fail to identify the indirect workflow, and will consider calls that require a delay to be forbidden. NOTE: This function does not report the permissions of the admin functions in the manager itself. These are defined by the {AccessManager} documentation.\"},\"cancel(address,address,bytes)\":{\"details\":\"Cancel a scheduled (delayed) operation. Returns the nonce that identifies the previously scheduled operation that is cancelled. Requirements: - the caller must be the proposer, a guardian of the targeted function, or a global admin Emits a {OperationCanceled} event.\"},\"consumeScheduledOp(address,bytes)\":{\"details\":\"Consume a scheduled operation targeting the caller. If such an operation exists, mark it as consumed (emit an {OperationExecuted} event and clean the state). Otherwise, throw an error. This is useful for contract that want to enforce that calls targeting them were scheduled on the manager, with all the verifications that it implies. Emit a {OperationExecuted} event.\"},\"execute(address,bytes)\":{\"details\":\"Execute a function that is delay restricted, provided it was properly scheduled beforehand, or the execution delay is 0. Returns the nonce that identifies the previously scheduled operation that is executed, or 0 if the operation wasn't previously scheduled (if the caller doesn't have an execution delay). Emits an {OperationExecuted} event only if the call was scheduled and delayed.\"},\"expiration()\":{\"details\":\"Expiration delay for scheduled proposals. Defaults to 1 week. IMPORTANT: Avoid overriding the expiration with 0. Otherwise every contract proposal will be expired immediately, disabling any scheduling usage.\"},\"getAccess(uint64,address)\":{\"details\":\"Get the access details for a given account for a given role. These details include the timepoint at which membership becomes active, and the delay applied to all operation by this user that requires this permission level. Returns: [0] Timestamp at which the account membership becomes valid. 0 means role is not granted. [1] Current execution delay for the account. [2] Pending execution delay for the account. [3] Timestamp at which the pending execution delay will become active. 0 means no delay update is scheduled.\"},\"getNonce(bytes32)\":{\"details\":\"Return the nonce for the latest scheduled operation with a given id. Returns 0 if the operation has never been scheduled.\"},\"getRoleAdmin(uint64)\":{\"details\":\"Get the id of the role that acts as an admin for the given role. The admin permission is required to grant the role, revoke the role and update the execution delay to execute an operation that is restricted to this role.\"},\"getRoleGrantDelay(uint64)\":{\"details\":\"Get the role current grant delay. Its value may change at any point without an event emitted following a call to {setGrantDelay}. Changes to this value, including effect timepoint are notified in advance by the {RoleGrantDelayChanged} event.\"},\"getRoleGuardian(uint64)\":{\"details\":\"Get the role that acts as a guardian for a given role. The guardian permission allows canceling operations that have been scheduled under the role.\"},\"getSchedule(bytes32)\":{\"details\":\"Return the timepoint at which a scheduled operation will be ready for execution. This returns 0 if the operation is not yet scheduled, has expired, was executed, or was canceled.\"},\"getTargetAdminDelay(address)\":{\"details\":\"Get the admin delay for a target contract. Changes to contract configuration are subject to this delay.\"},\"getTargetFunctionRole(address,bytes4)\":{\"details\":\"Get the role required to call a function.\"},\"grantRole(uint64,address,uint32)\":{\"details\":\"Add `account` to `roleId`, or change its execution delay. This gives the account the authorization to call any function that is restricted to this role. An optional execution delay (in seconds) can be set. If that delay is non 0, the user is required to schedule any operation that is restricted to members of this role. The user will only be able to execute the operation after the delay has passed, before it has expired. During this period, admin and guardians can cancel the operation (see {cancel}). If the account has already been granted this role, the execution delay will be updated. This update is not immediate and follows the delay rules. For example, if a user currently has a delay of 3 hours, and this is called to reduce that delay to 1 hour, the new delay will take some time to take effect, enforcing that any operation executed in the 3 hours that follows this update was indeed scheduled before this update. Requirements: - the caller must be an admin for the role (see {getRoleAdmin}) - granted role must not be the `PUBLIC_ROLE` Emits a {RoleGranted} event.\"},\"hasRole(uint64,address)\":{\"details\":\"Check if a given account currently has the permission level corresponding to a given role. Note that this permission might be associated with an execution delay. {getAccess} can provide more details.\"},\"hashOperation(address,address,bytes)\":{\"details\":\"Hashing function for delayed operations.\"},\"isTargetClosed(address)\":{\"details\":\"Get whether the contract is closed disabling any access. Otherwise role permissions are applied. NOTE: When the manager itself is closed, admin functions are still accessible to avoid locking the contract.\"},\"labelRole(uint64,string)\":{\"details\":\"Give a label to a role, for improved role discoverability by UIs. Requirements: - the caller must be a global admin Emits a {RoleLabel} event.\"},\"minSetback()\":{\"details\":\"Minimum setback for all delay updates, with the exception of execution delays. It can be increased without setback (and reset via {revokeRole} in the case event of an accidental increase). Defaults to 5 days.\"},\"multicall(bytes[])\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Receives and executes a batch of function calls on this contract.\"},\"renounceRole(uint64,address)\":{\"details\":\"Renounce role permissions for the calling account with immediate effect. If the sender is not in the role this call has no effect. Requirements: - the caller must be `callerConfirmation`. Emits a {RoleRevoked} event if the account had the role.\"},\"revokeRole(uint64,address)\":{\"details\":\"Remove an account from a role, with immediate effect. If the account does not have the role, this call has no effect. Requirements: - the caller must be an admin for the role (see {getRoleAdmin}) - revoked role must not be the `PUBLIC_ROLE` Emits a {RoleRevoked} event if the account had the role.\"},\"schedule(address,bytes,uint48)\":{\"details\":\"Schedule a delayed operation for future execution, and return the operation identifier. It is possible to choose the timestamp at which the operation becomes executable as long as it satisfies the execution delays required for the caller. The special value zero will automatically set the earliest possible time. Returns the `operationId` that was scheduled. Since this value is a hash of the parameters, it can reoccur when the same parameters are used; if this is relevant, the returned `nonce` can be used to uniquely identify this scheduled operation from other occurrences of the same `operationId` in invocations of {execute} and {cancel}. Emits a {OperationScheduled} event. NOTE: It is not possible to concurrently schedule more than one operation with the same `target` and `data`. If this is necessary, a random byte can be appended to `data` to act as a salt that will be ignored by the target contract if it is using standard Solidity ABI encoding.\"},\"setGrantDelay(uint64,uint32)\":{\"details\":\"Update the delay for granting a `roleId`. Requirements: - the caller must be a global admin Emits a {RoleGrantDelayChanged} event.\"},\"setRoleAdmin(uint64,uint64)\":{\"details\":\"Change admin role for a given role. Requirements: - the caller must be a global admin Emits a {RoleAdminChanged} event\"},\"setRoleGuardian(uint64,uint64)\":{\"details\":\"Change guardian role for a given role. Requirements: - the caller must be a global admin Emits a {RoleGuardianChanged} event\"},\"setTargetAdminDelay(address,uint32)\":{\"details\":\"Set the delay for changing the configuration of a given target contract. Requirements: - the caller must be a global admin Emits a {TargetAdminDelayUpdated} event.\"},\"setTargetClosed(address,bool)\":{\"details\":\"Set the closed flag for a contract. Closing the manager itself won't disable access to admin methods to avoid locking the contract. Requirements: - the caller must be a global admin Emits a {TargetClosed} event.\"},\"setTargetFunctionRole(address,bytes4[],uint64)\":{\"details\":\"Set the role required to call functions identified by the `selectors` in the `target` contract. Requirements: - the caller must be a global admin Emits a {TargetFunctionRoleUpdated} event per selector.\"},\"updateAuthority(address,address)\":{\"details\":\"Changes the authority of a target managed by this manager instance. Requirements: - the caller must be a global admin\"}},\"stateVariables\":{\"ADMIN_ROLE\":{\"details\":\"The identifier of the admin role. Required to perform most configuration operations including other roles' management and target restrictions.\"},\"PUBLIC_ROLE\":{\"details\":\"The identifier of the public role. Automatically granted to all addresses with no delay.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/dependencies/AccessManager.sol\":\"AccessManager\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/manager/IAccessManaged.sol\":{\"keccak256\":\"0xaba93d42cd70e1418782951132d97b31ddce5f50ad81090884b6d0e41caac9d6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b110886f83e3e98a11255a3b56790322e8d83e513304dde71299406685fc6694\",\"dweb:/ipfs/QmPwroS7MUUk1EmsvaJqU6aarhQ8ewJtJMg7xxmTsaxZEv\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x9be2d08a326515805bc9cf6315b7953f8d1ebe88abf48c2d645fb1fa8211a0e2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e750d656e37efaefbb2300051ec2c4c725db266c5ff89bc985f7ecb8d214c4f4\",\"dweb:/ipfs/QmT51FsZes2n2nrLLh3d8YkBYKY43CtwScZxixcLGzL9r6\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Multicall.sol\":{\"keccak256\":\"0x8bbd8e639a2845206c2525c3e41892232a78372d952974bc1d2809b6879f6946\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c92f1b562e8603218d97751af56733d2f695f16da82389d53139d5e63496a45\",\"dweb:/ipfs/QmRiVMRTFjYBHDt5mN4E6TMotiE28XgWxEBPGewp5GTZ9X\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]},\"contracts/dependencies/AccessManager.sol\":{\"keccak256\":\"0xf67b9fbba3035030e316ce9543e349c5d2145a20c3d9352171c1d517604d4263\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://53796c73c747cf85284e4f7fd9535c88f6a40e445da9c45ec7716a45f0ba7e20\",\"dweb:/ipfs/QmXScvnWyA8Jk66wLTZYFghjqUcnkeZb1BiwDJK21hgrVM\"]},\"contracts/dependencies/FrozenTime.sol\":{\"keccak256\":\"0xac148e2e77be26575d12aa3926fd621e0c13aa382e7d2b947678725928cb1a37\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://36bdf28e316fd40dc6a4327758bc18f3231e5deb379b53d9d251c313e758e0f2\",\"dweb:/ipfs/QmXhXDZDL4tTGgiorXwZKAD6LVYsBhkNFx8aGHToNXVbfX\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":9975,"contract":"contracts/dependencies/AccessManager.sol:AccessManager","label":"_targets","offset":0,"slot":"0","type":"t_mapping(t_address,t_struct(TargetConfig)9930_storage)"},{"astId":9980,"contract":"contracts/dependencies/AccessManager.sol:AccessManager","label":"_roles","offset":0,"slot":"1","type":"t_mapping(t_uint64,t_struct(Role)9949_storage)"},{"astId":9985,"contract":"contracts/dependencies/AccessManager.sol:AccessManager","label":"_schedules","offset":0,"slot":"2","type":"t_mapping(t_bytes32,t_struct(Schedule)9954_storage)"},{"astId":9987,"contract":"contracts/dependencies/AccessManager.sol:AccessManager","label":"_executionId","offset":0,"slot":"3","type":"t_bytes32"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_bytes4":{"encoding":"inplace","label":"bytes4","numberOfBytes":"4"},"t_mapping(t_address,t_struct(Access)9936_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct AccessManager.Access)","numberOfBytes":"32","value":"t_struct(Access)9936_storage"},"t_mapping(t_address,t_struct(TargetConfig)9930_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct AccessManager.TargetConfig)","numberOfBytes":"32","value":"t_struct(TargetConfig)9930_storage"},"t_mapping(t_bytes32,t_struct(Schedule)9954_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct AccessManager.Schedule)","numberOfBytes":"32","value":"t_struct(Schedule)9954_storage"},"t_mapping(t_bytes4,t_uint64)":{"encoding":"mapping","key":"t_bytes4","label":"mapping(bytes4 => uint64)","numberOfBytes":"32","value":"t_uint64"},"t_mapping(t_uint64,t_struct(Role)9949_storage)":{"encoding":"mapping","key":"t_uint64","label":"mapping(uint64 => struct AccessManager.Role)","numberOfBytes":"32","value":"t_struct(Role)9949_storage"},"t_struct(Access)9936_storage":{"encoding":"inplace","label":"struct AccessManager.Access","members":[{"astId":9932,"contract":"contracts/dependencies/AccessManager.sol:AccessManager","label":"since","offset":0,"slot":"0","type":"t_uint48"},{"astId":9935,"contract":"contracts/dependencies/AccessManager.sol:AccessManager","label":"delay","offset":6,"slot":"0","type":"t_userDefinedValueType(Delay)8469"}],"numberOfBytes":"32"},"t_struct(Role)9949_storage":{"encoding":"inplace","label":"struct AccessManager.Role","members":[{"astId":9941,"contract":"contracts/dependencies/AccessManager.sol:AccessManager","label":"members","offset":0,"slot":"0","type":"t_mapping(t_address,t_struct(Access)9936_storage)"},{"astId":9943,"contract":"contracts/dependencies/AccessManager.sol:AccessManager","label":"admin","offset":0,"slot":"1","type":"t_uint64"},{"astId":9945,"contract":"contracts/dependencies/AccessManager.sol:AccessManager","label":"guardian","offset":8,"slot":"1","type":"t_uint64"},{"astId":9948,"contract":"contracts/dependencies/AccessManager.sol:AccessManager","label":"grantDelay","offset":16,"slot":"1","type":"t_userDefinedValueType(Delay)8469"}],"numberOfBytes":"64"},"t_struct(Schedule)9954_storage":{"encoding":"inplace","label":"struct AccessManager.Schedule","members":[{"astId":9951,"contract":"contracts/dependencies/AccessManager.sol:AccessManager","label":"timepoint","offset":0,"slot":"0","type":"t_uint48"},{"astId":9953,"contract":"contracts/dependencies/AccessManager.sol:AccessManager","label":"nonce","offset":6,"slot":"0","type":"t_uint32"}],"numberOfBytes":"32"},"t_struct(TargetConfig)9930_storage":{"encoding":"inplace","label":"struct AccessManager.TargetConfig","members":[{"astId":9924,"contract":"contracts/dependencies/AccessManager.sol:AccessManager","label":"allowedRoles","offset":0,"slot":"0","type":"t_mapping(t_bytes4,t_uint64)"},{"astId":9927,"contract":"contracts/dependencies/AccessManager.sol:AccessManager","label":"adminDelay","offset":0,"slot":"1","type":"t_userDefinedValueType(Delay)8469"},{"astId":9929,"contract":"contracts/dependencies/AccessManager.sol:AccessManager","label":"closed","offset":14,"slot":"1","type":"t_bool"}],"numberOfBytes":"64"},"t_uint32":{"encoding":"inplace","label":"uint32","numberOfBytes":"4"},"t_uint48":{"encoding":"inplace","label":"uint48","numberOfBytes":"6"},"t_uint64":{"encoding":"inplace","label":"uint64","numberOfBytes":"8"},"t_userDefinedValueType(Delay)8469":{"encoding":"inplace","label":"Time.Delay","numberOfBytes":"14"}}}}},"contracts/dependencies/FrozenTime.sol":{"FrozenTime":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122088d49f3942639299a9fef8ea024fd60e550e21d16845c98b3d4811b8ad4e904764736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP9 0xD4 SWAP16 CODECOPY TIMESTAMP PUSH4 0x9299A9FE 0xF8 0xEA MUL 0x4F 0xD6 0xE SSTORE 0xE 0x21 0xD1 PUSH9 0x45C98B3D4811B8AD4E SWAP1 SELFBALANCE PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"694:4530:37:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;694:4530:37;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122088d49f3942639299a9fef8ea024fd60e550e21d16845c98b3d4811b8ad4e904764736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP9 0xD4 SWAP16 CODECOPY TIMESTAMP PUSH4 0x9299A9FE 0xF8 0xEA MUL 0x4F 0xD6 0xE SSTORE 0xE 0x21 0xD1 PUSH9 0x45C98B3D4811B8AD4E SWAP1 SELFBALANCE PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"694:4530:37:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"This library provides helpers for manipulating time-related objects. It uses the following types: - `uint48` for timepoints - `uint32` for durations While the library doesn't provide specific types for timepoints and duration, it does provide: - a `Delay` type to represent duration that can be programmed to change value automatically at a given point - additional helper functions\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/dependencies/FrozenTime.sol\":\"FrozenTime\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/dependencies/FrozenTime.sol\":{\"keccak256\":\"0xac148e2e77be26575d12aa3926fd621e0c13aa382e7d2b947678725928cb1a37\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://36bdf28e316fd40dc6a4327758bc18f3231e5deb379b53d9d251c313e758e0f2\",\"dweb:/ipfs/QmXhXDZDL4tTGgiorXwZKAD6LVYsBhkNFx8aGHToNXVbfX\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/mock/ERC20With2771.sol":{"ERC20With2771":{"abi":[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"trustedForwarder","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"trustedForwarder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_12146":{"entryPoint":null,"id":12146,"parameterSlots":5,"returnSlots":0},"@_2067":{"entryPoint":null,"id":2067,"parameterSlots":1,"returnSlots":0},"@_2241":{"entryPoint":null,"id":2241,"parameterSlots":2,"returnSlots":0},"@_mint_2544":{"entryPoint":116,"id":2544,"parameterSlots":2,"returnSlots":0},"@_update_2511":{"entryPoint":177,"id":2511,"parameterSlots":3,"returnSlots":0},"abi_decode_string_fromMemory":{"entryPoint":491,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint8t_address_fromMemory":{"entryPoint":628,"id":null,"parameterSlots":2,"returnSlots":5},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":1111,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":849,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":925,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":793,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x41":{"entryPoint":471,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:5318:41","nodeType":"YulBlock","src":"0:5318:41","statements":[{"nativeSrc":"6:3:41","nodeType":"YulBlock","src":"6:3:41","statements":[]},{"body":{"nativeSrc":"46:95:41","nodeType":"YulBlock","src":"46:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"63:1:41","nodeType":"YulLiteral","src":"63:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"70:3:41","nodeType":"YulLiteral","src":"70:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"75:10:41","nodeType":"YulLiteral","src":"75:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"66:3:41","nodeType":"YulIdentifier","src":"66:3:41"},"nativeSrc":"66:20:41","nodeType":"YulFunctionCall","src":"66:20:41"}],"functionName":{"name":"mstore","nativeSrc":"56:6:41","nodeType":"YulIdentifier","src":"56:6:41"},"nativeSrc":"56:31:41","nodeType":"YulFunctionCall","src":"56:31:41"},"nativeSrc":"56:31:41","nodeType":"YulExpressionStatement","src":"56:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"103:1:41","nodeType":"YulLiteral","src":"103:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"106:4:41","nodeType":"YulLiteral","src":"106:4:41","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"96:6:41","nodeType":"YulIdentifier","src":"96:6:41"},"nativeSrc":"96:15:41","nodeType":"YulFunctionCall","src":"96:15:41"},"nativeSrc":"96:15:41","nodeType":"YulExpressionStatement","src":"96:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"127:1:41","nodeType":"YulLiteral","src":"127:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"130:4:41","nodeType":"YulLiteral","src":"130:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"120:6:41","nodeType":"YulIdentifier","src":"120:6:41"},"nativeSrc":"120:15:41","nodeType":"YulFunctionCall","src":"120:15:41"},"nativeSrc":"120:15:41","nodeType":"YulExpressionStatement","src":"120:15:41"}]},"name":"panic_error_0x41","nativeSrc":"14:127:41","nodeType":"YulFunctionDefinition","src":"14:127:41"},{"body":{"nativeSrc":"210:659:41","nodeType":"YulBlock","src":"210:659:41","statements":[{"body":{"nativeSrc":"259:16:41","nodeType":"YulBlock","src":"259:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"268:1:41","nodeType":"YulLiteral","src":"268:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"271:1:41","nodeType":"YulLiteral","src":"271:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"261:6:41","nodeType":"YulIdentifier","src":"261:6:41"},"nativeSrc":"261:12:41","nodeType":"YulFunctionCall","src":"261:12:41"},"nativeSrc":"261:12:41","nodeType":"YulExpressionStatement","src":"261:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"238:6:41","nodeType":"YulIdentifier","src":"238:6:41"},{"kind":"number","nativeSrc":"246:4:41","nodeType":"YulLiteral","src":"246:4:41","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"234:3:41","nodeType":"YulIdentifier","src":"234:3:41"},"nativeSrc":"234:17:41","nodeType":"YulFunctionCall","src":"234:17:41"},{"name":"end","nativeSrc":"253:3:41","nodeType":"YulIdentifier","src":"253:3:41"}],"functionName":{"name":"slt","nativeSrc":"230:3:41","nodeType":"YulIdentifier","src":"230:3:41"},"nativeSrc":"230:27:41","nodeType":"YulFunctionCall","src":"230:27:41"}],"functionName":{"name":"iszero","nativeSrc":"223:6:41","nodeType":"YulIdentifier","src":"223:6:41"},"nativeSrc":"223:35:41","nodeType":"YulFunctionCall","src":"223:35:41"},"nativeSrc":"220:55:41","nodeType":"YulIf","src":"220:55:41"},{"nativeSrc":"284:27:41","nodeType":"YulVariableDeclaration","src":"284:27:41","value":{"arguments":[{"name":"offset","nativeSrc":"304:6:41","nodeType":"YulIdentifier","src":"304:6:41"}],"functionName":{"name":"mload","nativeSrc":"298:5:41","nodeType":"YulIdentifier","src":"298:5:41"},"nativeSrc":"298:13:41","nodeType":"YulFunctionCall","src":"298:13:41"},"variables":[{"name":"length","nativeSrc":"288:6:41","nodeType":"YulTypedName","src":"288:6:41","type":""}]},{"body":{"nativeSrc":"354:22:41","nodeType":"YulBlock","src":"354:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"356:16:41","nodeType":"YulIdentifier","src":"356:16:41"},"nativeSrc":"356:18:41","nodeType":"YulFunctionCall","src":"356:18:41"},"nativeSrc":"356:18:41","nodeType":"YulExpressionStatement","src":"356:18:41"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"326:6:41","nodeType":"YulIdentifier","src":"326:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"342:2:41","nodeType":"YulLiteral","src":"342:2:41","type":"","value":"64"},{"kind":"number","nativeSrc":"346:1:41","nodeType":"YulLiteral","src":"346:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"338:3:41","nodeType":"YulIdentifier","src":"338:3:41"},"nativeSrc":"338:10:41","nodeType":"YulFunctionCall","src":"338:10:41"},{"kind":"number","nativeSrc":"350:1:41","nodeType":"YulLiteral","src":"350:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"334:3:41","nodeType":"YulIdentifier","src":"334:3:41"},"nativeSrc":"334:18:41","nodeType":"YulFunctionCall","src":"334:18:41"}],"functionName":{"name":"gt","nativeSrc":"323:2:41","nodeType":"YulIdentifier","src":"323:2:41"},"nativeSrc":"323:30:41","nodeType":"YulFunctionCall","src":"323:30:41"},"nativeSrc":"320:56:41","nodeType":"YulIf","src":"320:56:41"},{"nativeSrc":"385:23:41","nodeType":"YulVariableDeclaration","src":"385:23:41","value":{"arguments":[{"kind":"number","nativeSrc":"405:2:41","nodeType":"YulLiteral","src":"405:2:41","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"399:5:41","nodeType":"YulIdentifier","src":"399:5:41"},"nativeSrc":"399:9:41","nodeType":"YulFunctionCall","src":"399:9:41"},"variables":[{"name":"memPtr","nativeSrc":"389:6:41","nodeType":"YulTypedName","src":"389:6:41","type":""}]},{"nativeSrc":"417:85:41","nodeType":"YulVariableDeclaration","src":"417:85:41","value":{"arguments":[{"name":"memPtr","nativeSrc":"439:6:41","nodeType":"YulIdentifier","src":"439:6:41"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"463:6:41","nodeType":"YulIdentifier","src":"463:6:41"},{"kind":"number","nativeSrc":"471:4:41","nodeType":"YulLiteral","src":"471:4:41","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"459:3:41","nodeType":"YulIdentifier","src":"459:3:41"},"nativeSrc":"459:17:41","nodeType":"YulFunctionCall","src":"459:17:41"},{"arguments":[{"kind":"number","nativeSrc":"482:2:41","nodeType":"YulLiteral","src":"482:2:41","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"478:3:41","nodeType":"YulIdentifier","src":"478:3:41"},"nativeSrc":"478:7:41","nodeType":"YulFunctionCall","src":"478:7:41"}],"functionName":{"name":"and","nativeSrc":"455:3:41","nodeType":"YulIdentifier","src":"455:3:41"},"nativeSrc":"455:31:41","nodeType":"YulFunctionCall","src":"455:31:41"},{"kind":"number","nativeSrc":"488:2:41","nodeType":"YulLiteral","src":"488:2:41","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"451:3:41","nodeType":"YulIdentifier","src":"451:3:41"},"nativeSrc":"451:40:41","nodeType":"YulFunctionCall","src":"451:40:41"},{"arguments":[{"kind":"number","nativeSrc":"497:2:41","nodeType":"YulLiteral","src":"497:2:41","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"493:3:41","nodeType":"YulIdentifier","src":"493:3:41"},"nativeSrc":"493:7:41","nodeType":"YulFunctionCall","src":"493:7:41"}],"functionName":{"name":"and","nativeSrc":"447:3:41","nodeType":"YulIdentifier","src":"447:3:41"},"nativeSrc":"447:54:41","nodeType":"YulFunctionCall","src":"447:54:41"}],"functionName":{"name":"add","nativeSrc":"435:3:41","nodeType":"YulIdentifier","src":"435:3:41"},"nativeSrc":"435:67:41","nodeType":"YulFunctionCall","src":"435:67:41"},"variables":[{"name":"newFreePtr","nativeSrc":"421:10:41","nodeType":"YulTypedName","src":"421:10:41","type":""}]},{"body":{"nativeSrc":"577:22:41","nodeType":"YulBlock","src":"577:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"579:16:41","nodeType":"YulIdentifier","src":"579:16:41"},"nativeSrc":"579:18:41","nodeType":"YulFunctionCall","src":"579:18:41"},"nativeSrc":"579:18:41","nodeType":"YulExpressionStatement","src":"579:18:41"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"520:10:41","nodeType":"YulIdentifier","src":"520:10:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"540:2:41","nodeType":"YulLiteral","src":"540:2:41","type":"","value":"64"},{"kind":"number","nativeSrc":"544:1:41","nodeType":"YulLiteral","src":"544:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"536:3:41","nodeType":"YulIdentifier","src":"536:3:41"},"nativeSrc":"536:10:41","nodeType":"YulFunctionCall","src":"536:10:41"},{"kind":"number","nativeSrc":"548:1:41","nodeType":"YulLiteral","src":"548:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"532:3:41","nodeType":"YulIdentifier","src":"532:3:41"},"nativeSrc":"532:18:41","nodeType":"YulFunctionCall","src":"532:18:41"}],"functionName":{"name":"gt","nativeSrc":"517:2:41","nodeType":"YulIdentifier","src":"517:2:41"},"nativeSrc":"517:34:41","nodeType":"YulFunctionCall","src":"517:34:41"},{"arguments":[{"name":"newFreePtr","nativeSrc":"556:10:41","nodeType":"YulIdentifier","src":"556:10:41"},{"name":"memPtr","nativeSrc":"568:6:41","nodeType":"YulIdentifier","src":"568:6:41"}],"functionName":{"name":"lt","nativeSrc":"553:2:41","nodeType":"YulIdentifier","src":"553:2:41"},"nativeSrc":"553:22:41","nodeType":"YulFunctionCall","src":"553:22:41"}],"functionName":{"name":"or","nativeSrc":"514:2:41","nodeType":"YulIdentifier","src":"514:2:41"},"nativeSrc":"514:62:41","nodeType":"YulFunctionCall","src":"514:62:41"},"nativeSrc":"511:88:41","nodeType":"YulIf","src":"511:88:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"615:2:41","nodeType":"YulLiteral","src":"615:2:41","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"619:10:41","nodeType":"YulIdentifier","src":"619:10:41"}],"functionName":{"name":"mstore","nativeSrc":"608:6:41","nodeType":"YulIdentifier","src":"608:6:41"},"nativeSrc":"608:22:41","nodeType":"YulFunctionCall","src":"608:22:41"},"nativeSrc":"608:22:41","nodeType":"YulExpressionStatement","src":"608:22:41"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"646:6:41","nodeType":"YulIdentifier","src":"646:6:41"},{"name":"length","nativeSrc":"654:6:41","nodeType":"YulIdentifier","src":"654:6:41"}],"functionName":{"name":"mstore","nativeSrc":"639:6:41","nodeType":"YulIdentifier","src":"639:6:41"},"nativeSrc":"639:22:41","nodeType":"YulFunctionCall","src":"639:22:41"},"nativeSrc":"639:22:41","nodeType":"YulExpressionStatement","src":"639:22:41"},{"body":{"nativeSrc":"713:16:41","nodeType":"YulBlock","src":"713:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"722:1:41","nodeType":"YulLiteral","src":"722:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"725:1:41","nodeType":"YulLiteral","src":"725:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"715:6:41","nodeType":"YulIdentifier","src":"715:6:41"},"nativeSrc":"715:12:41","nodeType":"YulFunctionCall","src":"715:12:41"},"nativeSrc":"715:12:41","nodeType":"YulExpressionStatement","src":"715:12:41"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"684:6:41","nodeType":"YulIdentifier","src":"684:6:41"},{"name":"length","nativeSrc":"692:6:41","nodeType":"YulIdentifier","src":"692:6:41"}],"functionName":{"name":"add","nativeSrc":"680:3:41","nodeType":"YulIdentifier","src":"680:3:41"},"nativeSrc":"680:19:41","nodeType":"YulFunctionCall","src":"680:19:41"},{"kind":"number","nativeSrc":"701:4:41","nodeType":"YulLiteral","src":"701:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"676:3:41","nodeType":"YulIdentifier","src":"676:3:41"},"nativeSrc":"676:30:41","nodeType":"YulFunctionCall","src":"676:30:41"},{"name":"end","nativeSrc":"708:3:41","nodeType":"YulIdentifier","src":"708:3:41"}],"functionName":{"name":"gt","nativeSrc":"673:2:41","nodeType":"YulIdentifier","src":"673:2:41"},"nativeSrc":"673:39:41","nodeType":"YulFunctionCall","src":"673:39:41"},"nativeSrc":"670:59:41","nodeType":"YulIf","src":"670:59:41"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"748:6:41","nodeType":"YulIdentifier","src":"748:6:41"},{"kind":"number","nativeSrc":"756:4:41","nodeType":"YulLiteral","src":"756:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"744:3:41","nodeType":"YulIdentifier","src":"744:3:41"},"nativeSrc":"744:17:41","nodeType":"YulFunctionCall","src":"744:17:41"},{"arguments":[{"name":"offset","nativeSrc":"767:6:41","nodeType":"YulIdentifier","src":"767:6:41"},{"kind":"number","nativeSrc":"775:4:41","nodeType":"YulLiteral","src":"775:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"763:3:41","nodeType":"YulIdentifier","src":"763:3:41"},"nativeSrc":"763:17:41","nodeType":"YulFunctionCall","src":"763:17:41"},{"name":"length","nativeSrc":"782:6:41","nodeType":"YulIdentifier","src":"782:6:41"}],"functionName":{"name":"mcopy","nativeSrc":"738:5:41","nodeType":"YulIdentifier","src":"738:5:41"},"nativeSrc":"738:51:41","nodeType":"YulFunctionCall","src":"738:51:41"},"nativeSrc":"738:51:41","nodeType":"YulExpressionStatement","src":"738:51:41"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"813:6:41","nodeType":"YulIdentifier","src":"813:6:41"},{"name":"length","nativeSrc":"821:6:41","nodeType":"YulIdentifier","src":"821:6:41"}],"functionName":{"name":"add","nativeSrc":"809:3:41","nodeType":"YulIdentifier","src":"809:3:41"},"nativeSrc":"809:19:41","nodeType":"YulFunctionCall","src":"809:19:41"},{"kind":"number","nativeSrc":"830:4:41","nodeType":"YulLiteral","src":"830:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"805:3:41","nodeType":"YulIdentifier","src":"805:3:41"},"nativeSrc":"805:30:41","nodeType":"YulFunctionCall","src":"805:30:41"},{"kind":"number","nativeSrc":"837:1:41","nodeType":"YulLiteral","src":"837:1:41","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"798:6:41","nodeType":"YulIdentifier","src":"798:6:41"},"nativeSrc":"798:41:41","nodeType":"YulFunctionCall","src":"798:41:41"},"nativeSrc":"798:41:41","nodeType":"YulExpressionStatement","src":"798:41:41"},{"nativeSrc":"848:15:41","nodeType":"YulAssignment","src":"848:15:41","value":{"name":"memPtr","nativeSrc":"857:6:41","nodeType":"YulIdentifier","src":"857:6:41"},"variableNames":[{"name":"array","nativeSrc":"848:5:41","nodeType":"YulIdentifier","src":"848:5:41"}]}]},"name":"abi_decode_string_fromMemory","nativeSrc":"146:723:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"184:6:41","nodeType":"YulTypedName","src":"184:6:41","type":""},{"name":"end","nativeSrc":"192:3:41","nodeType":"YulTypedName","src":"192:3:41","type":""}],"returnVariables":[{"name":"array","nativeSrc":"200:5:41","nodeType":"YulTypedName","src":"200:5:41","type":""}],"src":"146:723:41"},{"body":{"nativeSrc":"1041:799:41","nodeType":"YulBlock","src":"1041:799:41","statements":[{"body":{"nativeSrc":"1088:16:41","nodeType":"YulBlock","src":"1088:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1097:1:41","nodeType":"YulLiteral","src":"1097:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1100:1:41","nodeType":"YulLiteral","src":"1100:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1090:6:41","nodeType":"YulIdentifier","src":"1090:6:41"},"nativeSrc":"1090:12:41","nodeType":"YulFunctionCall","src":"1090:12:41"},"nativeSrc":"1090:12:41","nodeType":"YulExpressionStatement","src":"1090:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1062:7:41","nodeType":"YulIdentifier","src":"1062:7:41"},{"name":"headStart","nativeSrc":"1071:9:41","nodeType":"YulIdentifier","src":"1071:9:41"}],"functionName":{"name":"sub","nativeSrc":"1058:3:41","nodeType":"YulIdentifier","src":"1058:3:41"},"nativeSrc":"1058:23:41","nodeType":"YulFunctionCall","src":"1058:23:41"},{"kind":"number","nativeSrc":"1083:3:41","nodeType":"YulLiteral","src":"1083:3:41","type":"","value":"160"}],"functionName":{"name":"slt","nativeSrc":"1054:3:41","nodeType":"YulIdentifier","src":"1054:3:41"},"nativeSrc":"1054:33:41","nodeType":"YulFunctionCall","src":"1054:33:41"},"nativeSrc":"1051:53:41","nodeType":"YulIf","src":"1051:53:41"},{"nativeSrc":"1113:30:41","nodeType":"YulVariableDeclaration","src":"1113:30:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1133:9:41","nodeType":"YulIdentifier","src":"1133:9:41"}],"functionName":{"name":"mload","nativeSrc":"1127:5:41","nodeType":"YulIdentifier","src":"1127:5:41"},"nativeSrc":"1127:16:41","nodeType":"YulFunctionCall","src":"1127:16:41"},"variables":[{"name":"offset","nativeSrc":"1117:6:41","nodeType":"YulTypedName","src":"1117:6:41","type":""}]},{"body":{"nativeSrc":"1186:16:41","nodeType":"YulBlock","src":"1186:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1195:1:41","nodeType":"YulLiteral","src":"1195:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1198:1:41","nodeType":"YulLiteral","src":"1198:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1188:6:41","nodeType":"YulIdentifier","src":"1188:6:41"},"nativeSrc":"1188:12:41","nodeType":"YulFunctionCall","src":"1188:12:41"},"nativeSrc":"1188:12:41","nodeType":"YulExpressionStatement","src":"1188:12:41"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1158:6:41","nodeType":"YulIdentifier","src":"1158:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1174:2:41","nodeType":"YulLiteral","src":"1174:2:41","type":"","value":"64"},{"kind":"number","nativeSrc":"1178:1:41","nodeType":"YulLiteral","src":"1178:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1170:3:41","nodeType":"YulIdentifier","src":"1170:3:41"},"nativeSrc":"1170:10:41","nodeType":"YulFunctionCall","src":"1170:10:41"},{"kind":"number","nativeSrc":"1182:1:41","nodeType":"YulLiteral","src":"1182:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1166:3:41","nodeType":"YulIdentifier","src":"1166:3:41"},"nativeSrc":"1166:18:41","nodeType":"YulFunctionCall","src":"1166:18:41"}],"functionName":{"name":"gt","nativeSrc":"1155:2:41","nodeType":"YulIdentifier","src":"1155:2:41"},"nativeSrc":"1155:30:41","nodeType":"YulFunctionCall","src":"1155:30:41"},"nativeSrc":"1152:50:41","nodeType":"YulIf","src":"1152:50:41"},{"nativeSrc":"1211:71:41","nodeType":"YulAssignment","src":"1211:71:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1254:9:41","nodeType":"YulIdentifier","src":"1254:9:41"},{"name":"offset","nativeSrc":"1265:6:41","nodeType":"YulIdentifier","src":"1265:6:41"}],"functionName":{"name":"add","nativeSrc":"1250:3:41","nodeType":"YulIdentifier","src":"1250:3:41"},"nativeSrc":"1250:22:41","nodeType":"YulFunctionCall","src":"1250:22:41"},{"name":"dataEnd","nativeSrc":"1274:7:41","nodeType":"YulIdentifier","src":"1274:7:41"}],"functionName":{"name":"abi_decode_string_fromMemory","nativeSrc":"1221:28:41","nodeType":"YulIdentifier","src":"1221:28:41"},"nativeSrc":"1221:61:41","nodeType":"YulFunctionCall","src":"1221:61:41"},"variableNames":[{"name":"value0","nativeSrc":"1211:6:41","nodeType":"YulIdentifier","src":"1211:6:41"}]},{"nativeSrc":"1291:41:41","nodeType":"YulVariableDeclaration","src":"1291:41:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1317:9:41","nodeType":"YulIdentifier","src":"1317:9:41"},{"kind":"number","nativeSrc":"1328:2:41","nodeType":"YulLiteral","src":"1328:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1313:3:41","nodeType":"YulIdentifier","src":"1313:3:41"},"nativeSrc":"1313:18:41","nodeType":"YulFunctionCall","src":"1313:18:41"}],"functionName":{"name":"mload","nativeSrc":"1307:5:41","nodeType":"YulIdentifier","src":"1307:5:41"},"nativeSrc":"1307:25:41","nodeType":"YulFunctionCall","src":"1307:25:41"},"variables":[{"name":"offset_1","nativeSrc":"1295:8:41","nodeType":"YulTypedName","src":"1295:8:41","type":""}]},{"body":{"nativeSrc":"1377:16:41","nodeType":"YulBlock","src":"1377:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1386:1:41","nodeType":"YulLiteral","src":"1386:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1389:1:41","nodeType":"YulLiteral","src":"1389:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1379:6:41","nodeType":"YulIdentifier","src":"1379:6:41"},"nativeSrc":"1379:12:41","nodeType":"YulFunctionCall","src":"1379:12:41"},"nativeSrc":"1379:12:41","nodeType":"YulExpressionStatement","src":"1379:12:41"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"1347:8:41","nodeType":"YulIdentifier","src":"1347:8:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1365:2:41","nodeType":"YulLiteral","src":"1365:2:41","type":"","value":"64"},{"kind":"number","nativeSrc":"1369:1:41","nodeType":"YulLiteral","src":"1369:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1361:3:41","nodeType":"YulIdentifier","src":"1361:3:41"},"nativeSrc":"1361:10:41","nodeType":"YulFunctionCall","src":"1361:10:41"},{"kind":"number","nativeSrc":"1373:1:41","nodeType":"YulLiteral","src":"1373:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1357:3:41","nodeType":"YulIdentifier","src":"1357:3:41"},"nativeSrc":"1357:18:41","nodeType":"YulFunctionCall","src":"1357:18:41"}],"functionName":{"name":"gt","nativeSrc":"1344:2:41","nodeType":"YulIdentifier","src":"1344:2:41"},"nativeSrc":"1344:32:41","nodeType":"YulFunctionCall","src":"1344:32:41"},"nativeSrc":"1341:52:41","nodeType":"YulIf","src":"1341:52:41"},{"nativeSrc":"1402:73:41","nodeType":"YulAssignment","src":"1402:73:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1445:9:41","nodeType":"YulIdentifier","src":"1445:9:41"},{"name":"offset_1","nativeSrc":"1456:8:41","nodeType":"YulIdentifier","src":"1456:8:41"}],"functionName":{"name":"add","nativeSrc":"1441:3:41","nodeType":"YulIdentifier","src":"1441:3:41"},"nativeSrc":"1441:24:41","nodeType":"YulFunctionCall","src":"1441:24:41"},{"name":"dataEnd","nativeSrc":"1467:7:41","nodeType":"YulIdentifier","src":"1467:7:41"}],"functionName":{"name":"abi_decode_string_fromMemory","nativeSrc":"1412:28:41","nodeType":"YulIdentifier","src":"1412:28:41"},"nativeSrc":"1412:63:41","nodeType":"YulFunctionCall","src":"1412:63:41"},"variableNames":[{"name":"value1","nativeSrc":"1402:6:41","nodeType":"YulIdentifier","src":"1402:6:41"}]},{"nativeSrc":"1484:35:41","nodeType":"YulAssignment","src":"1484:35:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1504:9:41","nodeType":"YulIdentifier","src":"1504:9:41"},{"kind":"number","nativeSrc":"1515:2:41","nodeType":"YulLiteral","src":"1515:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1500:3:41","nodeType":"YulIdentifier","src":"1500:3:41"},"nativeSrc":"1500:18:41","nodeType":"YulFunctionCall","src":"1500:18:41"}],"functionName":{"name":"mload","nativeSrc":"1494:5:41","nodeType":"YulIdentifier","src":"1494:5:41"},"nativeSrc":"1494:25:41","nodeType":"YulFunctionCall","src":"1494:25:41"},"variableNames":[{"name":"value2","nativeSrc":"1484:6:41","nodeType":"YulIdentifier","src":"1484:6:41"}]},{"nativeSrc":"1528:38:41","nodeType":"YulVariableDeclaration","src":"1528:38:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1551:9:41","nodeType":"YulIdentifier","src":"1551:9:41"},{"kind":"number","nativeSrc":"1562:2:41","nodeType":"YulLiteral","src":"1562:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1547:3:41","nodeType":"YulIdentifier","src":"1547:3:41"},"nativeSrc":"1547:18:41","nodeType":"YulFunctionCall","src":"1547:18:41"}],"functionName":{"name":"mload","nativeSrc":"1541:5:41","nodeType":"YulIdentifier","src":"1541:5:41"},"nativeSrc":"1541:25:41","nodeType":"YulFunctionCall","src":"1541:25:41"},"variables":[{"name":"value","nativeSrc":"1532:5:41","nodeType":"YulTypedName","src":"1532:5:41","type":""}]},{"body":{"nativeSrc":"1614:16:41","nodeType":"YulBlock","src":"1614:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1623:1:41","nodeType":"YulLiteral","src":"1623:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1626:1:41","nodeType":"YulLiteral","src":"1626:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1616:6:41","nodeType":"YulIdentifier","src":"1616:6:41"},"nativeSrc":"1616:12:41","nodeType":"YulFunctionCall","src":"1616:12:41"},"nativeSrc":"1616:12:41","nodeType":"YulExpressionStatement","src":"1616:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1588:5:41","nodeType":"YulIdentifier","src":"1588:5:41"},{"arguments":[{"name":"value","nativeSrc":"1599:5:41","nodeType":"YulIdentifier","src":"1599:5:41"},{"kind":"number","nativeSrc":"1606:4:41","nodeType":"YulLiteral","src":"1606:4:41","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"1595:3:41","nodeType":"YulIdentifier","src":"1595:3:41"},"nativeSrc":"1595:16:41","nodeType":"YulFunctionCall","src":"1595:16:41"}],"functionName":{"name":"eq","nativeSrc":"1585:2:41","nodeType":"YulIdentifier","src":"1585:2:41"},"nativeSrc":"1585:27:41","nodeType":"YulFunctionCall","src":"1585:27:41"}],"functionName":{"name":"iszero","nativeSrc":"1578:6:41","nodeType":"YulIdentifier","src":"1578:6:41"},"nativeSrc":"1578:35:41","nodeType":"YulFunctionCall","src":"1578:35:41"},"nativeSrc":"1575:55:41","nodeType":"YulIf","src":"1575:55:41"},{"nativeSrc":"1639:15:41","nodeType":"YulAssignment","src":"1639:15:41","value":{"name":"value","nativeSrc":"1649:5:41","nodeType":"YulIdentifier","src":"1649:5:41"},"variableNames":[{"name":"value3","nativeSrc":"1639:6:41","nodeType":"YulIdentifier","src":"1639:6:41"}]},{"nativeSrc":"1663:16:41","nodeType":"YulVariableDeclaration","src":"1663:16:41","value":{"kind":"number","nativeSrc":"1678:1:41","nodeType":"YulLiteral","src":"1678:1:41","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"1667:7:41","nodeType":"YulTypedName","src":"1667:7:41","type":""}]},{"nativeSrc":"1688:37:41","nodeType":"YulAssignment","src":"1688:37:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1709:9:41","nodeType":"YulIdentifier","src":"1709:9:41"},{"kind":"number","nativeSrc":"1720:3:41","nodeType":"YulLiteral","src":"1720:3:41","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"1705:3:41","nodeType":"YulIdentifier","src":"1705:3:41"},"nativeSrc":"1705:19:41","nodeType":"YulFunctionCall","src":"1705:19:41"}],"functionName":{"name":"mload","nativeSrc":"1699:5:41","nodeType":"YulIdentifier","src":"1699:5:41"},"nativeSrc":"1699:26:41","nodeType":"YulFunctionCall","src":"1699:26:41"},"variableNames":[{"name":"value_1","nativeSrc":"1688:7:41","nodeType":"YulIdentifier","src":"1688:7:41"}]},{"body":{"nativeSrc":"1792:16:41","nodeType":"YulBlock","src":"1792:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1801:1:41","nodeType":"YulLiteral","src":"1801:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1804:1:41","nodeType":"YulLiteral","src":"1804:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1794:6:41","nodeType":"YulIdentifier","src":"1794:6:41"},"nativeSrc":"1794:12:41","nodeType":"YulFunctionCall","src":"1794:12:41"},"nativeSrc":"1794:12:41","nodeType":"YulExpressionStatement","src":"1794:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"1747:7:41","nodeType":"YulIdentifier","src":"1747:7:41"},{"arguments":[{"name":"value_1","nativeSrc":"1760:7:41","nodeType":"YulIdentifier","src":"1760:7:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1777:3:41","nodeType":"YulLiteral","src":"1777:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"1782:1:41","nodeType":"YulLiteral","src":"1782:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1773:3:41","nodeType":"YulIdentifier","src":"1773:3:41"},"nativeSrc":"1773:11:41","nodeType":"YulFunctionCall","src":"1773:11:41"},{"kind":"number","nativeSrc":"1786:1:41","nodeType":"YulLiteral","src":"1786:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1769:3:41","nodeType":"YulIdentifier","src":"1769:3:41"},"nativeSrc":"1769:19:41","nodeType":"YulFunctionCall","src":"1769:19:41"}],"functionName":{"name":"and","nativeSrc":"1756:3:41","nodeType":"YulIdentifier","src":"1756:3:41"},"nativeSrc":"1756:33:41","nodeType":"YulFunctionCall","src":"1756:33:41"}],"functionName":{"name":"eq","nativeSrc":"1744:2:41","nodeType":"YulIdentifier","src":"1744:2:41"},"nativeSrc":"1744:46:41","nodeType":"YulFunctionCall","src":"1744:46:41"}],"functionName":{"name":"iszero","nativeSrc":"1737:6:41","nodeType":"YulIdentifier","src":"1737:6:41"},"nativeSrc":"1737:54:41","nodeType":"YulFunctionCall","src":"1737:54:41"},"nativeSrc":"1734:74:41","nodeType":"YulIf","src":"1734:74:41"},{"nativeSrc":"1817:17:41","nodeType":"YulAssignment","src":"1817:17:41","value":{"name":"value_1","nativeSrc":"1827:7:41","nodeType":"YulIdentifier","src":"1827:7:41"},"variableNames":[{"name":"value4","nativeSrc":"1817:6:41","nodeType":"YulIdentifier","src":"1817:6:41"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint8t_address_fromMemory","nativeSrc":"874:966:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"975:9:41","nodeType":"YulTypedName","src":"975:9:41","type":""},{"name":"dataEnd","nativeSrc":"986:7:41","nodeType":"YulTypedName","src":"986:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"998:6:41","nodeType":"YulTypedName","src":"998:6:41","type":""},{"name":"value1","nativeSrc":"1006:6:41","nodeType":"YulTypedName","src":"1006:6:41","type":""},{"name":"value2","nativeSrc":"1014:6:41","nodeType":"YulTypedName","src":"1014:6:41","type":""},{"name":"value3","nativeSrc":"1022:6:41","nodeType":"YulTypedName","src":"1022:6:41","type":""},{"name":"value4","nativeSrc":"1030:6:41","nodeType":"YulTypedName","src":"1030:6:41","type":""}],"src":"874:966:41"},{"body":{"nativeSrc":"1900:325:41","nodeType":"YulBlock","src":"1900:325:41","statements":[{"nativeSrc":"1910:22:41","nodeType":"YulAssignment","src":"1910:22:41","value":{"arguments":[{"kind":"number","nativeSrc":"1924:1:41","nodeType":"YulLiteral","src":"1924:1:41","type":"","value":"1"},{"name":"data","nativeSrc":"1927:4:41","nodeType":"YulIdentifier","src":"1927:4:41"}],"functionName":{"name":"shr","nativeSrc":"1920:3:41","nodeType":"YulIdentifier","src":"1920:3:41"},"nativeSrc":"1920:12:41","nodeType":"YulFunctionCall","src":"1920:12:41"},"variableNames":[{"name":"length","nativeSrc":"1910:6:41","nodeType":"YulIdentifier","src":"1910:6:41"}]},{"nativeSrc":"1941:38:41","nodeType":"YulVariableDeclaration","src":"1941:38:41","value":{"arguments":[{"name":"data","nativeSrc":"1971:4:41","nodeType":"YulIdentifier","src":"1971:4:41"},{"kind":"number","nativeSrc":"1977:1:41","nodeType":"YulLiteral","src":"1977:1:41","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"1967:3:41","nodeType":"YulIdentifier","src":"1967:3:41"},"nativeSrc":"1967:12:41","nodeType":"YulFunctionCall","src":"1967:12:41"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"1945:18:41","nodeType":"YulTypedName","src":"1945:18:41","type":""}]},{"body":{"nativeSrc":"2018:31:41","nodeType":"YulBlock","src":"2018:31:41","statements":[{"nativeSrc":"2020:27:41","nodeType":"YulAssignment","src":"2020:27:41","value":{"arguments":[{"name":"length","nativeSrc":"2034:6:41","nodeType":"YulIdentifier","src":"2034:6:41"},{"kind":"number","nativeSrc":"2042:4:41","nodeType":"YulLiteral","src":"2042:4:41","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"2030:3:41","nodeType":"YulIdentifier","src":"2030:3:41"},"nativeSrc":"2030:17:41","nodeType":"YulFunctionCall","src":"2030:17:41"},"variableNames":[{"name":"length","nativeSrc":"2020:6:41","nodeType":"YulIdentifier","src":"2020:6:41"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"1998:18:41","nodeType":"YulIdentifier","src":"1998:18:41"}],"functionName":{"name":"iszero","nativeSrc":"1991:6:41","nodeType":"YulIdentifier","src":"1991:6:41"},"nativeSrc":"1991:26:41","nodeType":"YulFunctionCall","src":"1991:26:41"},"nativeSrc":"1988:61:41","nodeType":"YulIf","src":"1988:61:41"},{"body":{"nativeSrc":"2108:111:41","nodeType":"YulBlock","src":"2108:111:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2129:1:41","nodeType":"YulLiteral","src":"2129:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"2136:3:41","nodeType":"YulLiteral","src":"2136:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"2141:10:41","nodeType":"YulLiteral","src":"2141:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"2132:3:41","nodeType":"YulIdentifier","src":"2132:3:41"},"nativeSrc":"2132:20:41","nodeType":"YulFunctionCall","src":"2132:20:41"}],"functionName":{"name":"mstore","nativeSrc":"2122:6:41","nodeType":"YulIdentifier","src":"2122:6:41"},"nativeSrc":"2122:31:41","nodeType":"YulFunctionCall","src":"2122:31:41"},"nativeSrc":"2122:31:41","nodeType":"YulExpressionStatement","src":"2122:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2173:1:41","nodeType":"YulLiteral","src":"2173:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"2176:4:41","nodeType":"YulLiteral","src":"2176:4:41","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"2166:6:41","nodeType":"YulIdentifier","src":"2166:6:41"},"nativeSrc":"2166:15:41","nodeType":"YulFunctionCall","src":"2166:15:41"},"nativeSrc":"2166:15:41","nodeType":"YulExpressionStatement","src":"2166:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2201:1:41","nodeType":"YulLiteral","src":"2201:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2204:4:41","nodeType":"YulLiteral","src":"2204:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"2194:6:41","nodeType":"YulIdentifier","src":"2194:6:41"},"nativeSrc":"2194:15:41","nodeType":"YulFunctionCall","src":"2194:15:41"},"nativeSrc":"2194:15:41","nodeType":"YulExpressionStatement","src":"2194:15:41"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"2064:18:41","nodeType":"YulIdentifier","src":"2064:18:41"},{"arguments":[{"name":"length","nativeSrc":"2087:6:41","nodeType":"YulIdentifier","src":"2087:6:41"},{"kind":"number","nativeSrc":"2095:2:41","nodeType":"YulLiteral","src":"2095:2:41","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"2084:2:41","nodeType":"YulIdentifier","src":"2084:2:41"},"nativeSrc":"2084:14:41","nodeType":"YulFunctionCall","src":"2084:14:41"}],"functionName":{"name":"eq","nativeSrc":"2061:2:41","nodeType":"YulIdentifier","src":"2061:2:41"},"nativeSrc":"2061:38:41","nodeType":"YulFunctionCall","src":"2061:38:41"},"nativeSrc":"2058:161:41","nodeType":"YulIf","src":"2058:161:41"}]},"name":"extract_byte_array_length","nativeSrc":"1845:380:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"1880:4:41","nodeType":"YulTypedName","src":"1880:4:41","type":""}],"returnVariables":[{"name":"length","nativeSrc":"1889:6:41","nodeType":"YulTypedName","src":"1889:6:41","type":""}],"src":"1845:380:41"},{"body":{"nativeSrc":"2286:65:41","nodeType":"YulBlock","src":"2286:65:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2303:1:41","nodeType":"YulLiteral","src":"2303:1:41","type":"","value":"0"},{"name":"ptr","nativeSrc":"2306:3:41","nodeType":"YulIdentifier","src":"2306:3:41"}],"functionName":{"name":"mstore","nativeSrc":"2296:6:41","nodeType":"YulIdentifier","src":"2296:6:41"},"nativeSrc":"2296:14:41","nodeType":"YulFunctionCall","src":"2296:14:41"},"nativeSrc":"2296:14:41","nodeType":"YulExpressionStatement","src":"2296:14:41"},{"nativeSrc":"2319:26:41","nodeType":"YulAssignment","src":"2319:26:41","value":{"arguments":[{"kind":"number","nativeSrc":"2337:1:41","nodeType":"YulLiteral","src":"2337:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2340:4:41","nodeType":"YulLiteral","src":"2340:4:41","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2327:9:41","nodeType":"YulIdentifier","src":"2327:9:41"},"nativeSrc":"2327:18:41","nodeType":"YulFunctionCall","src":"2327:18:41"},"variableNames":[{"name":"data","nativeSrc":"2319:4:41","nodeType":"YulIdentifier","src":"2319:4:41"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"2230:121:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"2269:3:41","nodeType":"YulTypedName","src":"2269:3:41","type":""}],"returnVariables":[{"name":"data","nativeSrc":"2277:4:41","nodeType":"YulTypedName","src":"2277:4:41","type":""}],"src":"2230:121:41"},{"body":{"nativeSrc":"2437:437:41","nodeType":"YulBlock","src":"2437:437:41","statements":[{"body":{"nativeSrc":"2470:398:41","nodeType":"YulBlock","src":"2470:398:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2491:1:41","nodeType":"YulLiteral","src":"2491:1:41","type":"","value":"0"},{"name":"array","nativeSrc":"2494:5:41","nodeType":"YulIdentifier","src":"2494:5:41"}],"functionName":{"name":"mstore","nativeSrc":"2484:6:41","nodeType":"YulIdentifier","src":"2484:6:41"},"nativeSrc":"2484:16:41","nodeType":"YulFunctionCall","src":"2484:16:41"},"nativeSrc":"2484:16:41","nodeType":"YulExpressionStatement","src":"2484:16:41"},{"nativeSrc":"2513:30:41","nodeType":"YulVariableDeclaration","src":"2513:30:41","value":{"arguments":[{"kind":"number","nativeSrc":"2535:1:41","nodeType":"YulLiteral","src":"2535:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2538:4:41","nodeType":"YulLiteral","src":"2538:4:41","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2525:9:41","nodeType":"YulIdentifier","src":"2525:9:41"},"nativeSrc":"2525:18:41","nodeType":"YulFunctionCall","src":"2525:18:41"},"variables":[{"name":"data","nativeSrc":"2517:4:41","nodeType":"YulTypedName","src":"2517:4:41","type":""}]},{"nativeSrc":"2556:57:41","nodeType":"YulVariableDeclaration","src":"2556:57:41","value":{"arguments":[{"name":"data","nativeSrc":"2579:4:41","nodeType":"YulIdentifier","src":"2579:4:41"},{"arguments":[{"kind":"number","nativeSrc":"2589:1:41","nodeType":"YulLiteral","src":"2589:1:41","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"2596:10:41","nodeType":"YulIdentifier","src":"2596:10:41"},{"kind":"number","nativeSrc":"2608:2:41","nodeType":"YulLiteral","src":"2608:2:41","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2592:3:41","nodeType":"YulIdentifier","src":"2592:3:41"},"nativeSrc":"2592:19:41","nodeType":"YulFunctionCall","src":"2592:19:41"}],"functionName":{"name":"shr","nativeSrc":"2585:3:41","nodeType":"YulIdentifier","src":"2585:3:41"},"nativeSrc":"2585:27:41","nodeType":"YulFunctionCall","src":"2585:27:41"}],"functionName":{"name":"add","nativeSrc":"2575:3:41","nodeType":"YulIdentifier","src":"2575:3:41"},"nativeSrc":"2575:38:41","nodeType":"YulFunctionCall","src":"2575:38:41"},"variables":[{"name":"deleteStart","nativeSrc":"2560:11:41","nodeType":"YulTypedName","src":"2560:11:41","type":""}]},{"body":{"nativeSrc":"2650:23:41","nodeType":"YulBlock","src":"2650:23:41","statements":[{"nativeSrc":"2652:19:41","nodeType":"YulAssignment","src":"2652:19:41","value":{"name":"data","nativeSrc":"2667:4:41","nodeType":"YulIdentifier","src":"2667:4:41"},"variableNames":[{"name":"deleteStart","nativeSrc":"2652:11:41","nodeType":"YulIdentifier","src":"2652:11:41"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"2632:10:41","nodeType":"YulIdentifier","src":"2632:10:41"},{"kind":"number","nativeSrc":"2644:4:41","nodeType":"YulLiteral","src":"2644:4:41","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"2629:2:41","nodeType":"YulIdentifier","src":"2629:2:41"},"nativeSrc":"2629:20:41","nodeType":"YulFunctionCall","src":"2629:20:41"},"nativeSrc":"2626:47:41","nodeType":"YulIf","src":"2626:47:41"},{"nativeSrc":"2686:41:41","nodeType":"YulVariableDeclaration","src":"2686:41:41","value":{"arguments":[{"name":"data","nativeSrc":"2700:4:41","nodeType":"YulIdentifier","src":"2700:4:41"},{"arguments":[{"kind":"number","nativeSrc":"2710:1:41","nodeType":"YulLiteral","src":"2710:1:41","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"2717:3:41","nodeType":"YulIdentifier","src":"2717:3:41"},{"kind":"number","nativeSrc":"2722:2:41","nodeType":"YulLiteral","src":"2722:2:41","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2713:3:41","nodeType":"YulIdentifier","src":"2713:3:41"},"nativeSrc":"2713:12:41","nodeType":"YulFunctionCall","src":"2713:12:41"}],"functionName":{"name":"shr","nativeSrc":"2706:3:41","nodeType":"YulIdentifier","src":"2706:3:41"},"nativeSrc":"2706:20:41","nodeType":"YulFunctionCall","src":"2706:20:41"}],"functionName":{"name":"add","nativeSrc":"2696:3:41","nodeType":"YulIdentifier","src":"2696:3:41"},"nativeSrc":"2696:31:41","nodeType":"YulFunctionCall","src":"2696:31:41"},"variables":[{"name":"_1","nativeSrc":"2690:2:41","nodeType":"YulTypedName","src":"2690:2:41","type":""}]},{"nativeSrc":"2740:24:41","nodeType":"YulVariableDeclaration","src":"2740:24:41","value":{"name":"deleteStart","nativeSrc":"2753:11:41","nodeType":"YulIdentifier","src":"2753:11:41"},"variables":[{"name":"start","nativeSrc":"2744:5:41","nodeType":"YulTypedName","src":"2744:5:41","type":""}]},{"body":{"nativeSrc":"2838:20:41","nodeType":"YulBlock","src":"2838:20:41","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"2847:5:41","nodeType":"YulIdentifier","src":"2847:5:41"},{"kind":"number","nativeSrc":"2854:1:41","nodeType":"YulLiteral","src":"2854:1:41","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"2840:6:41","nodeType":"YulIdentifier","src":"2840:6:41"},"nativeSrc":"2840:16:41","nodeType":"YulFunctionCall","src":"2840:16:41"},"nativeSrc":"2840:16:41","nodeType":"YulExpressionStatement","src":"2840:16:41"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"2788:5:41","nodeType":"YulIdentifier","src":"2788:5:41"},{"name":"_1","nativeSrc":"2795:2:41","nodeType":"YulIdentifier","src":"2795:2:41"}],"functionName":{"name":"lt","nativeSrc":"2785:2:41","nodeType":"YulIdentifier","src":"2785:2:41"},"nativeSrc":"2785:13:41","nodeType":"YulFunctionCall","src":"2785:13:41"},"nativeSrc":"2777:81:41","nodeType":"YulForLoop","post":{"nativeSrc":"2799:26:41","nodeType":"YulBlock","src":"2799:26:41","statements":[{"nativeSrc":"2801:22:41","nodeType":"YulAssignment","src":"2801:22:41","value":{"arguments":[{"name":"start","nativeSrc":"2814:5:41","nodeType":"YulIdentifier","src":"2814:5:41"},{"kind":"number","nativeSrc":"2821:1:41","nodeType":"YulLiteral","src":"2821:1:41","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"2810:3:41","nodeType":"YulIdentifier","src":"2810:3:41"},"nativeSrc":"2810:13:41","nodeType":"YulFunctionCall","src":"2810:13:41"},"variableNames":[{"name":"start","nativeSrc":"2801:5:41","nodeType":"YulIdentifier","src":"2801:5:41"}]}]},"pre":{"nativeSrc":"2781:3:41","nodeType":"YulBlock","src":"2781:3:41","statements":[]},"src":"2777:81:41"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"2453:3:41","nodeType":"YulIdentifier","src":"2453:3:41"},{"kind":"number","nativeSrc":"2458:2:41","nodeType":"YulLiteral","src":"2458:2:41","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"2450:2:41","nodeType":"YulIdentifier","src":"2450:2:41"},"nativeSrc":"2450:11:41","nodeType":"YulFunctionCall","src":"2450:11:41"},"nativeSrc":"2447:421:41","nodeType":"YulIf","src":"2447:421:41"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"2356:518:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"2409:5:41","nodeType":"YulTypedName","src":"2409:5:41","type":""},{"name":"len","nativeSrc":"2416:3:41","nodeType":"YulTypedName","src":"2416:3:41","type":""},{"name":"startIndex","nativeSrc":"2421:10:41","nodeType":"YulTypedName","src":"2421:10:41","type":""}],"src":"2356:518:41"},{"body":{"nativeSrc":"2964:81:41","nodeType":"YulBlock","src":"2964:81:41","statements":[{"nativeSrc":"2974:65:41","nodeType":"YulAssignment","src":"2974:65:41","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"2989:4:41","nodeType":"YulIdentifier","src":"2989:4:41"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3007:1:41","nodeType":"YulLiteral","src":"3007:1:41","type":"","value":"3"},{"name":"len","nativeSrc":"3010:3:41","nodeType":"YulIdentifier","src":"3010:3:41"}],"functionName":{"name":"shl","nativeSrc":"3003:3:41","nodeType":"YulIdentifier","src":"3003:3:41"},"nativeSrc":"3003:11:41","nodeType":"YulFunctionCall","src":"3003:11:41"},{"arguments":[{"kind":"number","nativeSrc":"3020:1:41","nodeType":"YulLiteral","src":"3020:1:41","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3016:3:41","nodeType":"YulIdentifier","src":"3016:3:41"},"nativeSrc":"3016:6:41","nodeType":"YulFunctionCall","src":"3016:6:41"}],"functionName":{"name":"shr","nativeSrc":"2999:3:41","nodeType":"YulIdentifier","src":"2999:3:41"},"nativeSrc":"2999:24:41","nodeType":"YulFunctionCall","src":"2999:24:41"}],"functionName":{"name":"not","nativeSrc":"2995:3:41","nodeType":"YulIdentifier","src":"2995:3:41"},"nativeSrc":"2995:29:41","nodeType":"YulFunctionCall","src":"2995:29:41"}],"functionName":{"name":"and","nativeSrc":"2985:3:41","nodeType":"YulIdentifier","src":"2985:3:41"},"nativeSrc":"2985:40:41","nodeType":"YulFunctionCall","src":"2985:40:41"},{"arguments":[{"kind":"number","nativeSrc":"3031:1:41","nodeType":"YulLiteral","src":"3031:1:41","type":"","value":"1"},{"name":"len","nativeSrc":"3034:3:41","nodeType":"YulIdentifier","src":"3034:3:41"}],"functionName":{"name":"shl","nativeSrc":"3027:3:41","nodeType":"YulIdentifier","src":"3027:3:41"},"nativeSrc":"3027:11:41","nodeType":"YulFunctionCall","src":"3027:11:41"}],"functionName":{"name":"or","nativeSrc":"2982:2:41","nodeType":"YulIdentifier","src":"2982:2:41"},"nativeSrc":"2982:57:41","nodeType":"YulFunctionCall","src":"2982:57:41"},"variableNames":[{"name":"used","nativeSrc":"2974:4:41","nodeType":"YulIdentifier","src":"2974:4:41"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"2879:166:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"2941:4:41","nodeType":"YulTypedName","src":"2941:4:41","type":""},{"name":"len","nativeSrc":"2947:3:41","nodeType":"YulTypedName","src":"2947:3:41","type":""}],"returnVariables":[{"name":"used","nativeSrc":"2955:4:41","nodeType":"YulTypedName","src":"2955:4:41","type":""}],"src":"2879:166:41"},{"body":{"nativeSrc":"3146:1203:41","nodeType":"YulBlock","src":"3146:1203:41","statements":[{"nativeSrc":"3156:24:41","nodeType":"YulVariableDeclaration","src":"3156:24:41","value":{"arguments":[{"name":"src","nativeSrc":"3176:3:41","nodeType":"YulIdentifier","src":"3176:3:41"}],"functionName":{"name":"mload","nativeSrc":"3170:5:41","nodeType":"YulIdentifier","src":"3170:5:41"},"nativeSrc":"3170:10:41","nodeType":"YulFunctionCall","src":"3170:10:41"},"variables":[{"name":"newLen","nativeSrc":"3160:6:41","nodeType":"YulTypedName","src":"3160:6:41","type":""}]},{"body":{"nativeSrc":"3223:22:41","nodeType":"YulBlock","src":"3223:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3225:16:41","nodeType":"YulIdentifier","src":"3225:16:41"},"nativeSrc":"3225:18:41","nodeType":"YulFunctionCall","src":"3225:18:41"},"nativeSrc":"3225:18:41","nodeType":"YulExpressionStatement","src":"3225:18:41"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"3195:6:41","nodeType":"YulIdentifier","src":"3195:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3211:2:41","nodeType":"YulLiteral","src":"3211:2:41","type":"","value":"64"},{"kind":"number","nativeSrc":"3215:1:41","nodeType":"YulLiteral","src":"3215:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3207:3:41","nodeType":"YulIdentifier","src":"3207:3:41"},"nativeSrc":"3207:10:41","nodeType":"YulFunctionCall","src":"3207:10:41"},{"kind":"number","nativeSrc":"3219:1:41","nodeType":"YulLiteral","src":"3219:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3203:3:41","nodeType":"YulIdentifier","src":"3203:3:41"},"nativeSrc":"3203:18:41","nodeType":"YulFunctionCall","src":"3203:18:41"}],"functionName":{"name":"gt","nativeSrc":"3192:2:41","nodeType":"YulIdentifier","src":"3192:2:41"},"nativeSrc":"3192:30:41","nodeType":"YulFunctionCall","src":"3192:30:41"},"nativeSrc":"3189:56:41","nodeType":"YulIf","src":"3189:56:41"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"3298:4:41","nodeType":"YulIdentifier","src":"3298:4:41"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"3336:4:41","nodeType":"YulIdentifier","src":"3336:4:41"}],"functionName":{"name":"sload","nativeSrc":"3330:5:41","nodeType":"YulIdentifier","src":"3330:5:41"},"nativeSrc":"3330:11:41","nodeType":"YulFunctionCall","src":"3330:11:41"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"3304:25:41","nodeType":"YulIdentifier","src":"3304:25:41"},"nativeSrc":"3304:38:41","nodeType":"YulFunctionCall","src":"3304:38:41"},{"name":"newLen","nativeSrc":"3344:6:41","nodeType":"YulIdentifier","src":"3344:6:41"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"3254:43:41","nodeType":"YulIdentifier","src":"3254:43:41"},"nativeSrc":"3254:97:41","nodeType":"YulFunctionCall","src":"3254:97:41"},"nativeSrc":"3254:97:41","nodeType":"YulExpressionStatement","src":"3254:97:41"},{"nativeSrc":"3360:18:41","nodeType":"YulVariableDeclaration","src":"3360:18:41","value":{"kind":"number","nativeSrc":"3377:1:41","nodeType":"YulLiteral","src":"3377:1:41","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"3364:9:41","nodeType":"YulTypedName","src":"3364:9:41","type":""}]},{"nativeSrc":"3387:17:41","nodeType":"YulAssignment","src":"3387:17:41","value":{"kind":"number","nativeSrc":"3400:4:41","nodeType":"YulLiteral","src":"3400:4:41","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"3387:9:41","nodeType":"YulIdentifier","src":"3387:9:41"}]},{"cases":[{"body":{"nativeSrc":"3450:642:41","nodeType":"YulBlock","src":"3450:642:41","statements":[{"nativeSrc":"3464:35:41","nodeType":"YulVariableDeclaration","src":"3464:35:41","value":{"arguments":[{"name":"newLen","nativeSrc":"3483:6:41","nodeType":"YulIdentifier","src":"3483:6:41"},{"arguments":[{"kind":"number","nativeSrc":"3495:2:41","nodeType":"YulLiteral","src":"3495:2:41","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"3491:3:41","nodeType":"YulIdentifier","src":"3491:3:41"},"nativeSrc":"3491:7:41","nodeType":"YulFunctionCall","src":"3491:7:41"}],"functionName":{"name":"and","nativeSrc":"3479:3:41","nodeType":"YulIdentifier","src":"3479:3:41"},"nativeSrc":"3479:20:41","nodeType":"YulFunctionCall","src":"3479:20:41"},"variables":[{"name":"loopEnd","nativeSrc":"3468:7:41","nodeType":"YulTypedName","src":"3468:7:41","type":""}]},{"nativeSrc":"3512:49:41","nodeType":"YulVariableDeclaration","src":"3512:49:41","value":{"arguments":[{"name":"slot","nativeSrc":"3556:4:41","nodeType":"YulIdentifier","src":"3556:4:41"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"3526:29:41","nodeType":"YulIdentifier","src":"3526:29:41"},"nativeSrc":"3526:35:41","nodeType":"YulFunctionCall","src":"3526:35:41"},"variables":[{"name":"dstPtr","nativeSrc":"3516:6:41","nodeType":"YulTypedName","src":"3516:6:41","type":""}]},{"nativeSrc":"3574:10:41","nodeType":"YulVariableDeclaration","src":"3574:10:41","value":{"kind":"number","nativeSrc":"3583:1:41","nodeType":"YulLiteral","src":"3583:1:41","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"3578:1:41","nodeType":"YulTypedName","src":"3578:1:41","type":""}]},{"body":{"nativeSrc":"3654:165:41","nodeType":"YulBlock","src":"3654:165:41","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3679:6:41","nodeType":"YulIdentifier","src":"3679:6:41"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3697:3:41","nodeType":"YulIdentifier","src":"3697:3:41"},{"name":"srcOffset","nativeSrc":"3702:9:41","nodeType":"YulIdentifier","src":"3702:9:41"}],"functionName":{"name":"add","nativeSrc":"3693:3:41","nodeType":"YulIdentifier","src":"3693:3:41"},"nativeSrc":"3693:19:41","nodeType":"YulFunctionCall","src":"3693:19:41"}],"functionName":{"name":"mload","nativeSrc":"3687:5:41","nodeType":"YulIdentifier","src":"3687:5:41"},"nativeSrc":"3687:26:41","nodeType":"YulFunctionCall","src":"3687:26:41"}],"functionName":{"name":"sstore","nativeSrc":"3672:6:41","nodeType":"YulIdentifier","src":"3672:6:41"},"nativeSrc":"3672:42:41","nodeType":"YulFunctionCall","src":"3672:42:41"},"nativeSrc":"3672:42:41","nodeType":"YulExpressionStatement","src":"3672:42:41"},{"nativeSrc":"3731:24:41","nodeType":"YulAssignment","src":"3731:24:41","value":{"arguments":[{"name":"dstPtr","nativeSrc":"3745:6:41","nodeType":"YulIdentifier","src":"3745:6:41"},{"kind":"number","nativeSrc":"3753:1:41","nodeType":"YulLiteral","src":"3753:1:41","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3741:3:41","nodeType":"YulIdentifier","src":"3741:3:41"},"nativeSrc":"3741:14:41","nodeType":"YulFunctionCall","src":"3741:14:41"},"variableNames":[{"name":"dstPtr","nativeSrc":"3731:6:41","nodeType":"YulIdentifier","src":"3731:6:41"}]},{"nativeSrc":"3772:33:41","nodeType":"YulAssignment","src":"3772:33:41","value":{"arguments":[{"name":"srcOffset","nativeSrc":"3789:9:41","nodeType":"YulIdentifier","src":"3789:9:41"},{"kind":"number","nativeSrc":"3800:4:41","nodeType":"YulLiteral","src":"3800:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3785:3:41","nodeType":"YulIdentifier","src":"3785:3:41"},"nativeSrc":"3785:20:41","nodeType":"YulFunctionCall","src":"3785:20:41"},"variableNames":[{"name":"srcOffset","nativeSrc":"3772:9:41","nodeType":"YulIdentifier","src":"3772:9:41"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"3608:1:41","nodeType":"YulIdentifier","src":"3608:1:41"},{"name":"loopEnd","nativeSrc":"3611:7:41","nodeType":"YulIdentifier","src":"3611:7:41"}],"functionName":{"name":"lt","nativeSrc":"3605:2:41","nodeType":"YulIdentifier","src":"3605:2:41"},"nativeSrc":"3605:14:41","nodeType":"YulFunctionCall","src":"3605:14:41"},"nativeSrc":"3597:222:41","nodeType":"YulForLoop","post":{"nativeSrc":"3620:21:41","nodeType":"YulBlock","src":"3620:21:41","statements":[{"nativeSrc":"3622:17:41","nodeType":"YulAssignment","src":"3622:17:41","value":{"arguments":[{"name":"i","nativeSrc":"3631:1:41","nodeType":"YulIdentifier","src":"3631:1:41"},{"kind":"number","nativeSrc":"3634:4:41","nodeType":"YulLiteral","src":"3634:4:41","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3627:3:41","nodeType":"YulIdentifier","src":"3627:3:41"},"nativeSrc":"3627:12:41","nodeType":"YulFunctionCall","src":"3627:12:41"},"variableNames":[{"name":"i","nativeSrc":"3622:1:41","nodeType":"YulIdentifier","src":"3622:1:41"}]}]},"pre":{"nativeSrc":"3601:3:41","nodeType":"YulBlock","src":"3601:3:41","statements":[]},"src":"3597:222:41"},{"body":{"nativeSrc":"3867:166:41","nodeType":"YulBlock","src":"3867:166:41","statements":[{"nativeSrc":"3885:43:41","nodeType":"YulVariableDeclaration","src":"3885:43:41","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3912:3:41","nodeType":"YulIdentifier","src":"3912:3:41"},{"name":"srcOffset","nativeSrc":"3917:9:41","nodeType":"YulIdentifier","src":"3917:9:41"}],"functionName":{"name":"add","nativeSrc":"3908:3:41","nodeType":"YulIdentifier","src":"3908:3:41"},"nativeSrc":"3908:19:41","nodeType":"YulFunctionCall","src":"3908:19:41"}],"functionName":{"name":"mload","nativeSrc":"3902:5:41","nodeType":"YulIdentifier","src":"3902:5:41"},"nativeSrc":"3902:26:41","nodeType":"YulFunctionCall","src":"3902:26:41"},"variables":[{"name":"lastValue","nativeSrc":"3889:9:41","nodeType":"YulTypedName","src":"3889:9:41","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3952:6:41","nodeType":"YulIdentifier","src":"3952:6:41"},{"arguments":[{"name":"lastValue","nativeSrc":"3964:9:41","nodeType":"YulIdentifier","src":"3964:9:41"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3991:1:41","nodeType":"YulLiteral","src":"3991:1:41","type":"","value":"3"},{"name":"newLen","nativeSrc":"3994:6:41","nodeType":"YulIdentifier","src":"3994:6:41"}],"functionName":{"name":"shl","nativeSrc":"3987:3:41","nodeType":"YulIdentifier","src":"3987:3:41"},"nativeSrc":"3987:14:41","nodeType":"YulFunctionCall","src":"3987:14:41"},{"kind":"number","nativeSrc":"4003:3:41","nodeType":"YulLiteral","src":"4003:3:41","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"3983:3:41","nodeType":"YulIdentifier","src":"3983:3:41"},"nativeSrc":"3983:24:41","nodeType":"YulFunctionCall","src":"3983:24:41"},{"arguments":[{"kind":"number","nativeSrc":"4013:1:41","nodeType":"YulLiteral","src":"4013:1:41","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"4009:3:41","nodeType":"YulIdentifier","src":"4009:3:41"},"nativeSrc":"4009:6:41","nodeType":"YulFunctionCall","src":"4009:6:41"}],"functionName":{"name":"shr","nativeSrc":"3979:3:41","nodeType":"YulIdentifier","src":"3979:3:41"},"nativeSrc":"3979:37:41","nodeType":"YulFunctionCall","src":"3979:37:41"}],"functionName":{"name":"not","nativeSrc":"3975:3:41","nodeType":"YulIdentifier","src":"3975:3:41"},"nativeSrc":"3975:42:41","nodeType":"YulFunctionCall","src":"3975:42:41"}],"functionName":{"name":"and","nativeSrc":"3960:3:41","nodeType":"YulIdentifier","src":"3960:3:41"},"nativeSrc":"3960:58:41","nodeType":"YulFunctionCall","src":"3960:58:41"}],"functionName":{"name":"sstore","nativeSrc":"3945:6:41","nodeType":"YulIdentifier","src":"3945:6:41"},"nativeSrc":"3945:74:41","nodeType":"YulFunctionCall","src":"3945:74:41"},"nativeSrc":"3945:74:41","nodeType":"YulExpressionStatement","src":"3945:74:41"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"3838:7:41","nodeType":"YulIdentifier","src":"3838:7:41"},{"name":"newLen","nativeSrc":"3847:6:41","nodeType":"YulIdentifier","src":"3847:6:41"}],"functionName":{"name":"lt","nativeSrc":"3835:2:41","nodeType":"YulIdentifier","src":"3835:2:41"},"nativeSrc":"3835:19:41","nodeType":"YulFunctionCall","src":"3835:19:41"},"nativeSrc":"3832:201:41","nodeType":"YulIf","src":"3832:201:41"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"4053:4:41","nodeType":"YulIdentifier","src":"4053:4:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4067:1:41","nodeType":"YulLiteral","src":"4067:1:41","type":"","value":"1"},{"name":"newLen","nativeSrc":"4070:6:41","nodeType":"YulIdentifier","src":"4070:6:41"}],"functionName":{"name":"shl","nativeSrc":"4063:3:41","nodeType":"YulIdentifier","src":"4063:3:41"},"nativeSrc":"4063:14:41","nodeType":"YulFunctionCall","src":"4063:14:41"},{"kind":"number","nativeSrc":"4079:1:41","nodeType":"YulLiteral","src":"4079:1:41","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"4059:3:41","nodeType":"YulIdentifier","src":"4059:3:41"},"nativeSrc":"4059:22:41","nodeType":"YulFunctionCall","src":"4059:22:41"}],"functionName":{"name":"sstore","nativeSrc":"4046:6:41","nodeType":"YulIdentifier","src":"4046:6:41"},"nativeSrc":"4046:36:41","nodeType":"YulFunctionCall","src":"4046:36:41"},"nativeSrc":"4046:36:41","nodeType":"YulExpressionStatement","src":"4046:36:41"}]},"nativeSrc":"3443:649:41","nodeType":"YulCase","src":"3443:649:41","value":{"kind":"number","nativeSrc":"3448:1:41","nodeType":"YulLiteral","src":"3448:1:41","type":"","value":"1"}},{"body":{"nativeSrc":"4109:234:41","nodeType":"YulBlock","src":"4109:234:41","statements":[{"nativeSrc":"4123:14:41","nodeType":"YulVariableDeclaration","src":"4123:14:41","value":{"kind":"number","nativeSrc":"4136:1:41","nodeType":"YulLiteral","src":"4136:1:41","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"4127:5:41","nodeType":"YulTypedName","src":"4127:5:41","type":""}]},{"body":{"nativeSrc":"4172:67:41","nodeType":"YulBlock","src":"4172:67:41","statements":[{"nativeSrc":"4190:35:41","nodeType":"YulAssignment","src":"4190:35:41","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"4209:3:41","nodeType":"YulIdentifier","src":"4209:3:41"},{"name":"srcOffset","nativeSrc":"4214:9:41","nodeType":"YulIdentifier","src":"4214:9:41"}],"functionName":{"name":"add","nativeSrc":"4205:3:41","nodeType":"YulIdentifier","src":"4205:3:41"},"nativeSrc":"4205:19:41","nodeType":"YulFunctionCall","src":"4205:19:41"}],"functionName":{"name":"mload","nativeSrc":"4199:5:41","nodeType":"YulIdentifier","src":"4199:5:41"},"nativeSrc":"4199:26:41","nodeType":"YulFunctionCall","src":"4199:26:41"},"variableNames":[{"name":"value","nativeSrc":"4190:5:41","nodeType":"YulIdentifier","src":"4190:5:41"}]}]},"condition":{"name":"newLen","nativeSrc":"4153:6:41","nodeType":"YulIdentifier","src":"4153:6:41"},"nativeSrc":"4150:89:41","nodeType":"YulIf","src":"4150:89:41"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"4259:4:41","nodeType":"YulIdentifier","src":"4259:4:41"},{"arguments":[{"name":"value","nativeSrc":"4318:5:41","nodeType":"YulIdentifier","src":"4318:5:41"},{"name":"newLen","nativeSrc":"4325:6:41","nodeType":"YulIdentifier","src":"4325:6:41"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"4265:52:41","nodeType":"YulIdentifier","src":"4265:52:41"},"nativeSrc":"4265:67:41","nodeType":"YulFunctionCall","src":"4265:67:41"}],"functionName":{"name":"sstore","nativeSrc":"4252:6:41","nodeType":"YulIdentifier","src":"4252:6:41"},"nativeSrc":"4252:81:41","nodeType":"YulFunctionCall","src":"4252:81:41"},"nativeSrc":"4252:81:41","nodeType":"YulExpressionStatement","src":"4252:81:41"}]},"nativeSrc":"4101:242:41","nodeType":"YulCase","src":"4101:242:41","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"3423:6:41","nodeType":"YulIdentifier","src":"3423:6:41"},{"kind":"number","nativeSrc":"3431:2:41","nodeType":"YulLiteral","src":"3431:2:41","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"3420:2:41","nodeType":"YulIdentifier","src":"3420:2:41"},"nativeSrc":"3420:14:41","nodeType":"YulFunctionCall","src":"3420:14:41"},"nativeSrc":"3413:930:41","nodeType":"YulSwitch","src":"3413:930:41"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"3050:1299:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"3131:4:41","nodeType":"YulTypedName","src":"3131:4:41","type":""},{"name":"src","nativeSrc":"3137:3:41","nodeType":"YulTypedName","src":"3137:3:41","type":""}],"src":"3050:1299:41"},{"body":{"nativeSrc":"4455:102:41","nodeType":"YulBlock","src":"4455:102:41","statements":[{"nativeSrc":"4465:26:41","nodeType":"YulAssignment","src":"4465:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"4477:9:41","nodeType":"YulIdentifier","src":"4477:9:41"},{"kind":"number","nativeSrc":"4488:2:41","nodeType":"YulLiteral","src":"4488:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4473:3:41","nodeType":"YulIdentifier","src":"4473:3:41"},"nativeSrc":"4473:18:41","nodeType":"YulFunctionCall","src":"4473:18:41"},"variableNames":[{"name":"tail","nativeSrc":"4465:4:41","nodeType":"YulIdentifier","src":"4465:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4507:9:41","nodeType":"YulIdentifier","src":"4507:9:41"},{"arguments":[{"name":"value0","nativeSrc":"4522:6:41","nodeType":"YulIdentifier","src":"4522:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4538:3:41","nodeType":"YulLiteral","src":"4538:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"4543:1:41","nodeType":"YulLiteral","src":"4543:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4534:3:41","nodeType":"YulIdentifier","src":"4534:3:41"},"nativeSrc":"4534:11:41","nodeType":"YulFunctionCall","src":"4534:11:41"},{"kind":"number","nativeSrc":"4547:1:41","nodeType":"YulLiteral","src":"4547:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4530:3:41","nodeType":"YulIdentifier","src":"4530:3:41"},"nativeSrc":"4530:19:41","nodeType":"YulFunctionCall","src":"4530:19:41"}],"functionName":{"name":"and","nativeSrc":"4518:3:41","nodeType":"YulIdentifier","src":"4518:3:41"},"nativeSrc":"4518:32:41","nodeType":"YulFunctionCall","src":"4518:32:41"}],"functionName":{"name":"mstore","nativeSrc":"4500:6:41","nodeType":"YulIdentifier","src":"4500:6:41"},"nativeSrc":"4500:51:41","nodeType":"YulFunctionCall","src":"4500:51:41"},"nativeSrc":"4500:51:41","nodeType":"YulExpressionStatement","src":"4500:51:41"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"4354:203:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4424:9:41","nodeType":"YulTypedName","src":"4424:9:41","type":""},{"name":"value0","nativeSrc":"4435:6:41","nodeType":"YulTypedName","src":"4435:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4446:4:41","nodeType":"YulTypedName","src":"4446:4:41","type":""}],"src":"4354:203:41"},{"body":{"nativeSrc":"4610:174:41","nodeType":"YulBlock","src":"4610:174:41","statements":[{"nativeSrc":"4620:16:41","nodeType":"YulAssignment","src":"4620:16:41","value":{"arguments":[{"name":"x","nativeSrc":"4631:1:41","nodeType":"YulIdentifier","src":"4631:1:41"},{"name":"y","nativeSrc":"4634:1:41","nodeType":"YulIdentifier","src":"4634:1:41"}],"functionName":{"name":"add","nativeSrc":"4627:3:41","nodeType":"YulIdentifier","src":"4627:3:41"},"nativeSrc":"4627:9:41","nodeType":"YulFunctionCall","src":"4627:9:41"},"variableNames":[{"name":"sum","nativeSrc":"4620:3:41","nodeType":"YulIdentifier","src":"4620:3:41"}]},{"body":{"nativeSrc":"4667:111:41","nodeType":"YulBlock","src":"4667:111:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4688:1:41","nodeType":"YulLiteral","src":"4688:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4695:3:41","nodeType":"YulLiteral","src":"4695:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"4700:10:41","nodeType":"YulLiteral","src":"4700:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4691:3:41","nodeType":"YulIdentifier","src":"4691:3:41"},"nativeSrc":"4691:20:41","nodeType":"YulFunctionCall","src":"4691:20:41"}],"functionName":{"name":"mstore","nativeSrc":"4681:6:41","nodeType":"YulIdentifier","src":"4681:6:41"},"nativeSrc":"4681:31:41","nodeType":"YulFunctionCall","src":"4681:31:41"},"nativeSrc":"4681:31:41","nodeType":"YulExpressionStatement","src":"4681:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4732:1:41","nodeType":"YulLiteral","src":"4732:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"4735:4:41","nodeType":"YulLiteral","src":"4735:4:41","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"4725:6:41","nodeType":"YulIdentifier","src":"4725:6:41"},"nativeSrc":"4725:15:41","nodeType":"YulFunctionCall","src":"4725:15:41"},"nativeSrc":"4725:15:41","nodeType":"YulExpressionStatement","src":"4725:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4760:1:41","nodeType":"YulLiteral","src":"4760:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"4763:4:41","nodeType":"YulLiteral","src":"4763:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4753:6:41","nodeType":"YulIdentifier","src":"4753:6:41"},"nativeSrc":"4753:15:41","nodeType":"YulFunctionCall","src":"4753:15:41"},"nativeSrc":"4753:15:41","nodeType":"YulExpressionStatement","src":"4753:15:41"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"4651:1:41","nodeType":"YulIdentifier","src":"4651:1:41"},{"name":"sum","nativeSrc":"4654:3:41","nodeType":"YulIdentifier","src":"4654:3:41"}],"functionName":{"name":"gt","nativeSrc":"4648:2:41","nodeType":"YulIdentifier","src":"4648:2:41"},"nativeSrc":"4648:10:41","nodeType":"YulFunctionCall","src":"4648:10:41"},"nativeSrc":"4645:133:41","nodeType":"YulIf","src":"4645:133:41"}]},"name":"checked_add_t_uint256","nativeSrc":"4562:222:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"4593:1:41","nodeType":"YulTypedName","src":"4593:1:41","type":""},{"name":"y","nativeSrc":"4596:1:41","nodeType":"YulTypedName","src":"4596:1:41","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"4602:3:41","nodeType":"YulTypedName","src":"4602:3:41","type":""}],"src":"4562:222:41"},{"body":{"nativeSrc":"4946:188:41","nodeType":"YulBlock","src":"4946:188:41","statements":[{"nativeSrc":"4956:26:41","nodeType":"YulAssignment","src":"4956:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"4968:9:41","nodeType":"YulIdentifier","src":"4968:9:41"},{"kind":"number","nativeSrc":"4979:2:41","nodeType":"YulLiteral","src":"4979:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4964:3:41","nodeType":"YulIdentifier","src":"4964:3:41"},"nativeSrc":"4964:18:41","nodeType":"YulFunctionCall","src":"4964:18:41"},"variableNames":[{"name":"tail","nativeSrc":"4956:4:41","nodeType":"YulIdentifier","src":"4956:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4998:9:41","nodeType":"YulIdentifier","src":"4998:9:41"},{"arguments":[{"name":"value0","nativeSrc":"5013:6:41","nodeType":"YulIdentifier","src":"5013:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5029:3:41","nodeType":"YulLiteral","src":"5029:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"5034:1:41","nodeType":"YulLiteral","src":"5034:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5025:3:41","nodeType":"YulIdentifier","src":"5025:3:41"},"nativeSrc":"5025:11:41","nodeType":"YulFunctionCall","src":"5025:11:41"},{"kind":"number","nativeSrc":"5038:1:41","nodeType":"YulLiteral","src":"5038:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5021:3:41","nodeType":"YulIdentifier","src":"5021:3:41"},"nativeSrc":"5021:19:41","nodeType":"YulFunctionCall","src":"5021:19:41"}],"functionName":{"name":"and","nativeSrc":"5009:3:41","nodeType":"YulIdentifier","src":"5009:3:41"},"nativeSrc":"5009:32:41","nodeType":"YulFunctionCall","src":"5009:32:41"}],"functionName":{"name":"mstore","nativeSrc":"4991:6:41","nodeType":"YulIdentifier","src":"4991:6:41"},"nativeSrc":"4991:51:41","nodeType":"YulFunctionCall","src":"4991:51:41"},"nativeSrc":"4991:51:41","nodeType":"YulExpressionStatement","src":"4991:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5062:9:41","nodeType":"YulIdentifier","src":"5062:9:41"},{"kind":"number","nativeSrc":"5073:2:41","nodeType":"YulLiteral","src":"5073:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5058:3:41","nodeType":"YulIdentifier","src":"5058:3:41"},"nativeSrc":"5058:18:41","nodeType":"YulFunctionCall","src":"5058:18:41"},{"name":"value1","nativeSrc":"5078:6:41","nodeType":"YulIdentifier","src":"5078:6:41"}],"functionName":{"name":"mstore","nativeSrc":"5051:6:41","nodeType":"YulIdentifier","src":"5051:6:41"},"nativeSrc":"5051:34:41","nodeType":"YulFunctionCall","src":"5051:34:41"},"nativeSrc":"5051:34:41","nodeType":"YulExpressionStatement","src":"5051:34:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5105:9:41","nodeType":"YulIdentifier","src":"5105:9:41"},{"kind":"number","nativeSrc":"5116:2:41","nodeType":"YulLiteral","src":"5116:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5101:3:41","nodeType":"YulIdentifier","src":"5101:3:41"},"nativeSrc":"5101:18:41","nodeType":"YulFunctionCall","src":"5101:18:41"},{"name":"value2","nativeSrc":"5121:6:41","nodeType":"YulIdentifier","src":"5121:6:41"}],"functionName":{"name":"mstore","nativeSrc":"5094:6:41","nodeType":"YulIdentifier","src":"5094:6:41"},"nativeSrc":"5094:34:41","nodeType":"YulFunctionCall","src":"5094:34:41"},"nativeSrc":"5094:34:41","nodeType":"YulExpressionStatement","src":"5094:34:41"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"4789:345:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4899:9:41","nodeType":"YulTypedName","src":"4899:9:41","type":""},{"name":"value2","nativeSrc":"4910:6:41","nodeType":"YulTypedName","src":"4910:6:41","type":""},{"name":"value1","nativeSrc":"4918:6:41","nodeType":"YulTypedName","src":"4918:6:41","type":""},{"name":"value0","nativeSrc":"4926:6:41","nodeType":"YulTypedName","src":"4926:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4937:4:41","nodeType":"YulTypedName","src":"4937:4:41","type":""}],"src":"4789:345:41"},{"body":{"nativeSrc":"5240:76:41","nodeType":"YulBlock","src":"5240:76:41","statements":[{"nativeSrc":"5250:26:41","nodeType":"YulAssignment","src":"5250:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"5262:9:41","nodeType":"YulIdentifier","src":"5262:9:41"},{"kind":"number","nativeSrc":"5273:2:41","nodeType":"YulLiteral","src":"5273:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5258:3:41","nodeType":"YulIdentifier","src":"5258:3:41"},"nativeSrc":"5258:18:41","nodeType":"YulFunctionCall","src":"5258:18:41"},"variableNames":[{"name":"tail","nativeSrc":"5250:4:41","nodeType":"YulIdentifier","src":"5250:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5292:9:41","nodeType":"YulIdentifier","src":"5292:9:41"},{"name":"value0","nativeSrc":"5303:6:41","nodeType":"YulIdentifier","src":"5303:6:41"}],"functionName":{"name":"mstore","nativeSrc":"5285:6:41","nodeType":"YulIdentifier","src":"5285:6:41"},"nativeSrc":"5285:25:41","nodeType":"YulFunctionCall","src":"5285:25:41"},"nativeSrc":"5285:25:41","nodeType":"YulExpressionStatement","src":"5285:25:41"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"5139:177:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5209:9:41","nodeType":"YulTypedName","src":"5209:9:41","type":""},{"name":"value0","nativeSrc":"5220:6:41","nodeType":"YulTypedName","src":"5220:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5231:4:41","nodeType":"YulTypedName","src":"5231:4:41","type":""}],"src":"5139:177:41"}]},"contents":"{\n    { }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let length := mload(offset)\n        if gt(length, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(length, 0x1f), not(31)), 63), not(31)))\n        if or(gt(newFreePtr, sub(shl(64, 1), 1)), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, length)\n        if gt(add(add(offset, length), 0x20), end) { revert(0, 0) }\n        mcopy(add(memPtr, 0x20), add(offset, 0x20), length)\n        mstore(add(add(memPtr, length), 0x20), 0)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint8t_address_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, sub(shl(64, 1), 1)) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, sub(shl(64, 1), 1)) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        value2 := mload(add(headStart, 64))\n        let value := mload(add(headStart, 96))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value3 := value\n        let value_1 := 0\n        value_1 := mload(add(headStart, 128))\n        if iszero(eq(value_1, and(value_1, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value4 := value_1\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function array_dataslot_string_storage(ptr) -> data\n    {\n        mstore(0, ptr)\n        data := keccak256(0, 0x20)\n    }\n    function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n    {\n        if gt(len, 31)\n        {\n            mstore(0, array)\n            let data := keccak256(0, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _1 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _1) { start := add(start, 1) }\n            { sstore(start, 0) }\n        }\n    }\n    function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used\n    {\n        used := or(and(data, not(shr(shl(3, len), not(0)))), shl(1, len))\n    }\n    function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src)\n    {\n        let newLen := mload(src)\n        if gt(newLen, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), newLen)\n        let srcOffset := 0\n        srcOffset := 0x20\n        switch gt(newLen, 31)\n        case 1 {\n            let loopEnd := and(newLen, not(31))\n            let dstPtr := array_dataslot_string_storage(slot)\n            let i := 0\n            for { } lt(i, loopEnd) { i := add(i, 0x20) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, 0x20)\n            }\n            if lt(loopEnd, newLen)\n            {\n                let lastValue := mload(add(src, srcOffset))\n                sstore(dstPtr, and(lastValue, not(shr(and(shl(3, newLen), 248), not(0)))))\n            }\n            sstore(slot, add(shl(1, newLen), 1))\n        }\n        default {\n            let value := 0\n            if newLen\n            {\n                value := mload(add(src, srcOffset))\n            }\n            sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n        }\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n}","id":41,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60c060405234801561000f575f5ffd5b50604051610d6c380380610d6c83398101604081905261002e91610274565b808585600361003d838261039d565b50600461004a828261039d565b5050506001600160a01b031660805260ff821660a05261006a3384610074565b505050505061047c565b6001600160a01b0382166100a25760405163ec442f0560e01b81525f60048201526024015b60405180910390fd5b6100ad5f83836100b1565b5050565b6001600160a01b0383166100db578060025f8282546100d09190610457565b9091555061014b9050565b6001600160a01b0383165f908152602081905260409020548181101561012d5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610099565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661016757600280548290039055610185565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516101ca91815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126101fa575f5ffd5b81516001600160401b03811115610213576102136101d7565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610241576102416101d7565b604052818152838201602001851015610258575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f5f5f5f5f60a08688031215610288575f5ffd5b85516001600160401b0381111561029d575f5ffd5b6102a9888289016101eb565b602088015190965090506001600160401b038111156102c6575f5ffd5b6102d2888289016101eb565b94505060408601519250606086015160ff811681146102ef575f5ffd5b60808701519092506001600160a01b038116811461030b575f5ffd5b809150509295509295909350565b600181811c9082168061032d57607f821691505b60208210810361034b57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561039857805f5260205f20601f840160051c810160208510156103765750805b601f840160051c820191505b81811015610395575f8155600101610382565b50505b505050565b81516001600160401b038111156103b6576103b66101d7565b6103ca816103c48454610319565b84610351565b6020601f8211600181146103fc575f83156103e55750848201515b5f19600385901b1c1916600184901b178455610395565b5f84815260208120601f198516915b8281101561042b578785015182556020948501946001909201910161040b565b508482101561044857868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561047657634e487b7160e01b5f52601160045260245ffd5b92915050565b60805160a0516108c16104ab5f395f61011701525f8181610151015281816101b6015261044601526108c15ff3fe608060405234801561000f575f5ffd5b50600436106100a6575f3560e01c8063572b6c051161006e578063572b6c051461014157806370a08231146101815780637da0a877146101a957806395d89b41146101e0578063a9059cbb146101e8578063dd62ed3e146101fb575f5ffd5b806306fdde03146100aa578063095ea7b3146100c857806318160ddd146100eb57806323b872dd146100fd578063313ce56714610110575b5f5ffd5b6100b2610233565b6040516100bf91906106a2565b60405180910390f35b6100db6100d63660046106f2565b6102c3565b60405190151581526020016100bf565b6002545b6040519081526020016100bf565b6100db61010b36600461071a565b6102e6565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016100bf565b6100db61014f366004610754565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b6100ef61018f366004610754565b6001600160a01b03165f9081526020819052604090205490565b6040516001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681526020016100bf565b6100b2610313565b6100db6101f63660046106f2565b610322565b6100ef610209366004610774565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b606060038054610242906107a5565b80601f016020809104026020016040519081016040528092919081815260200182805461026e906107a5565b80156102b95780601f10610290576101008083540402835291602001916102b9565b820191905f5260205f20905b81548152906001019060200180831161029c57829003601f168201915b5050505050905090565b5f5f6102cd610339565b90506102da818585610347565b60019150505b92915050565b5f5f6102f0610339565b90506102fd858285610359565b6103088585856103da565b506001949350505050565b606060048054610242906107a5565b5f5f61032c610339565b90506102da8185856103da565b5f610342610437565b905090565b61035483838360016104aa565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198110156103d457818110156103c657604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b6103d484848484035f6104aa565b50505050565b6001600160a01b03831661040357604051634b637e8f60e11b81525f60048201526024016103bd565b6001600160a01b03821661042c5760405163ec442f0560e01b81525f60048201526024016103bd565b61035483838361057c565b5f366014336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480156104735750808210155b156104a2575f3661048483856107f1565b61048f928290610804565b6104989161082b565b60601c9250505090565b339250505090565b6001600160a01b0384166104d35760405163e602df0560e01b81525f60048201526024016103bd565b6001600160a01b0383166104fc57604051634a1406b160e11b81525f60048201526024016103bd565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156103d457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161056e91815260200190565b60405180910390a350505050565b6001600160a01b0383166105a6578060025f82825461059b9190610878565b909155506106169050565b6001600160a01b0383165f90815260208190526040902054818110156105f85760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016103bd565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661063257600280548290039055610650565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161069591815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146106ed575f5ffd5b919050565b5f5f60408385031215610703575f5ffd5b61070c836106d7565b946020939093013593505050565b5f5f5f6060848603121561072c575f5ffd5b610735846106d7565b9250610743602085016106d7565b929592945050506040919091013590565b5f60208284031215610764575f5ffd5b61076d826106d7565b9392505050565b5f5f60408385031215610785575f5ffd5b61078e836106d7565b915061079c602084016106d7565b90509250929050565b600181811c908216806107b957607f821691505b6020821081036107d757634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156102e0576102e06107dd565b5f5f85851115610812575f5ffd5b8386111561081e575f5ffd5b5050820193919092039150565b80356bffffffffffffffffffffffff198116906014841015610871576bffffffffffffffffffffffff196bffffffffffffffffffffffff198560140360031b1b82161691505b5092915050565b808201808211156102e0576102e06107dd56fea26469706673582212202d6a63924519f9803257fc7190bf1d1c3b5e564671d83f842ae58ec2cc7b6a7864736f6c634300081c0033","opcodes":"PUSH1 0xC0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0xD6C CODESIZE SUB DUP1 PUSH2 0xD6C DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2E SWAP2 PUSH2 0x274 JUMP JUMPDEST DUP1 DUP6 DUP6 PUSH1 0x3 PUSH2 0x3D DUP4 DUP3 PUSH2 0x39D JUMP JUMPDEST POP PUSH1 0x4 PUSH2 0x4A DUP3 DUP3 PUSH2 0x39D JUMP JUMPDEST POP POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 MSTORE PUSH1 0xFF DUP3 AND PUSH1 0xA0 MSTORE PUSH2 0x6A CALLER DUP5 PUSH2 0x74 JUMP JUMPDEST POP POP POP POP POP PUSH2 0x47C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xA2 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xAD PUSH0 DUP4 DUP4 PUSH2 0xB1 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xDB JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xD0 SWAP2 SWAP1 PUSH2 0x457 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x14B SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x12D JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x99 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x167 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x185 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x1CA SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1FA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x213 JUMPI PUSH2 0x213 PUSH2 0x1D7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x241 JUMPI PUSH2 0x241 PUSH2 0x1D7 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP4 DUP3 ADD PUSH1 0x20 ADD DUP6 LT ISZERO PUSH2 0x258 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP6 ADD PUSH1 0x20 DUP4 ADD MCOPY PUSH0 SWAP2 DUP2 ADD PUSH1 0x20 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x288 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x29D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2A9 DUP9 DUP3 DUP10 ADD PUSH2 0x1EB JUMP JUMPDEST PUSH1 0x20 DUP9 ADD MLOAD SWAP1 SWAP7 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2C6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2D2 DUP9 DUP3 DUP10 ADD PUSH2 0x1EB JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 DUP7 ADD MLOAD SWAP3 POP PUSH1 0x60 DUP7 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x2EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x80 DUP8 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x30B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x32D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x34B JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x398 JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x376 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x395 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x382 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3B6 JUMPI PUSH2 0x3B6 PUSH2 0x1D7 JUMP JUMPDEST PUSH2 0x3CA DUP2 PUSH2 0x3C4 DUP5 SLOAD PUSH2 0x319 JUMP JUMPDEST DUP5 PUSH2 0x351 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x3FC JUMPI PUSH0 DUP4 ISZERO PUSH2 0x3E5 JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x395 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x42B JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x40B JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x448 JUMPI DUP7 DUP5 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x476 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH2 0x8C1 PUSH2 0x4AB PUSH0 CODECOPY PUSH0 PUSH2 0x117 ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x151 ADD MSTORE DUP2 DUP2 PUSH2 0x1B6 ADD MSTORE PUSH2 0x446 ADD MSTORE PUSH2 0x8C1 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA6 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x572B6C05 GT PUSH2 0x6E JUMPI DUP1 PUSH4 0x572B6C05 EQ PUSH2 0x141 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x181 JUMPI DUP1 PUSH4 0x7DA0A877 EQ PUSH2 0x1A9 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1E0 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1E8 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x1FB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAA JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xC8 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xEB JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0xFD JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x110 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xB2 PUSH2 0x233 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBF SWAP2 SWAP1 PUSH2 0x6A2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDB PUSH2 0xD6 CALLDATASIZE PUSH1 0x4 PUSH2 0x6F2 JUMP JUMPDEST PUSH2 0x2C3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH2 0xDB PUSH2 0x10B CALLDATASIZE PUSH1 0x4 PUSH2 0x71A JUMP JUMPDEST PUSH2 0x2E6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH2 0xDB PUSH2 0x14F CALLDATASIZE PUSH1 0x4 PUSH2 0x754 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 AND EQ SWAP1 JUMP JUMPDEST PUSH2 0xEF PUSH2 0x18F CALLDATASIZE PUSH1 0x4 PUSH2 0x754 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH2 0xB2 PUSH2 0x313 JUMP JUMPDEST PUSH2 0xDB PUSH2 0x1F6 CALLDATASIZE PUSH1 0x4 PUSH2 0x6F2 JUMP JUMPDEST PUSH2 0x322 JUMP JUMPDEST PUSH2 0xEF PUSH2 0x209 CALLDATASIZE PUSH1 0x4 PUSH2 0x774 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x242 SWAP1 PUSH2 0x7A5 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x26E SWAP1 PUSH2 0x7A5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2B9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x290 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2B9 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x29C JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2CD PUSH2 0x339 JUMP JUMPDEST SWAP1 POP PUSH2 0x2DA DUP2 DUP6 DUP6 PUSH2 0x347 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2F0 PUSH2 0x339 JUMP JUMPDEST SWAP1 POP PUSH2 0x2FD DUP6 DUP3 DUP6 PUSH2 0x359 JUMP JUMPDEST PUSH2 0x308 DUP6 DUP6 DUP6 PUSH2 0x3DA JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x242 SWAP1 PUSH2 0x7A5 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x32C PUSH2 0x339 JUMP JUMPDEST SWAP1 POP PUSH2 0x2DA DUP2 DUP6 DUP6 PUSH2 0x3DA JUMP JUMPDEST PUSH0 PUSH2 0x342 PUSH2 0x437 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x354 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x4AA JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH0 NOT DUP2 LT ISZERO PUSH2 0x3D4 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x3C6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3D4 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x4AA JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x403 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x42C JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3BD JUMP JUMPDEST PUSH2 0x354 DUP4 DUP4 DUP4 PUSH2 0x57C JUMP JUMPDEST PUSH0 CALLDATASIZE PUSH1 0x14 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0x473 JUMPI POP DUP1 DUP3 LT ISZERO JUMPDEST ISZERO PUSH2 0x4A2 JUMPI PUSH0 CALLDATASIZE PUSH2 0x484 DUP4 DUP6 PUSH2 0x7F1 JUMP JUMPDEST PUSH2 0x48F SWAP3 DUP3 SWAP1 PUSH2 0x804 JUMP JUMPDEST PUSH2 0x498 SWAP2 PUSH2 0x82B JUMP JUMPDEST PUSH1 0x60 SHR SWAP3 POP POP POP SWAP1 JUMP JUMPDEST CALLER SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x4D3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x4FC JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0x3D4 JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x56E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x5A6 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x59B SWAP2 SWAP1 PUSH2 0x878 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x616 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x5F8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x632 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x650 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x695 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x6ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x703 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x70C DUP4 PUSH2 0x6D7 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x72C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x735 DUP5 PUSH2 0x6D7 JUMP JUMPDEST SWAP3 POP PUSH2 0x743 PUSH1 0x20 DUP6 ADD PUSH2 0x6D7 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x764 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x76D DUP3 PUSH2 0x6D7 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x785 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x78E DUP4 PUSH2 0x6D7 JUMP JUMPDEST SWAP2 POP PUSH2 0x79C PUSH1 0x20 DUP5 ADD PUSH2 0x6D7 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x7B9 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x7D7 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x2E0 JUMPI PUSH2 0x2E0 PUSH2 0x7DD JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x812 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x81E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP2 AND SWAP1 PUSH1 0x14 DUP5 LT ISZERO PUSH2 0x871 JUMPI PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP6 PUSH1 0x14 SUB PUSH1 0x3 SHL SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x2E0 JUMPI PUSH2 0x2E0 PUSH2 0x7DD JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2D PUSH11 0x63924519F9803257FC7190 0xBF SAR SHR EXTCODESIZE MCOPY JUMP CHAINID PUSH18 0xD83F842AE58EC2CC7B6A7864736F6C634300 ADDMOD SHR STOP CALLER ","sourceMap":"282:993:39:-:0;;;373:271;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;556:16;525:5;532:7;1667:5:16;:13;525:5:39;1667::16;:13;:::i;:::-;-1:-1:-1;1690:7:16;:17;1700:7;1690;:17;:::i;:::-;-1:-1:-1;;;;;;;;1500:37:15;;;580:21:39::2;::::0;::::2;;::::0;607:32:::2;613:10;625:13:::0;607:5:::2;:32::i;:::-;373:271:::0;;;;;282:993;;7458:208:16;-1:-1:-1;;;;;7528:21:16;;7524:91;;7572:32;;-1:-1:-1;;;7572:32:16;;7601:1;7572:32;;;4500:51:41;4473:18;;7572:32:16;;;;;;;;7524:91;7624:35;7640:1;7644:7;7653:5;7624:7;:35::i;:::-;7458:208;;:::o;6008:1107::-;-1:-1:-1;;;;;6097:18:16;;6093:540;;6249:5;6233:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6093:540:16;;-1:-1:-1;6093:540:16;;-1:-1:-1;;;;;6307:15:16;;6285:19;6307:15;;;;;;;;;;;6340:19;;;6336:115;;;6386:50;;-1:-1:-1;;;6386:50:16;;-1:-1:-1;;;;;5009:32:41;;6386:50:16;;;4991:51:41;5058:18;;;5051:34;;;5101:18;;;5094:34;;;4964:18;;6386:50:16;4789:345:41;6336:115:16;-1:-1:-1;;;;;6571:15:16;;:9;:15;;;;;;;;;;6589:19;;;;6571:37;;6093:540;-1:-1:-1;;;;;6647:16:16;;6643:425;;6810:12;:21;;;;;;;6643:425;;;-1:-1:-1;;;;;7021:13:16;;:9;:13;;;;;;;;;;:22;;;;;;6643:425;7098:2;-1:-1:-1;;;;;7083:25:16;7092:4;-1:-1:-1;;;;;7083:25:16;;7102:5;7083:25;;;;5285::41;;5273:2;5258:18;;5139:177;7083:25:16;;;;;;;;6008:1107;;;:::o;14:127:41:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:723;200:5;253:3;246:4;238:6;234:17;230:27;220:55;;271:1;268;261:12;220:55;298:13;;-1:-1:-1;;;;;323:30:41;;320:56;;;356:18;;:::i;:::-;405:2;399:9;497:2;459:17;;-1:-1:-1;;455:31:41;;;488:2;451:40;447:54;435:67;;-1:-1:-1;;;;;517:34:41;;553:22;;;514:62;511:88;;;579:18;;:::i;:::-;615:2;608:22;639;;;680:19;;;701:4;676:30;673:39;-1:-1:-1;670:59:41;;;725:1;722;715:12;670:59;782:6;775:4;767:6;763:17;756:4;748:6;744:17;738:51;837:1;809:19;;;830:4;805:30;798:41;;;;813:6;146:723;-1:-1:-1;;;146:723:41:o;874:966::-;998:6;1006;1014;1022;1030;1083:3;1071:9;1062:7;1058:23;1054:33;1051:53;;;1100:1;1097;1090:12;1051:53;1127:16;;-1:-1:-1;;;;;1155:30:41;;1152:50;;;1198:1;1195;1188:12;1152:50;1221:61;1274:7;1265:6;1254:9;1250:22;1221:61;:::i;:::-;1328:2;1313:18;;1307:25;1211:71;;-1:-1:-1;1307:25:41;-1:-1:-1;;;;;;1344:32:41;;1341:52;;;1389:1;1386;1379:12;1341:52;1412:63;1467:7;1456:8;1445:9;1441:24;1412:63;:::i;:::-;1402:73;;;1515:2;1504:9;1500:18;1494:25;1484:35;;1562:2;1551:9;1547:18;1541:25;1606:4;1599:5;1595:16;1588:5;1585:27;1575:55;;1626:1;1623;1616:12;1575:55;1720:3;1705:19;;1699:26;1649:5;;-1:-1:-1;;;;;;1756:33:41;;1744:46;;1734:74;;1804:1;1801;1794:12;1734:74;1827:7;1817:17;;;874:966;;;;;;;;:::o;1845:380::-;1924:1;1920:12;;;;1967;;;1988:61;;2042:4;2034:6;2030:17;2020:27;;1988:61;2095:2;2087:6;2084:14;2064:18;2061:38;2058:161;;2141:10;2136:3;2132:20;2129:1;2122:31;2176:4;2173:1;2166:15;2204:4;2201:1;2194:15;2058:161;;1845:380;;;:::o;2356:518::-;2458:2;2453:3;2450:11;2447:421;;;2494:5;2491:1;2484:16;2538:4;2535:1;2525:18;2608:2;2596:10;2592:19;2589:1;2585:27;2579:4;2575:38;2644:4;2632:10;2629:20;2626:47;;;-1:-1:-1;2667:4:41;2626:47;2722:2;2717:3;2713:12;2710:1;2706:20;2700:4;2696:31;2686:41;;2777:81;2795:2;2788:5;2785:13;2777:81;;;2854:1;2840:16;;2821:1;2810:13;2777:81;;;2781:3;;2447:421;2356:518;;;:::o;3050:1299::-;3170:10;;-1:-1:-1;;;;;3192:30:41;;3189:56;;;3225:18;;:::i;:::-;3254:97;3344:6;3304:38;3336:4;3330:11;3304:38;:::i;:::-;3298:4;3254:97;:::i;:::-;3400:4;3431:2;3420:14;;3448:1;3443:649;;;;4136:1;4153:6;4150:89;;;-1:-1:-1;4205:19:41;;;4199:26;4150:89;-1:-1:-1;;3007:1:41;3003:11;;;2999:24;2995:29;2985:40;3031:1;3027:11;;;2982:57;4252:81;;3413:930;;3443:649;2303:1;2296:14;;;2340:4;2327:18;;-1:-1:-1;;3479:20:41;;;3597:222;3611:7;3608:1;3605:14;3597:222;;;3693:19;;;3687:26;3672:42;;3800:4;3785:20;;;;3753:1;3741:14;;;;3627:12;3597:222;;;3601:3;3847:6;3838:7;3835:19;3832:201;;;3908:19;;;3902:26;-1:-1:-1;;3991:1:41;3987:14;;;4003:3;3983:24;3979:37;3975:42;3960:58;3945:74;;3832:201;-1:-1:-1;;;;4079:1:41;4063:14;;;4059:22;4046:36;;-1:-1:-1;3050:1299:41:o;4562:222::-;4627:9;;;4648:10;;;4645:133;;;4700:10;4695:3;4691:20;4688:1;4681:31;4735:4;4732:1;4725:15;4763:4;4760:1;4753:15;4645:133;4562:222;;;;:::o;5139:177::-;282:993:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_approve_2595":{"entryPoint":839,"id":2595,"parameterSlots":3,"returnSlots":0},"@_approve_2655":{"entryPoint":1194,"id":2655,"parameterSlots":4,"returnSlots":0},"@_contextSuffixLength_12169":{"entryPoint":null,"id":12169,"parameterSlots":0,"returnSlots":1},"@_contextSuffixLength_2188":{"entryPoint":null,"id":2188,"parameterSlots":0,"returnSlots":1},"@_msgSender_12183":{"entryPoint":825,"id":12183,"parameterSlots":0,"returnSlots":1},"@_msgSender_2137":{"entryPoint":1079,"id":2137,"parameterSlots":0,"returnSlots":1},"@_msgSender_3080":{"entryPoint":null,"id":3080,"parameterSlots":0,"returnSlots":1},"@_spendAllowance_2703":{"entryPoint":857,"id":2703,"parameterSlots":3,"returnSlots":0},"@_transfer_2434":{"entryPoint":986,"id":2434,"parameterSlots":3,"returnSlots":0},"@_update_2511":{"entryPoint":1404,"id":2511,"parameterSlots":3,"returnSlots":0},"@allowance_2331":{"entryPoint":null,"id":2331,"parameterSlots":2,"returnSlots":1},"@approve_2355":{"entryPoint":707,"id":2355,"parameterSlots":2,"returnSlots":1},"@balanceOf_2290":{"entryPoint":null,"id":2290,"parameterSlots":1,"returnSlots":1},"@decimals_12155":{"entryPoint":null,"id":12155,"parameterSlots":0,"returnSlots":1},"@isTrustedForwarder_2090":{"entryPoint":null,"id":2090,"parameterSlots":1,"returnSlots":1},"@name_2250":{"entryPoint":563,"id":2250,"parameterSlots":0,"returnSlots":1},"@symbol_2259":{"entryPoint":787,"id":2259,"parameterSlots":0,"returnSlots":1},"@totalSupply_2277":{"entryPoint":null,"id":2277,"parameterSlots":0,"returnSlots":1},"@transferFrom_2387":{"entryPoint":742,"id":2387,"parameterSlots":3,"returnSlots":1},"@transfer_2314":{"entryPoint":802,"id":2314,"parameterSlots":2,"returnSlots":1},"@trustedForwarder_2076":{"entryPoint":null,"id":2076,"parameterSlots":0,"returnSlots":1},"abi_decode_address":{"entryPoint":1751,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":1876,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":1908,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":1818,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":1778,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":1698,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":2052,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_uint256":{"entryPoint":2168,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":2033,"id":null,"parameterSlots":2,"returnSlots":1},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20":{"entryPoint":2091,"id":null,"parameterSlots":2,"returnSlots":1},"extract_byte_array_length":{"entryPoint":1957,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":2013,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:4368:41","nodeType":"YulBlock","src":"0:4368:41","statements":[{"nativeSrc":"6:3:41","nodeType":"YulBlock","src":"6:3:41","statements":[]},{"body":{"nativeSrc":"135:297:41","nodeType":"YulBlock","src":"135:297:41","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"152:9:41","nodeType":"YulIdentifier","src":"152:9:41"},{"kind":"number","nativeSrc":"163:2:41","nodeType":"YulLiteral","src":"163:2:41","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"145:6:41","nodeType":"YulIdentifier","src":"145:6:41"},"nativeSrc":"145:21:41","nodeType":"YulFunctionCall","src":"145:21:41"},"nativeSrc":"145:21:41","nodeType":"YulExpressionStatement","src":"145:21:41"},{"nativeSrc":"175:27:41","nodeType":"YulVariableDeclaration","src":"175:27:41","value":{"arguments":[{"name":"value0","nativeSrc":"195:6:41","nodeType":"YulIdentifier","src":"195:6:41"}],"functionName":{"name":"mload","nativeSrc":"189:5:41","nodeType":"YulIdentifier","src":"189:5:41"},"nativeSrc":"189:13:41","nodeType":"YulFunctionCall","src":"189:13:41"},"variables":[{"name":"length","nativeSrc":"179:6:41","nodeType":"YulTypedName","src":"179:6:41","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"222:9:41","nodeType":"YulIdentifier","src":"222:9:41"},{"kind":"number","nativeSrc":"233:2:41","nodeType":"YulLiteral","src":"233:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"218:3:41","nodeType":"YulIdentifier","src":"218:3:41"},"nativeSrc":"218:18:41","nodeType":"YulFunctionCall","src":"218:18:41"},{"name":"length","nativeSrc":"238:6:41","nodeType":"YulIdentifier","src":"238:6:41"}],"functionName":{"name":"mstore","nativeSrc":"211:6:41","nodeType":"YulIdentifier","src":"211:6:41"},"nativeSrc":"211:34:41","nodeType":"YulFunctionCall","src":"211:34:41"},"nativeSrc":"211:34:41","nodeType":"YulExpressionStatement","src":"211:34:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"264:9:41","nodeType":"YulIdentifier","src":"264:9:41"},{"kind":"number","nativeSrc":"275:2:41","nodeType":"YulLiteral","src":"275:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"260:3:41","nodeType":"YulIdentifier","src":"260:3:41"},"nativeSrc":"260:18:41","nodeType":"YulFunctionCall","src":"260:18:41"},{"arguments":[{"name":"value0","nativeSrc":"284:6:41","nodeType":"YulIdentifier","src":"284:6:41"},{"kind":"number","nativeSrc":"292:2:41","nodeType":"YulLiteral","src":"292:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"280:3:41","nodeType":"YulIdentifier","src":"280:3:41"},"nativeSrc":"280:15:41","nodeType":"YulFunctionCall","src":"280:15:41"},{"name":"length","nativeSrc":"297:6:41","nodeType":"YulIdentifier","src":"297:6:41"}],"functionName":{"name":"mcopy","nativeSrc":"254:5:41","nodeType":"YulIdentifier","src":"254:5:41"},"nativeSrc":"254:50:41","nodeType":"YulFunctionCall","src":"254:50:41"},"nativeSrc":"254:50:41","nodeType":"YulExpressionStatement","src":"254:50:41"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"328:9:41","nodeType":"YulIdentifier","src":"328:9:41"},{"name":"length","nativeSrc":"339:6:41","nodeType":"YulIdentifier","src":"339:6:41"}],"functionName":{"name":"add","nativeSrc":"324:3:41","nodeType":"YulIdentifier","src":"324:3:41"},"nativeSrc":"324:22:41","nodeType":"YulFunctionCall","src":"324:22:41"},{"kind":"number","nativeSrc":"348:2:41","nodeType":"YulLiteral","src":"348:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"320:3:41","nodeType":"YulIdentifier","src":"320:3:41"},"nativeSrc":"320:31:41","nodeType":"YulFunctionCall","src":"320:31:41"},{"kind":"number","nativeSrc":"353:1:41","nodeType":"YulLiteral","src":"353:1:41","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"313:6:41","nodeType":"YulIdentifier","src":"313:6:41"},"nativeSrc":"313:42:41","nodeType":"YulFunctionCall","src":"313:42:41"},"nativeSrc":"313:42:41","nodeType":"YulExpressionStatement","src":"313:42:41"},{"nativeSrc":"364:62:41","nodeType":"YulAssignment","src":"364:62:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"380:9:41","nodeType":"YulIdentifier","src":"380:9:41"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"399:6:41","nodeType":"YulIdentifier","src":"399:6:41"},{"kind":"number","nativeSrc":"407:2:41","nodeType":"YulLiteral","src":"407:2:41","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"395:3:41","nodeType":"YulIdentifier","src":"395:3:41"},"nativeSrc":"395:15:41","nodeType":"YulFunctionCall","src":"395:15:41"},{"arguments":[{"kind":"number","nativeSrc":"416:2:41","nodeType":"YulLiteral","src":"416:2:41","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"412:3:41","nodeType":"YulIdentifier","src":"412:3:41"},"nativeSrc":"412:7:41","nodeType":"YulFunctionCall","src":"412:7:41"}],"functionName":{"name":"and","nativeSrc":"391:3:41","nodeType":"YulIdentifier","src":"391:3:41"},"nativeSrc":"391:29:41","nodeType":"YulFunctionCall","src":"391:29:41"}],"functionName":{"name":"add","nativeSrc":"376:3:41","nodeType":"YulIdentifier","src":"376:3:41"},"nativeSrc":"376:45:41","nodeType":"YulFunctionCall","src":"376:45:41"},{"kind":"number","nativeSrc":"423:2:41","nodeType":"YulLiteral","src":"423:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"372:3:41","nodeType":"YulIdentifier","src":"372:3:41"},"nativeSrc":"372:54:41","nodeType":"YulFunctionCall","src":"372:54:41"},"variableNames":[{"name":"tail","nativeSrc":"364:4:41","nodeType":"YulIdentifier","src":"364:4:41"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"14:418:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"104:9:41","nodeType":"YulTypedName","src":"104:9:41","type":""},{"name":"value0","nativeSrc":"115:6:41","nodeType":"YulTypedName","src":"115:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"126:4:41","nodeType":"YulTypedName","src":"126:4:41","type":""}],"src":"14:418:41"},{"body":{"nativeSrc":"486:124:41","nodeType":"YulBlock","src":"486:124:41","statements":[{"nativeSrc":"496:29:41","nodeType":"YulAssignment","src":"496:29:41","value":{"arguments":[{"name":"offset","nativeSrc":"518:6:41","nodeType":"YulIdentifier","src":"518:6:41"}],"functionName":{"name":"calldataload","nativeSrc":"505:12:41","nodeType":"YulIdentifier","src":"505:12:41"},"nativeSrc":"505:20:41","nodeType":"YulFunctionCall","src":"505:20:41"},"variableNames":[{"name":"value","nativeSrc":"496:5:41","nodeType":"YulIdentifier","src":"496:5:41"}]},{"body":{"nativeSrc":"588:16:41","nodeType":"YulBlock","src":"588:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"597:1:41","nodeType":"YulLiteral","src":"597:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"600:1:41","nodeType":"YulLiteral","src":"600:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"590:6:41","nodeType":"YulIdentifier","src":"590:6:41"},"nativeSrc":"590:12:41","nodeType":"YulFunctionCall","src":"590:12:41"},"nativeSrc":"590:12:41","nodeType":"YulExpressionStatement","src":"590:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"547:5:41","nodeType":"YulIdentifier","src":"547:5:41"},{"arguments":[{"name":"value","nativeSrc":"558:5:41","nodeType":"YulIdentifier","src":"558:5:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"573:3:41","nodeType":"YulLiteral","src":"573:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"578:1:41","nodeType":"YulLiteral","src":"578:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"569:3:41","nodeType":"YulIdentifier","src":"569:3:41"},"nativeSrc":"569:11:41","nodeType":"YulFunctionCall","src":"569:11:41"},{"kind":"number","nativeSrc":"582:1:41","nodeType":"YulLiteral","src":"582:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"565:3:41","nodeType":"YulIdentifier","src":"565:3:41"},"nativeSrc":"565:19:41","nodeType":"YulFunctionCall","src":"565:19:41"}],"functionName":{"name":"and","nativeSrc":"554:3:41","nodeType":"YulIdentifier","src":"554:3:41"},"nativeSrc":"554:31:41","nodeType":"YulFunctionCall","src":"554:31:41"}],"functionName":{"name":"eq","nativeSrc":"544:2:41","nodeType":"YulIdentifier","src":"544:2:41"},"nativeSrc":"544:42:41","nodeType":"YulFunctionCall","src":"544:42:41"}],"functionName":{"name":"iszero","nativeSrc":"537:6:41","nodeType":"YulIdentifier","src":"537:6:41"},"nativeSrc":"537:50:41","nodeType":"YulFunctionCall","src":"537:50:41"},"nativeSrc":"534:70:41","nodeType":"YulIf","src":"534:70:41"}]},"name":"abi_decode_address","nativeSrc":"437:173:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"465:6:41","nodeType":"YulTypedName","src":"465:6:41","type":""}],"returnVariables":[{"name":"value","nativeSrc":"476:5:41","nodeType":"YulTypedName","src":"476:5:41","type":""}],"src":"437:173:41"},{"body":{"nativeSrc":"702:213:41","nodeType":"YulBlock","src":"702:213:41","statements":[{"body":{"nativeSrc":"748:16:41","nodeType":"YulBlock","src":"748:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"757:1:41","nodeType":"YulLiteral","src":"757:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"760:1:41","nodeType":"YulLiteral","src":"760:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"750:6:41","nodeType":"YulIdentifier","src":"750:6:41"},"nativeSrc":"750:12:41","nodeType":"YulFunctionCall","src":"750:12:41"},"nativeSrc":"750:12:41","nodeType":"YulExpressionStatement","src":"750:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"723:7:41","nodeType":"YulIdentifier","src":"723:7:41"},{"name":"headStart","nativeSrc":"732:9:41","nodeType":"YulIdentifier","src":"732:9:41"}],"functionName":{"name":"sub","nativeSrc":"719:3:41","nodeType":"YulIdentifier","src":"719:3:41"},"nativeSrc":"719:23:41","nodeType":"YulFunctionCall","src":"719:23:41"},{"kind":"number","nativeSrc":"744:2:41","nodeType":"YulLiteral","src":"744:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"715:3:41","nodeType":"YulIdentifier","src":"715:3:41"},"nativeSrc":"715:32:41","nodeType":"YulFunctionCall","src":"715:32:41"},"nativeSrc":"712:52:41","nodeType":"YulIf","src":"712:52:41"},{"nativeSrc":"773:39:41","nodeType":"YulAssignment","src":"773:39:41","value":{"arguments":[{"name":"headStart","nativeSrc":"802:9:41","nodeType":"YulIdentifier","src":"802:9:41"}],"functionName":{"name":"abi_decode_address","nativeSrc":"783:18:41","nodeType":"YulIdentifier","src":"783:18:41"},"nativeSrc":"783:29:41","nodeType":"YulFunctionCall","src":"783:29:41"},"variableNames":[{"name":"value0","nativeSrc":"773:6:41","nodeType":"YulIdentifier","src":"773:6:41"}]},{"nativeSrc":"821:14:41","nodeType":"YulVariableDeclaration","src":"821:14:41","value":{"kind":"number","nativeSrc":"834:1:41","nodeType":"YulLiteral","src":"834:1:41","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"825:5:41","nodeType":"YulTypedName","src":"825:5:41","type":""}]},{"nativeSrc":"844:41:41","nodeType":"YulAssignment","src":"844:41:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"870:9:41","nodeType":"YulIdentifier","src":"870:9:41"},{"kind":"number","nativeSrc":"881:2:41","nodeType":"YulLiteral","src":"881:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"866:3:41","nodeType":"YulIdentifier","src":"866:3:41"},"nativeSrc":"866:18:41","nodeType":"YulFunctionCall","src":"866:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"853:12:41","nodeType":"YulIdentifier","src":"853:12:41"},"nativeSrc":"853:32:41","nodeType":"YulFunctionCall","src":"853:32:41"},"variableNames":[{"name":"value","nativeSrc":"844:5:41","nodeType":"YulIdentifier","src":"844:5:41"}]},{"nativeSrc":"894:15:41","nodeType":"YulAssignment","src":"894:15:41","value":{"name":"value","nativeSrc":"904:5:41","nodeType":"YulIdentifier","src":"904:5:41"},"variableNames":[{"name":"value1","nativeSrc":"894:6:41","nodeType":"YulIdentifier","src":"894:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"615:300:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"660:9:41","nodeType":"YulTypedName","src":"660:9:41","type":""},{"name":"dataEnd","nativeSrc":"671:7:41","nodeType":"YulTypedName","src":"671:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"683:6:41","nodeType":"YulTypedName","src":"683:6:41","type":""},{"name":"value1","nativeSrc":"691:6:41","nodeType":"YulTypedName","src":"691:6:41","type":""}],"src":"615:300:41"},{"body":{"nativeSrc":"1015:92:41","nodeType":"YulBlock","src":"1015:92:41","statements":[{"nativeSrc":"1025:26:41","nodeType":"YulAssignment","src":"1025:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1037:9:41","nodeType":"YulIdentifier","src":"1037:9:41"},{"kind":"number","nativeSrc":"1048:2:41","nodeType":"YulLiteral","src":"1048:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1033:3:41","nodeType":"YulIdentifier","src":"1033:3:41"},"nativeSrc":"1033:18:41","nodeType":"YulFunctionCall","src":"1033:18:41"},"variableNames":[{"name":"tail","nativeSrc":"1025:4:41","nodeType":"YulIdentifier","src":"1025:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1067:9:41","nodeType":"YulIdentifier","src":"1067:9:41"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"1092:6:41","nodeType":"YulIdentifier","src":"1092:6:41"}],"functionName":{"name":"iszero","nativeSrc":"1085:6:41","nodeType":"YulIdentifier","src":"1085:6:41"},"nativeSrc":"1085:14:41","nodeType":"YulFunctionCall","src":"1085:14:41"}],"functionName":{"name":"iszero","nativeSrc":"1078:6:41","nodeType":"YulIdentifier","src":"1078:6:41"},"nativeSrc":"1078:22:41","nodeType":"YulFunctionCall","src":"1078:22:41"}],"functionName":{"name":"mstore","nativeSrc":"1060:6:41","nodeType":"YulIdentifier","src":"1060:6:41"},"nativeSrc":"1060:41:41","nodeType":"YulFunctionCall","src":"1060:41:41"},"nativeSrc":"1060:41:41","nodeType":"YulExpressionStatement","src":"1060:41:41"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"920:187:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"984:9:41","nodeType":"YulTypedName","src":"984:9:41","type":""},{"name":"value0","nativeSrc":"995:6:41","nodeType":"YulTypedName","src":"995:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1006:4:41","nodeType":"YulTypedName","src":"1006:4:41","type":""}],"src":"920:187:41"},{"body":{"nativeSrc":"1213:76:41","nodeType":"YulBlock","src":"1213:76:41","statements":[{"nativeSrc":"1223:26:41","nodeType":"YulAssignment","src":"1223:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1235:9:41","nodeType":"YulIdentifier","src":"1235:9:41"},{"kind":"number","nativeSrc":"1246:2:41","nodeType":"YulLiteral","src":"1246:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1231:3:41","nodeType":"YulIdentifier","src":"1231:3:41"},"nativeSrc":"1231:18:41","nodeType":"YulFunctionCall","src":"1231:18:41"},"variableNames":[{"name":"tail","nativeSrc":"1223:4:41","nodeType":"YulIdentifier","src":"1223:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1265:9:41","nodeType":"YulIdentifier","src":"1265:9:41"},{"name":"value0","nativeSrc":"1276:6:41","nodeType":"YulIdentifier","src":"1276:6:41"}],"functionName":{"name":"mstore","nativeSrc":"1258:6:41","nodeType":"YulIdentifier","src":"1258:6:41"},"nativeSrc":"1258:25:41","nodeType":"YulFunctionCall","src":"1258:25:41"},"nativeSrc":"1258:25:41","nodeType":"YulExpressionStatement","src":"1258:25:41"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"1112:177:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1182:9:41","nodeType":"YulTypedName","src":"1182:9:41","type":""},{"name":"value0","nativeSrc":"1193:6:41","nodeType":"YulTypedName","src":"1193:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1204:4:41","nodeType":"YulTypedName","src":"1204:4:41","type":""}],"src":"1112:177:41"},{"body":{"nativeSrc":"1398:270:41","nodeType":"YulBlock","src":"1398:270:41","statements":[{"body":{"nativeSrc":"1444:16:41","nodeType":"YulBlock","src":"1444:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1453:1:41","nodeType":"YulLiteral","src":"1453:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1456:1:41","nodeType":"YulLiteral","src":"1456:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1446:6:41","nodeType":"YulIdentifier","src":"1446:6:41"},"nativeSrc":"1446:12:41","nodeType":"YulFunctionCall","src":"1446:12:41"},"nativeSrc":"1446:12:41","nodeType":"YulExpressionStatement","src":"1446:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1419:7:41","nodeType":"YulIdentifier","src":"1419:7:41"},{"name":"headStart","nativeSrc":"1428:9:41","nodeType":"YulIdentifier","src":"1428:9:41"}],"functionName":{"name":"sub","nativeSrc":"1415:3:41","nodeType":"YulIdentifier","src":"1415:3:41"},"nativeSrc":"1415:23:41","nodeType":"YulFunctionCall","src":"1415:23:41"},{"kind":"number","nativeSrc":"1440:2:41","nodeType":"YulLiteral","src":"1440:2:41","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"1411:3:41","nodeType":"YulIdentifier","src":"1411:3:41"},"nativeSrc":"1411:32:41","nodeType":"YulFunctionCall","src":"1411:32:41"},"nativeSrc":"1408:52:41","nodeType":"YulIf","src":"1408:52:41"},{"nativeSrc":"1469:39:41","nodeType":"YulAssignment","src":"1469:39:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1498:9:41","nodeType":"YulIdentifier","src":"1498:9:41"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1479:18:41","nodeType":"YulIdentifier","src":"1479:18:41"},"nativeSrc":"1479:29:41","nodeType":"YulFunctionCall","src":"1479:29:41"},"variableNames":[{"name":"value0","nativeSrc":"1469:6:41","nodeType":"YulIdentifier","src":"1469:6:41"}]},{"nativeSrc":"1517:48:41","nodeType":"YulAssignment","src":"1517:48:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1550:9:41","nodeType":"YulIdentifier","src":"1550:9:41"},{"kind":"number","nativeSrc":"1561:2:41","nodeType":"YulLiteral","src":"1561:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1546:3:41","nodeType":"YulIdentifier","src":"1546:3:41"},"nativeSrc":"1546:18:41","nodeType":"YulFunctionCall","src":"1546:18:41"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1527:18:41","nodeType":"YulIdentifier","src":"1527:18:41"},"nativeSrc":"1527:38:41","nodeType":"YulFunctionCall","src":"1527:38:41"},"variableNames":[{"name":"value1","nativeSrc":"1517:6:41","nodeType":"YulIdentifier","src":"1517:6:41"}]},{"nativeSrc":"1574:14:41","nodeType":"YulVariableDeclaration","src":"1574:14:41","value":{"kind":"number","nativeSrc":"1587:1:41","nodeType":"YulLiteral","src":"1587:1:41","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1578:5:41","nodeType":"YulTypedName","src":"1578:5:41","type":""}]},{"nativeSrc":"1597:41:41","nodeType":"YulAssignment","src":"1597:41:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1623:9:41","nodeType":"YulIdentifier","src":"1623:9:41"},{"kind":"number","nativeSrc":"1634:2:41","nodeType":"YulLiteral","src":"1634:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1619:3:41","nodeType":"YulIdentifier","src":"1619:3:41"},"nativeSrc":"1619:18:41","nodeType":"YulFunctionCall","src":"1619:18:41"}],"functionName":{"name":"calldataload","nativeSrc":"1606:12:41","nodeType":"YulIdentifier","src":"1606:12:41"},"nativeSrc":"1606:32:41","nodeType":"YulFunctionCall","src":"1606:32:41"},"variableNames":[{"name":"value","nativeSrc":"1597:5:41","nodeType":"YulIdentifier","src":"1597:5:41"}]},{"nativeSrc":"1647:15:41","nodeType":"YulAssignment","src":"1647:15:41","value":{"name":"value","nativeSrc":"1657:5:41","nodeType":"YulIdentifier","src":"1657:5:41"},"variableNames":[{"name":"value2","nativeSrc":"1647:6:41","nodeType":"YulIdentifier","src":"1647:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"1294:374:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1348:9:41","nodeType":"YulTypedName","src":"1348:9:41","type":""},{"name":"dataEnd","nativeSrc":"1359:7:41","nodeType":"YulTypedName","src":"1359:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1371:6:41","nodeType":"YulTypedName","src":"1371:6:41","type":""},{"name":"value1","nativeSrc":"1379:6:41","nodeType":"YulTypedName","src":"1379:6:41","type":""},{"name":"value2","nativeSrc":"1387:6:41","nodeType":"YulTypedName","src":"1387:6:41","type":""}],"src":"1294:374:41"},{"body":{"nativeSrc":"1770:87:41","nodeType":"YulBlock","src":"1770:87:41","statements":[{"nativeSrc":"1780:26:41","nodeType":"YulAssignment","src":"1780:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"1792:9:41","nodeType":"YulIdentifier","src":"1792:9:41"},{"kind":"number","nativeSrc":"1803:2:41","nodeType":"YulLiteral","src":"1803:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1788:3:41","nodeType":"YulIdentifier","src":"1788:3:41"},"nativeSrc":"1788:18:41","nodeType":"YulFunctionCall","src":"1788:18:41"},"variableNames":[{"name":"tail","nativeSrc":"1780:4:41","nodeType":"YulIdentifier","src":"1780:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1822:9:41","nodeType":"YulIdentifier","src":"1822:9:41"},{"arguments":[{"name":"value0","nativeSrc":"1837:6:41","nodeType":"YulIdentifier","src":"1837:6:41"},{"kind":"number","nativeSrc":"1845:4:41","nodeType":"YulLiteral","src":"1845:4:41","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"1833:3:41","nodeType":"YulIdentifier","src":"1833:3:41"},"nativeSrc":"1833:17:41","nodeType":"YulFunctionCall","src":"1833:17:41"}],"functionName":{"name":"mstore","nativeSrc":"1815:6:41","nodeType":"YulIdentifier","src":"1815:6:41"},"nativeSrc":"1815:36:41","nodeType":"YulFunctionCall","src":"1815:36:41"},"nativeSrc":"1815:36:41","nodeType":"YulExpressionStatement","src":"1815:36:41"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"1673:184:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1739:9:41","nodeType":"YulTypedName","src":"1739:9:41","type":""},{"name":"value0","nativeSrc":"1750:6:41","nodeType":"YulTypedName","src":"1750:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1761:4:41","nodeType":"YulTypedName","src":"1761:4:41","type":""}],"src":"1673:184:41"},{"body":{"nativeSrc":"1932:116:41","nodeType":"YulBlock","src":"1932:116:41","statements":[{"body":{"nativeSrc":"1978:16:41","nodeType":"YulBlock","src":"1978:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1987:1:41","nodeType":"YulLiteral","src":"1987:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"1990:1:41","nodeType":"YulLiteral","src":"1990:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1980:6:41","nodeType":"YulIdentifier","src":"1980:6:41"},"nativeSrc":"1980:12:41","nodeType":"YulFunctionCall","src":"1980:12:41"},"nativeSrc":"1980:12:41","nodeType":"YulExpressionStatement","src":"1980:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1953:7:41","nodeType":"YulIdentifier","src":"1953:7:41"},{"name":"headStart","nativeSrc":"1962:9:41","nodeType":"YulIdentifier","src":"1962:9:41"}],"functionName":{"name":"sub","nativeSrc":"1949:3:41","nodeType":"YulIdentifier","src":"1949:3:41"},"nativeSrc":"1949:23:41","nodeType":"YulFunctionCall","src":"1949:23:41"},{"kind":"number","nativeSrc":"1974:2:41","nodeType":"YulLiteral","src":"1974:2:41","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1945:3:41","nodeType":"YulIdentifier","src":"1945:3:41"},"nativeSrc":"1945:32:41","nodeType":"YulFunctionCall","src":"1945:32:41"},"nativeSrc":"1942:52:41","nodeType":"YulIf","src":"1942:52:41"},{"nativeSrc":"2003:39:41","nodeType":"YulAssignment","src":"2003:39:41","value":{"arguments":[{"name":"headStart","nativeSrc":"2032:9:41","nodeType":"YulIdentifier","src":"2032:9:41"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2013:18:41","nodeType":"YulIdentifier","src":"2013:18:41"},"nativeSrc":"2013:29:41","nodeType":"YulFunctionCall","src":"2013:29:41"},"variableNames":[{"name":"value0","nativeSrc":"2003:6:41","nodeType":"YulIdentifier","src":"2003:6:41"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"1862:186:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1898:9:41","nodeType":"YulTypedName","src":"1898:9:41","type":""},{"name":"dataEnd","nativeSrc":"1909:7:41","nodeType":"YulTypedName","src":"1909:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1921:6:41","nodeType":"YulTypedName","src":"1921:6:41","type":""}],"src":"1862:186:41"},{"body":{"nativeSrc":"2154:102:41","nodeType":"YulBlock","src":"2154:102:41","statements":[{"nativeSrc":"2164:26:41","nodeType":"YulAssignment","src":"2164:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"2176:9:41","nodeType":"YulIdentifier","src":"2176:9:41"},{"kind":"number","nativeSrc":"2187:2:41","nodeType":"YulLiteral","src":"2187:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2172:3:41","nodeType":"YulIdentifier","src":"2172:3:41"},"nativeSrc":"2172:18:41","nodeType":"YulFunctionCall","src":"2172:18:41"},"variableNames":[{"name":"tail","nativeSrc":"2164:4:41","nodeType":"YulIdentifier","src":"2164:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2206:9:41","nodeType":"YulIdentifier","src":"2206:9:41"},{"arguments":[{"name":"value0","nativeSrc":"2221:6:41","nodeType":"YulIdentifier","src":"2221:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2237:3:41","nodeType":"YulLiteral","src":"2237:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"2242:1:41","nodeType":"YulLiteral","src":"2242:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2233:3:41","nodeType":"YulIdentifier","src":"2233:3:41"},"nativeSrc":"2233:11:41","nodeType":"YulFunctionCall","src":"2233:11:41"},{"kind":"number","nativeSrc":"2246:1:41","nodeType":"YulLiteral","src":"2246:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2229:3:41","nodeType":"YulIdentifier","src":"2229:3:41"},"nativeSrc":"2229:19:41","nodeType":"YulFunctionCall","src":"2229:19:41"}],"functionName":{"name":"and","nativeSrc":"2217:3:41","nodeType":"YulIdentifier","src":"2217:3:41"},"nativeSrc":"2217:32:41","nodeType":"YulFunctionCall","src":"2217:32:41"}],"functionName":{"name":"mstore","nativeSrc":"2199:6:41","nodeType":"YulIdentifier","src":"2199:6:41"},"nativeSrc":"2199:51:41","nodeType":"YulFunctionCall","src":"2199:51:41"},"nativeSrc":"2199:51:41","nodeType":"YulExpressionStatement","src":"2199:51:41"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"2053:203:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2123:9:41","nodeType":"YulTypedName","src":"2123:9:41","type":""},{"name":"value0","nativeSrc":"2134:6:41","nodeType":"YulTypedName","src":"2134:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2145:4:41","nodeType":"YulTypedName","src":"2145:4:41","type":""}],"src":"2053:203:41"},{"body":{"nativeSrc":"2348:173:41","nodeType":"YulBlock","src":"2348:173:41","statements":[{"body":{"nativeSrc":"2394:16:41","nodeType":"YulBlock","src":"2394:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2403:1:41","nodeType":"YulLiteral","src":"2403:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2406:1:41","nodeType":"YulLiteral","src":"2406:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2396:6:41","nodeType":"YulIdentifier","src":"2396:6:41"},"nativeSrc":"2396:12:41","nodeType":"YulFunctionCall","src":"2396:12:41"},"nativeSrc":"2396:12:41","nodeType":"YulExpressionStatement","src":"2396:12:41"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2369:7:41","nodeType":"YulIdentifier","src":"2369:7:41"},{"name":"headStart","nativeSrc":"2378:9:41","nodeType":"YulIdentifier","src":"2378:9:41"}],"functionName":{"name":"sub","nativeSrc":"2365:3:41","nodeType":"YulIdentifier","src":"2365:3:41"},"nativeSrc":"2365:23:41","nodeType":"YulFunctionCall","src":"2365:23:41"},{"kind":"number","nativeSrc":"2390:2:41","nodeType":"YulLiteral","src":"2390:2:41","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2361:3:41","nodeType":"YulIdentifier","src":"2361:3:41"},"nativeSrc":"2361:32:41","nodeType":"YulFunctionCall","src":"2361:32:41"},"nativeSrc":"2358:52:41","nodeType":"YulIf","src":"2358:52:41"},{"nativeSrc":"2419:39:41","nodeType":"YulAssignment","src":"2419:39:41","value":{"arguments":[{"name":"headStart","nativeSrc":"2448:9:41","nodeType":"YulIdentifier","src":"2448:9:41"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2429:18:41","nodeType":"YulIdentifier","src":"2429:18:41"},"nativeSrc":"2429:29:41","nodeType":"YulFunctionCall","src":"2429:29:41"},"variableNames":[{"name":"value0","nativeSrc":"2419:6:41","nodeType":"YulIdentifier","src":"2419:6:41"}]},{"nativeSrc":"2467:48:41","nodeType":"YulAssignment","src":"2467:48:41","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2500:9:41","nodeType":"YulIdentifier","src":"2500:9:41"},{"kind":"number","nativeSrc":"2511:2:41","nodeType":"YulLiteral","src":"2511:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2496:3:41","nodeType":"YulIdentifier","src":"2496:3:41"},"nativeSrc":"2496:18:41","nodeType":"YulFunctionCall","src":"2496:18:41"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2477:18:41","nodeType":"YulIdentifier","src":"2477:18:41"},"nativeSrc":"2477:38:41","nodeType":"YulFunctionCall","src":"2477:38:41"},"variableNames":[{"name":"value1","nativeSrc":"2467:6:41","nodeType":"YulIdentifier","src":"2467:6:41"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"2261:260:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2306:9:41","nodeType":"YulTypedName","src":"2306:9:41","type":""},{"name":"dataEnd","nativeSrc":"2317:7:41","nodeType":"YulTypedName","src":"2317:7:41","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2329:6:41","nodeType":"YulTypedName","src":"2329:6:41","type":""},{"name":"value1","nativeSrc":"2337:6:41","nodeType":"YulTypedName","src":"2337:6:41","type":""}],"src":"2261:260:41"},{"body":{"nativeSrc":"2581:325:41","nodeType":"YulBlock","src":"2581:325:41","statements":[{"nativeSrc":"2591:22:41","nodeType":"YulAssignment","src":"2591:22:41","value":{"arguments":[{"kind":"number","nativeSrc":"2605:1:41","nodeType":"YulLiteral","src":"2605:1:41","type":"","value":"1"},{"name":"data","nativeSrc":"2608:4:41","nodeType":"YulIdentifier","src":"2608:4:41"}],"functionName":{"name":"shr","nativeSrc":"2601:3:41","nodeType":"YulIdentifier","src":"2601:3:41"},"nativeSrc":"2601:12:41","nodeType":"YulFunctionCall","src":"2601:12:41"},"variableNames":[{"name":"length","nativeSrc":"2591:6:41","nodeType":"YulIdentifier","src":"2591:6:41"}]},{"nativeSrc":"2622:38:41","nodeType":"YulVariableDeclaration","src":"2622:38:41","value":{"arguments":[{"name":"data","nativeSrc":"2652:4:41","nodeType":"YulIdentifier","src":"2652:4:41"},{"kind":"number","nativeSrc":"2658:1:41","nodeType":"YulLiteral","src":"2658:1:41","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"2648:3:41","nodeType":"YulIdentifier","src":"2648:3:41"},"nativeSrc":"2648:12:41","nodeType":"YulFunctionCall","src":"2648:12:41"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"2626:18:41","nodeType":"YulTypedName","src":"2626:18:41","type":""}]},{"body":{"nativeSrc":"2699:31:41","nodeType":"YulBlock","src":"2699:31:41","statements":[{"nativeSrc":"2701:27:41","nodeType":"YulAssignment","src":"2701:27:41","value":{"arguments":[{"name":"length","nativeSrc":"2715:6:41","nodeType":"YulIdentifier","src":"2715:6:41"},{"kind":"number","nativeSrc":"2723:4:41","nodeType":"YulLiteral","src":"2723:4:41","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"2711:3:41","nodeType":"YulIdentifier","src":"2711:3:41"},"nativeSrc":"2711:17:41","nodeType":"YulFunctionCall","src":"2711:17:41"},"variableNames":[{"name":"length","nativeSrc":"2701:6:41","nodeType":"YulIdentifier","src":"2701:6:41"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"2679:18:41","nodeType":"YulIdentifier","src":"2679:18:41"}],"functionName":{"name":"iszero","nativeSrc":"2672:6:41","nodeType":"YulIdentifier","src":"2672:6:41"},"nativeSrc":"2672:26:41","nodeType":"YulFunctionCall","src":"2672:26:41"},"nativeSrc":"2669:61:41","nodeType":"YulIf","src":"2669:61:41"},{"body":{"nativeSrc":"2789:111:41","nodeType":"YulBlock","src":"2789:111:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2810:1:41","nodeType":"YulLiteral","src":"2810:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"2817:3:41","nodeType":"YulLiteral","src":"2817:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"2822:10:41","nodeType":"YulLiteral","src":"2822:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"2813:3:41","nodeType":"YulIdentifier","src":"2813:3:41"},"nativeSrc":"2813:20:41","nodeType":"YulFunctionCall","src":"2813:20:41"}],"functionName":{"name":"mstore","nativeSrc":"2803:6:41","nodeType":"YulIdentifier","src":"2803:6:41"},"nativeSrc":"2803:31:41","nodeType":"YulFunctionCall","src":"2803:31:41"},"nativeSrc":"2803:31:41","nodeType":"YulExpressionStatement","src":"2803:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2854:1:41","nodeType":"YulLiteral","src":"2854:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"2857:4:41","nodeType":"YulLiteral","src":"2857:4:41","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"2847:6:41","nodeType":"YulIdentifier","src":"2847:6:41"},"nativeSrc":"2847:15:41","nodeType":"YulFunctionCall","src":"2847:15:41"},"nativeSrc":"2847:15:41","nodeType":"YulExpressionStatement","src":"2847:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2882:1:41","nodeType":"YulLiteral","src":"2882:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"2885:4:41","nodeType":"YulLiteral","src":"2885:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"2875:6:41","nodeType":"YulIdentifier","src":"2875:6:41"},"nativeSrc":"2875:15:41","nodeType":"YulFunctionCall","src":"2875:15:41"},"nativeSrc":"2875:15:41","nodeType":"YulExpressionStatement","src":"2875:15:41"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"2745:18:41","nodeType":"YulIdentifier","src":"2745:18:41"},{"arguments":[{"name":"length","nativeSrc":"2768:6:41","nodeType":"YulIdentifier","src":"2768:6:41"},{"kind":"number","nativeSrc":"2776:2:41","nodeType":"YulLiteral","src":"2776:2:41","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"2765:2:41","nodeType":"YulIdentifier","src":"2765:2:41"},"nativeSrc":"2765:14:41","nodeType":"YulFunctionCall","src":"2765:14:41"}],"functionName":{"name":"eq","nativeSrc":"2742:2:41","nodeType":"YulIdentifier","src":"2742:2:41"},"nativeSrc":"2742:38:41","nodeType":"YulFunctionCall","src":"2742:38:41"},"nativeSrc":"2739:161:41","nodeType":"YulIf","src":"2739:161:41"}]},"name":"extract_byte_array_length","nativeSrc":"2526:380:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"2561:4:41","nodeType":"YulTypedName","src":"2561:4:41","type":""}],"returnVariables":[{"name":"length","nativeSrc":"2570:6:41","nodeType":"YulTypedName","src":"2570:6:41","type":""}],"src":"2526:380:41"},{"body":{"nativeSrc":"3068:188:41","nodeType":"YulBlock","src":"3068:188:41","statements":[{"nativeSrc":"3078:26:41","nodeType":"YulAssignment","src":"3078:26:41","value":{"arguments":[{"name":"headStart","nativeSrc":"3090:9:41","nodeType":"YulIdentifier","src":"3090:9:41"},{"kind":"number","nativeSrc":"3101:2:41","nodeType":"YulLiteral","src":"3101:2:41","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3086:3:41","nodeType":"YulIdentifier","src":"3086:3:41"},"nativeSrc":"3086:18:41","nodeType":"YulFunctionCall","src":"3086:18:41"},"variableNames":[{"name":"tail","nativeSrc":"3078:4:41","nodeType":"YulIdentifier","src":"3078:4:41"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3120:9:41","nodeType":"YulIdentifier","src":"3120:9:41"},{"arguments":[{"name":"value0","nativeSrc":"3135:6:41","nodeType":"YulIdentifier","src":"3135:6:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3151:3:41","nodeType":"YulLiteral","src":"3151:3:41","type":"","value":"160"},{"kind":"number","nativeSrc":"3156:1:41","nodeType":"YulLiteral","src":"3156:1:41","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3147:3:41","nodeType":"YulIdentifier","src":"3147:3:41"},"nativeSrc":"3147:11:41","nodeType":"YulFunctionCall","src":"3147:11:41"},{"kind":"number","nativeSrc":"3160:1:41","nodeType":"YulLiteral","src":"3160:1:41","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3143:3:41","nodeType":"YulIdentifier","src":"3143:3:41"},"nativeSrc":"3143:19:41","nodeType":"YulFunctionCall","src":"3143:19:41"}],"functionName":{"name":"and","nativeSrc":"3131:3:41","nodeType":"YulIdentifier","src":"3131:3:41"},"nativeSrc":"3131:32:41","nodeType":"YulFunctionCall","src":"3131:32:41"}],"functionName":{"name":"mstore","nativeSrc":"3113:6:41","nodeType":"YulIdentifier","src":"3113:6:41"},"nativeSrc":"3113:51:41","nodeType":"YulFunctionCall","src":"3113:51:41"},"nativeSrc":"3113:51:41","nodeType":"YulExpressionStatement","src":"3113:51:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3184:9:41","nodeType":"YulIdentifier","src":"3184:9:41"},{"kind":"number","nativeSrc":"3195:2:41","nodeType":"YulLiteral","src":"3195:2:41","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3180:3:41","nodeType":"YulIdentifier","src":"3180:3:41"},"nativeSrc":"3180:18:41","nodeType":"YulFunctionCall","src":"3180:18:41"},{"name":"value1","nativeSrc":"3200:6:41","nodeType":"YulIdentifier","src":"3200:6:41"}],"functionName":{"name":"mstore","nativeSrc":"3173:6:41","nodeType":"YulIdentifier","src":"3173:6:41"},"nativeSrc":"3173:34:41","nodeType":"YulFunctionCall","src":"3173:34:41"},"nativeSrc":"3173:34:41","nodeType":"YulExpressionStatement","src":"3173:34:41"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3227:9:41","nodeType":"YulIdentifier","src":"3227:9:41"},{"kind":"number","nativeSrc":"3238:2:41","nodeType":"YulLiteral","src":"3238:2:41","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3223:3:41","nodeType":"YulIdentifier","src":"3223:3:41"},"nativeSrc":"3223:18:41","nodeType":"YulFunctionCall","src":"3223:18:41"},{"name":"value2","nativeSrc":"3243:6:41","nodeType":"YulIdentifier","src":"3243:6:41"}],"functionName":{"name":"mstore","nativeSrc":"3216:6:41","nodeType":"YulIdentifier","src":"3216:6:41"},"nativeSrc":"3216:34:41","nodeType":"YulFunctionCall","src":"3216:34:41"},"nativeSrc":"3216:34:41","nodeType":"YulExpressionStatement","src":"3216:34:41"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"2911:345:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3021:9:41","nodeType":"YulTypedName","src":"3021:9:41","type":""},{"name":"value2","nativeSrc":"3032:6:41","nodeType":"YulTypedName","src":"3032:6:41","type":""},{"name":"value1","nativeSrc":"3040:6:41","nodeType":"YulTypedName","src":"3040:6:41","type":""},{"name":"value0","nativeSrc":"3048:6:41","nodeType":"YulTypedName","src":"3048:6:41","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3059:4:41","nodeType":"YulTypedName","src":"3059:4:41","type":""}],"src":"2911:345:41"},{"body":{"nativeSrc":"3293:95:41","nodeType":"YulBlock","src":"3293:95:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3310:1:41","nodeType":"YulLiteral","src":"3310:1:41","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"3317:3:41","nodeType":"YulLiteral","src":"3317:3:41","type":"","value":"224"},{"kind":"number","nativeSrc":"3322:10:41","nodeType":"YulLiteral","src":"3322:10:41","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"3313:3:41","nodeType":"YulIdentifier","src":"3313:3:41"},"nativeSrc":"3313:20:41","nodeType":"YulFunctionCall","src":"3313:20:41"}],"functionName":{"name":"mstore","nativeSrc":"3303:6:41","nodeType":"YulIdentifier","src":"3303:6:41"},"nativeSrc":"3303:31:41","nodeType":"YulFunctionCall","src":"3303:31:41"},"nativeSrc":"3303:31:41","nodeType":"YulExpressionStatement","src":"3303:31:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3350:1:41","nodeType":"YulLiteral","src":"3350:1:41","type":"","value":"4"},{"kind":"number","nativeSrc":"3353:4:41","nodeType":"YulLiteral","src":"3353:4:41","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"3343:6:41","nodeType":"YulIdentifier","src":"3343:6:41"},"nativeSrc":"3343:15:41","nodeType":"YulFunctionCall","src":"3343:15:41"},"nativeSrc":"3343:15:41","nodeType":"YulExpressionStatement","src":"3343:15:41"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3374:1:41","nodeType":"YulLiteral","src":"3374:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3377:4:41","nodeType":"YulLiteral","src":"3377:4:41","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"3367:6:41","nodeType":"YulIdentifier","src":"3367:6:41"},"nativeSrc":"3367:15:41","nodeType":"YulFunctionCall","src":"3367:15:41"},"nativeSrc":"3367:15:41","nodeType":"YulExpressionStatement","src":"3367:15:41"}]},"name":"panic_error_0x11","nativeSrc":"3261:127:41","nodeType":"YulFunctionDefinition","src":"3261:127:41"},{"body":{"nativeSrc":"3442:79:41","nodeType":"YulBlock","src":"3442:79:41","statements":[{"nativeSrc":"3452:17:41","nodeType":"YulAssignment","src":"3452:17:41","value":{"arguments":[{"name":"x","nativeSrc":"3464:1:41","nodeType":"YulIdentifier","src":"3464:1:41"},{"name":"y","nativeSrc":"3467:1:41","nodeType":"YulIdentifier","src":"3467:1:41"}],"functionName":{"name":"sub","nativeSrc":"3460:3:41","nodeType":"YulIdentifier","src":"3460:3:41"},"nativeSrc":"3460:9:41","nodeType":"YulFunctionCall","src":"3460:9:41"},"variableNames":[{"name":"diff","nativeSrc":"3452:4:41","nodeType":"YulIdentifier","src":"3452:4:41"}]},{"body":{"nativeSrc":"3493:22:41","nodeType":"YulBlock","src":"3493:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"3495:16:41","nodeType":"YulIdentifier","src":"3495:16:41"},"nativeSrc":"3495:18:41","nodeType":"YulFunctionCall","src":"3495:18:41"},"nativeSrc":"3495:18:41","nodeType":"YulExpressionStatement","src":"3495:18:41"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"3484:4:41","nodeType":"YulIdentifier","src":"3484:4:41"},{"name":"x","nativeSrc":"3490:1:41","nodeType":"YulIdentifier","src":"3490:1:41"}],"functionName":{"name":"gt","nativeSrc":"3481:2:41","nodeType":"YulIdentifier","src":"3481:2:41"},"nativeSrc":"3481:11:41","nodeType":"YulFunctionCall","src":"3481:11:41"},"nativeSrc":"3478:37:41","nodeType":"YulIf","src":"3478:37:41"}]},"name":"checked_sub_t_uint256","nativeSrc":"3393:128:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"3424:1:41","nodeType":"YulTypedName","src":"3424:1:41","type":""},{"name":"y","nativeSrc":"3427:1:41","nodeType":"YulTypedName","src":"3427:1:41","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"3433:4:41","nodeType":"YulTypedName","src":"3433:4:41","type":""}],"src":"3393:128:41"},{"body":{"nativeSrc":"3656:201:41","nodeType":"YulBlock","src":"3656:201:41","statements":[{"body":{"nativeSrc":"3694:16:41","nodeType":"YulBlock","src":"3694:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3703:1:41","nodeType":"YulLiteral","src":"3703:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3706:1:41","nodeType":"YulLiteral","src":"3706:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3696:6:41","nodeType":"YulIdentifier","src":"3696:6:41"},"nativeSrc":"3696:12:41","nodeType":"YulFunctionCall","src":"3696:12:41"},"nativeSrc":"3696:12:41","nodeType":"YulExpressionStatement","src":"3696:12:41"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"3672:10:41","nodeType":"YulIdentifier","src":"3672:10:41"},{"name":"endIndex","nativeSrc":"3684:8:41","nodeType":"YulIdentifier","src":"3684:8:41"}],"functionName":{"name":"gt","nativeSrc":"3669:2:41","nodeType":"YulIdentifier","src":"3669:2:41"},"nativeSrc":"3669:24:41","nodeType":"YulFunctionCall","src":"3669:24:41"},"nativeSrc":"3666:44:41","nodeType":"YulIf","src":"3666:44:41"},{"body":{"nativeSrc":"3743:16:41","nodeType":"YulBlock","src":"3743:16:41","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3752:1:41","nodeType":"YulLiteral","src":"3752:1:41","type":"","value":"0"},{"kind":"number","nativeSrc":"3755:1:41","nodeType":"YulLiteral","src":"3755:1:41","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3745:6:41","nodeType":"YulIdentifier","src":"3745:6:41"},"nativeSrc":"3745:12:41","nodeType":"YulFunctionCall","src":"3745:12:41"},"nativeSrc":"3745:12:41","nodeType":"YulExpressionStatement","src":"3745:12:41"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"3725:8:41","nodeType":"YulIdentifier","src":"3725:8:41"},{"name":"length","nativeSrc":"3735:6:41","nodeType":"YulIdentifier","src":"3735:6:41"}],"functionName":{"name":"gt","nativeSrc":"3722:2:41","nodeType":"YulIdentifier","src":"3722:2:41"},"nativeSrc":"3722:20:41","nodeType":"YulFunctionCall","src":"3722:20:41"},"nativeSrc":"3719:40:41","nodeType":"YulIf","src":"3719:40:41"},{"nativeSrc":"3768:36:41","nodeType":"YulAssignment","src":"3768:36:41","value":{"arguments":[{"name":"offset","nativeSrc":"3785:6:41","nodeType":"YulIdentifier","src":"3785:6:41"},{"name":"startIndex","nativeSrc":"3793:10:41","nodeType":"YulIdentifier","src":"3793:10:41"}],"functionName":{"name":"add","nativeSrc":"3781:3:41","nodeType":"YulIdentifier","src":"3781:3:41"},"nativeSrc":"3781:23:41","nodeType":"YulFunctionCall","src":"3781:23:41"},"variableNames":[{"name":"offsetOut","nativeSrc":"3768:9:41","nodeType":"YulIdentifier","src":"3768:9:41"}]},{"nativeSrc":"3813:38:41","nodeType":"YulAssignment","src":"3813:38:41","value":{"arguments":[{"name":"endIndex","nativeSrc":"3830:8:41","nodeType":"YulIdentifier","src":"3830:8:41"},{"name":"startIndex","nativeSrc":"3840:10:41","nodeType":"YulIdentifier","src":"3840:10:41"}],"functionName":{"name":"sub","nativeSrc":"3826:3:41","nodeType":"YulIdentifier","src":"3826:3:41"},"nativeSrc":"3826:25:41","nodeType":"YulFunctionCall","src":"3826:25:41"},"variableNames":[{"name":"lengthOut","nativeSrc":"3813:9:41","nodeType":"YulIdentifier","src":"3813:9:41"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"3526:331:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"3590:6:41","nodeType":"YulTypedName","src":"3590:6:41","type":""},{"name":"length","nativeSrc":"3598:6:41","nodeType":"YulTypedName","src":"3598:6:41","type":""},{"name":"startIndex","nativeSrc":"3606:10:41","nodeType":"YulTypedName","src":"3606:10:41","type":""},{"name":"endIndex","nativeSrc":"3618:8:41","nodeType":"YulTypedName","src":"3618:8:41","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"3631:9:41","nodeType":"YulTypedName","src":"3631:9:41","type":""},{"name":"lengthOut","nativeSrc":"3642:9:41","nodeType":"YulTypedName","src":"3642:9:41","type":""}],"src":"3526:331:41"},{"body":{"nativeSrc":"3963:273:41","nodeType":"YulBlock","src":"3963:273:41","statements":[{"nativeSrc":"3973:29:41","nodeType":"YulVariableDeclaration","src":"3973:29:41","value":{"arguments":[{"name":"array","nativeSrc":"3996:5:41","nodeType":"YulIdentifier","src":"3996:5:41"}],"functionName":{"name":"calldataload","nativeSrc":"3983:12:41","nodeType":"YulIdentifier","src":"3983:12:41"},"nativeSrc":"3983:19:41","nodeType":"YulFunctionCall","src":"3983:19:41"},"variables":[{"name":"_1","nativeSrc":"3977:2:41","nodeType":"YulTypedName","src":"3977:2:41","type":""}]},{"nativeSrc":"4011:49:41","nodeType":"YulAssignment","src":"4011:49:41","value":{"arguments":[{"name":"_1","nativeSrc":"4024:2:41","nodeType":"YulIdentifier","src":"4024:2:41"},{"arguments":[{"kind":"number","nativeSrc":"4032:26:41","nodeType":"YulLiteral","src":"4032:26:41","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"4028:3:41","nodeType":"YulIdentifier","src":"4028:3:41"},"nativeSrc":"4028:31:41","nodeType":"YulFunctionCall","src":"4028:31:41"}],"functionName":{"name":"and","nativeSrc":"4020:3:41","nodeType":"YulIdentifier","src":"4020:3:41"},"nativeSrc":"4020:40:41","nodeType":"YulFunctionCall","src":"4020:40:41"},"variableNames":[{"name":"value","nativeSrc":"4011:5:41","nodeType":"YulIdentifier","src":"4011:5:41"}]},{"body":{"nativeSrc":"4092:138:41","nodeType":"YulBlock","src":"4092:138:41","statements":[{"nativeSrc":"4106:114:41","nodeType":"YulAssignment","src":"4106:114:41","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"4123:2:41","nodeType":"YulIdentifier","src":"4123:2:41"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4135:1:41","nodeType":"YulLiteral","src":"4135:1:41","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"4142:2:41","nodeType":"YulLiteral","src":"4142:2:41","type":"","value":"20"},{"name":"len","nativeSrc":"4146:3:41","nodeType":"YulIdentifier","src":"4146:3:41"}],"functionName":{"name":"sub","nativeSrc":"4138:3:41","nodeType":"YulIdentifier","src":"4138:3:41"},"nativeSrc":"4138:12:41","nodeType":"YulFunctionCall","src":"4138:12:41"}],"functionName":{"name":"shl","nativeSrc":"4131:3:41","nodeType":"YulIdentifier","src":"4131:3:41"},"nativeSrc":"4131:20:41","nodeType":"YulFunctionCall","src":"4131:20:41"},{"arguments":[{"kind":"number","nativeSrc":"4157:26:41","nodeType":"YulLiteral","src":"4157:26:41","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"4153:3:41","nodeType":"YulIdentifier","src":"4153:3:41"},"nativeSrc":"4153:31:41","nodeType":"YulFunctionCall","src":"4153:31:41"}],"functionName":{"name":"shl","nativeSrc":"4127:3:41","nodeType":"YulIdentifier","src":"4127:3:41"},"nativeSrc":"4127:58:41","nodeType":"YulFunctionCall","src":"4127:58:41"}],"functionName":{"name":"and","nativeSrc":"4119:3:41","nodeType":"YulIdentifier","src":"4119:3:41"},"nativeSrc":"4119:67:41","nodeType":"YulFunctionCall","src":"4119:67:41"},{"arguments":[{"kind":"number","nativeSrc":"4192:26:41","nodeType":"YulLiteral","src":"4192:26:41","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"4188:3:41","nodeType":"YulIdentifier","src":"4188:3:41"},"nativeSrc":"4188:31:41","nodeType":"YulFunctionCall","src":"4188:31:41"}],"functionName":{"name":"and","nativeSrc":"4115:3:41","nodeType":"YulIdentifier","src":"4115:3:41"},"nativeSrc":"4115:105:41","nodeType":"YulFunctionCall","src":"4115:105:41"},"variableNames":[{"name":"value","nativeSrc":"4106:5:41","nodeType":"YulIdentifier","src":"4106:5:41"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"4075:3:41","nodeType":"YulIdentifier","src":"4075:3:41"},{"kind":"number","nativeSrc":"4080:2:41","nodeType":"YulLiteral","src":"4080:2:41","type":"","value":"20"}],"functionName":{"name":"lt","nativeSrc":"4072:2:41","nodeType":"YulIdentifier","src":"4072:2:41"},"nativeSrc":"4072:11:41","nodeType":"YulFunctionCall","src":"4072:11:41"},"nativeSrc":"4069:161:41","nodeType":"YulIf","src":"4069:161:41"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20","nativeSrc":"3862:374:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"3938:5:41","nodeType":"YulTypedName","src":"3938:5:41","type":""},{"name":"len","nativeSrc":"3945:3:41","nodeType":"YulTypedName","src":"3945:3:41","type":""}],"returnVariables":[{"name":"value","nativeSrc":"3953:5:41","nodeType":"YulTypedName","src":"3953:5:41","type":""}],"src":"3862:374:41"},{"body":{"nativeSrc":"4289:77:41","nodeType":"YulBlock","src":"4289:77:41","statements":[{"nativeSrc":"4299:16:41","nodeType":"YulAssignment","src":"4299:16:41","value":{"arguments":[{"name":"x","nativeSrc":"4310:1:41","nodeType":"YulIdentifier","src":"4310:1:41"},{"name":"y","nativeSrc":"4313:1:41","nodeType":"YulIdentifier","src":"4313:1:41"}],"functionName":{"name":"add","nativeSrc":"4306:3:41","nodeType":"YulIdentifier","src":"4306:3:41"},"nativeSrc":"4306:9:41","nodeType":"YulFunctionCall","src":"4306:9:41"},"variableNames":[{"name":"sum","nativeSrc":"4299:3:41","nodeType":"YulIdentifier","src":"4299:3:41"}]},{"body":{"nativeSrc":"4338:22:41","nodeType":"YulBlock","src":"4338:22:41","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"4340:16:41","nodeType":"YulIdentifier","src":"4340:16:41"},"nativeSrc":"4340:18:41","nodeType":"YulFunctionCall","src":"4340:18:41"},"nativeSrc":"4340:18:41","nodeType":"YulExpressionStatement","src":"4340:18:41"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"4330:1:41","nodeType":"YulIdentifier","src":"4330:1:41"},{"name":"sum","nativeSrc":"4333:3:41","nodeType":"YulIdentifier","src":"4333:3:41"}],"functionName":{"name":"gt","nativeSrc":"4327:2:41","nodeType":"YulIdentifier","src":"4327:2:41"},"nativeSrc":"4327:10:41","nodeType":"YulFunctionCall","src":"4327:10:41"},"nativeSrc":"4324:36:41","nodeType":"YulIf","src":"4324:36:41"}]},"name":"checked_add_t_uint256","nativeSrc":"4241:125:41","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"4272:1:41","nodeType":"YulTypedName","src":"4272:1:41","type":""},{"name":"y","nativeSrc":"4275:1:41","nodeType":"YulTypedName","src":"4275:1:41","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"4281:3:41","nodeType":"YulTypedName","src":"4281:3:41","type":""}],"src":"4241:125:41"}]},"contents":"{\n    { }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        mcopy(add(headStart, 64), add(value0, 32), length)\n        mstore(add(add(headStart, length), 64), 0)\n        tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n    }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let value := 0\n        value := calldataload(add(headStart, 32))\n        value1 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n    {\n        if gt(startIndex, endIndex) { revert(0, 0) }\n        if gt(endIndex, length) { revert(0, 0) }\n        offsetOut := add(offset, startIndex)\n        lengthOut := sub(endIndex, startIndex)\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, not(0xffffffffffffffffffffffff))\n        if lt(len, 20)\n        {\n            value := and(and(_1, shl(shl(3, sub(20, len)), not(0xffffffffffffffffffffffff))), not(0xffffffffffffffffffffffff))\n        }\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n}","id":41,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"2056":[{"length":32,"start":337},{"length":32,"start":438},{"length":32,"start":1094}],"12115":[{"length":32,"start":279}]},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b50600436106100a6575f3560e01c8063572b6c051161006e578063572b6c051461014157806370a08231146101815780637da0a877146101a957806395d89b41146101e0578063a9059cbb146101e8578063dd62ed3e146101fb575f5ffd5b806306fdde03146100aa578063095ea7b3146100c857806318160ddd146100eb57806323b872dd146100fd578063313ce56714610110575b5f5ffd5b6100b2610233565b6040516100bf91906106a2565b60405180910390f35b6100db6100d63660046106f2565b6102c3565b60405190151581526020016100bf565b6002545b6040519081526020016100bf565b6100db61010b36600461071a565b6102e6565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016100bf565b6100db61014f366004610754565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b6100ef61018f366004610754565b6001600160a01b03165f9081526020819052604090205490565b6040516001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681526020016100bf565b6100b2610313565b6100db6101f63660046106f2565b610322565b6100ef610209366004610774565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b606060038054610242906107a5565b80601f016020809104026020016040519081016040528092919081815260200182805461026e906107a5565b80156102b95780601f10610290576101008083540402835291602001916102b9565b820191905f5260205f20905b81548152906001019060200180831161029c57829003601f168201915b5050505050905090565b5f5f6102cd610339565b90506102da818585610347565b60019150505b92915050565b5f5f6102f0610339565b90506102fd858285610359565b6103088585856103da565b506001949350505050565b606060048054610242906107a5565b5f5f61032c610339565b90506102da8185856103da565b5f610342610437565b905090565b61035483838360016104aa565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198110156103d457818110156103c657604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b6103d484848484035f6104aa565b50505050565b6001600160a01b03831661040357604051634b637e8f60e11b81525f60048201526024016103bd565b6001600160a01b03821661042c5760405163ec442f0560e01b81525f60048201526024016103bd565b61035483838361057c565b5f366014336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480156104735750808210155b156104a2575f3661048483856107f1565b61048f928290610804565b6104989161082b565b60601c9250505090565b339250505090565b6001600160a01b0384166104d35760405163e602df0560e01b81525f60048201526024016103bd565b6001600160a01b0383166104fc57604051634a1406b160e11b81525f60048201526024016103bd565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156103d457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161056e91815260200190565b60405180910390a350505050565b6001600160a01b0383166105a6578060025f82825461059b9190610878565b909155506106169050565b6001600160a01b0383165f90815260208190526040902054818110156105f85760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016103bd565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661063257600280548290039055610650565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161069591815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146106ed575f5ffd5b919050565b5f5f60408385031215610703575f5ffd5b61070c836106d7565b946020939093013593505050565b5f5f5f6060848603121561072c575f5ffd5b610735846106d7565b9250610743602085016106d7565b929592945050506040919091013590565b5f60208284031215610764575f5ffd5b61076d826106d7565b9392505050565b5f5f60408385031215610785575f5ffd5b61078e836106d7565b915061079c602084016106d7565b90509250929050565b600181811c908216806107b957607f821691505b6020821081036107d757634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156102e0576102e06107dd565b5f5f85851115610812575f5ffd5b8386111561081e575f5ffd5b5050820193919092039150565b80356bffffffffffffffffffffffff198116906014841015610871576bffffffffffffffffffffffff196bffffffffffffffffffffffff198560140360031b1b82161691505b5092915050565b808201808211156102e0576102e06107dd56fea26469706673582212202d6a63924519f9803257fc7190bf1d1c3b5e564671d83f842ae58ec2cc7b6a7864736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA6 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x572B6C05 GT PUSH2 0x6E JUMPI DUP1 PUSH4 0x572B6C05 EQ PUSH2 0x141 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x181 JUMPI DUP1 PUSH4 0x7DA0A877 EQ PUSH2 0x1A9 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1E0 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1E8 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x1FB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAA JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xC8 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xEB JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0xFD JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x110 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xB2 PUSH2 0x233 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBF SWAP2 SWAP1 PUSH2 0x6A2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDB PUSH2 0xD6 CALLDATASIZE PUSH1 0x4 PUSH2 0x6F2 JUMP JUMPDEST PUSH2 0x2C3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH2 0xDB PUSH2 0x10B CALLDATASIZE PUSH1 0x4 PUSH2 0x71A JUMP JUMPDEST PUSH2 0x2E6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH2 0xDB PUSH2 0x14F CALLDATASIZE PUSH1 0x4 PUSH2 0x754 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 AND EQ SWAP1 JUMP JUMPDEST PUSH2 0xEF PUSH2 0x18F CALLDATASIZE PUSH1 0x4 PUSH2 0x754 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH2 0xB2 PUSH2 0x313 JUMP JUMPDEST PUSH2 0xDB PUSH2 0x1F6 CALLDATASIZE PUSH1 0x4 PUSH2 0x6F2 JUMP JUMPDEST PUSH2 0x322 JUMP JUMPDEST PUSH2 0xEF PUSH2 0x209 CALLDATASIZE PUSH1 0x4 PUSH2 0x774 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x242 SWAP1 PUSH2 0x7A5 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x26E SWAP1 PUSH2 0x7A5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2B9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x290 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2B9 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x29C JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2CD PUSH2 0x339 JUMP JUMPDEST SWAP1 POP PUSH2 0x2DA DUP2 DUP6 DUP6 PUSH2 0x347 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2F0 PUSH2 0x339 JUMP JUMPDEST SWAP1 POP PUSH2 0x2FD DUP6 DUP3 DUP6 PUSH2 0x359 JUMP JUMPDEST PUSH2 0x308 DUP6 DUP6 DUP6 PUSH2 0x3DA JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x242 SWAP1 PUSH2 0x7A5 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x32C PUSH2 0x339 JUMP JUMPDEST SWAP1 POP PUSH2 0x2DA DUP2 DUP6 DUP6 PUSH2 0x3DA JUMP JUMPDEST PUSH0 PUSH2 0x342 PUSH2 0x437 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x354 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x4AA JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH0 NOT DUP2 LT ISZERO PUSH2 0x3D4 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x3C6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3D4 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x4AA JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x403 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x42C JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3BD JUMP JUMPDEST PUSH2 0x354 DUP4 DUP4 DUP4 PUSH2 0x57C JUMP JUMPDEST PUSH0 CALLDATASIZE PUSH1 0x14 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0x473 JUMPI POP DUP1 DUP3 LT ISZERO JUMPDEST ISZERO PUSH2 0x4A2 JUMPI PUSH0 CALLDATASIZE PUSH2 0x484 DUP4 DUP6 PUSH2 0x7F1 JUMP JUMPDEST PUSH2 0x48F SWAP3 DUP3 SWAP1 PUSH2 0x804 JUMP JUMPDEST PUSH2 0x498 SWAP2 PUSH2 0x82B JUMP JUMPDEST PUSH1 0x60 SHR SWAP3 POP POP POP SWAP1 JUMP JUMPDEST CALLER SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x4D3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x4FC JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0x3D4 JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x56E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x5A6 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x59B SWAP2 SWAP1 PUSH2 0x878 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x616 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x5F8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x632 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x650 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x695 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x6ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x703 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x70C DUP4 PUSH2 0x6D7 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x72C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x735 DUP5 PUSH2 0x6D7 JUMP JUMPDEST SWAP3 POP PUSH2 0x743 PUSH1 0x20 DUP6 ADD PUSH2 0x6D7 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x764 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x76D DUP3 PUSH2 0x6D7 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x785 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x78E DUP4 PUSH2 0x6D7 JUMP JUMPDEST SWAP2 POP PUSH2 0x79C PUSH1 0x20 DUP5 ADD PUSH2 0x6D7 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x7B9 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x7D7 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x2E0 JUMPI PUSH2 0x2E0 PUSH2 0x7DD JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x812 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x81E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP2 AND SWAP1 PUSH1 0x14 DUP5 LT ISZERO PUSH2 0x871 JUMPI PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP6 PUSH1 0x14 SUB PUSH1 0x3 SHL SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x2E0 JUMPI PUSH2 0x2E0 PUSH2 0x7DD JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2D PUSH11 0x63924519F9803257FC7190 0xBF SAR SHR EXTCODESIZE MCOPY JUMP CHAINID PUSH18 0xD83F842AE58EC2CC7B6A7864736F6C634300 ADDMOD SHR STOP CALLER ","sourceMap":"282:993:39:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1779:89:16;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3998:186;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:41;;1078:22;1060:41;;1048:2;1033:18;3998:186:16;920:187:41;2849:97:16;2927:12;;2849:97;;;1258:25:41;;;1246:2;1231:18;2849:97:16;1112:177:41;4776:244:16;;;;;;:::i;:::-;;:::i;648:92:39:-;;;1845:4:41;726:9:39;1833:17:41;1815:36;;1803:2;1788:18;648:92:39;1673:184:41;1832:137:15;;;;;;:::i;:::-;1707:17;-1:-1:-1;;;;;1931:31:15;;;;;;;1832:137;3004:116:16;;;;;;:::i;:::-;-1:-1:-1;;;;;3095:18:16;3069:7;3095:18;;;;;;;;;;;;3004:116;1624:107:15;;;-1:-1:-1;;;;;1707:17:15;2217:32:41;2199:51;;2187:2;2172:18;1624:107:15;2053:203:41;1981:93:16;;;:::i;3315:178::-;;;;;;:::i;:::-;;:::i;3551:140::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3657:18:16;;;3631:7;3657:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3551:140;1779:89;1824:13;1856:5;1849:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1779:89;:::o;3998:186::-;4071:4;4087:13;4103:12;:10;:12::i;:::-;4087:28;;4125:31;4134:5;4141:7;4150:5;4125:8;:31::i;:::-;4173:4;4166:11;;;3998:186;;;;;:::o;4776:244::-;4863:4;4879:15;4897:12;:10;:12::i;:::-;4879:30;;4919:37;4935:4;4941:7;4950:5;4919:15;:37::i;:::-;4966:26;4976:4;4982:2;4986:5;4966:9;:26::i;:::-;-1:-1:-1;5009:4:16;;4776:244;-1:-1:-1;;;;4776:244:16:o;1981:93::-;2028:13;2060:7;2053:14;;;;;:::i;3315:178::-;3384:4;3400:13;3416:12;:10;:12::i;:::-;3400:28;;3438:27;3448:5;3455:2;3459:5;3438:9;:27::i;967:133:39:-;1046:7;1068:27;:25;:27::i;:::-;1061:34;;967:133;:::o;8726:128:16:-;8810:37;8819:5;8826:7;8835:5;8842:4;8810:8;:37::i;:::-;8726:128;;;:::o;10415:476::-;-1:-1:-1;;;;;3657:18:16;;;10514:24;3657:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10580:36:16;;10576:309;;;10655:5;10636:16;:24;10632:130;;;10687:60;;-1:-1:-1;;;10687:60:16;;-1:-1:-1;;;;;3131:32:41;;10687:60:16;;;3113:51:41;3180:18;;;3173:34;;;3223:18;;;3216:34;;;3086:18;;10687:60:16;;;;;;;;10632:130;10803:57;10812:5;10819:7;10847:5;10828:16;:24;10854:5;10803:8;:57::i;:::-;10504:387;10415:476;;;:::o;5393:300::-;-1:-1:-1;;;;;5476:18:16;;5472:86;;5517:30;;-1:-1:-1;;;5517:30:16;;5544:1;5517:30;;;2199:51:41;2172:18;;5517:30:16;2053:203:41;5472:86:16;-1:-1:-1;;;;;5571:16:16;;5567:86;;5610:32;;-1:-1:-1;;;5610:32:16;;5639:1;5610:32;;;2199:51:41;2172:18;;5610:32:16;2053:203:41;5567:86:16;5662:24;5670:4;5676:2;5680:5;5662:7;:24::i;2206:429:15:-;2268:7;2312:8;3483:2;2422:10;-1:-1:-1;;;;;1707:17:15;1931:31;;2403:71;;;;;2455:19;2437:14;:37;;2403:71;2399:230;;;2513:8;;2522:36;2539:19;2522:14;:36;:::i;:::-;2513:47;;;;;:::i;:::-;2505:56;;;:::i;:::-;2497:65;;2490:72;;;;2206:429;:::o;2399:230::-;735:10:20;2593:25:15;;;;2206:429;:::o;9701:432:16:-;-1:-1:-1;;;;;9813:19:16;;9809:89;;9855:32;;-1:-1:-1;;;9855:32:16;;9884:1;9855:32;;;2199:51:41;2172:18;;9855:32:16;2053:203:41;9809:89:16;-1:-1:-1;;;;;9911:21:16;;9907:90;;9955:31;;-1:-1:-1;;;9955:31:16;;9983:1;9955:31;;;2199:51:41;2172:18;;9955:31:16;2053:203:41;9907:90:16;-1:-1:-1;;;;;10006:18:16;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;10051:76;;;;10101:7;-1:-1:-1;;;;;10085:31:16;10094:5;-1:-1:-1;;;;;10085:31:16;;10110:5;10085:31;;;;1258:25:41;;1246:2;1231:18;;1112:177;10085:31:16;;;;;;;;9701:432;;;;:::o;6008:1107::-;-1:-1:-1;;;;;6097:18:16;;6093:540;;6249:5;6233:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6093:540:16;;-1:-1:-1;6093:540:16;;-1:-1:-1;;;;;6307:15:16;;6285:19;6307:15;;;;;;;;;;;6340:19;;;6336:115;;;6386:50;;-1:-1:-1;;;6386:50:16;;-1:-1:-1;;;;;3131:32:41;;6386:50:16;;;3113:51:41;3180:18;;;3173:34;;;3223:18;;;3216:34;;;3086:18;;6386:50:16;2911:345:41;6336:115:16;-1:-1:-1;;;;;6571:15:16;;:9;:15;;;;;;;;;;6589:19;;;;6571:37;;6093:540;-1:-1:-1;;;;;6647:16:16;;6643:425;;6810:12;:21;;;;;;;6643:425;;;-1:-1:-1;;;;;7021:13:16;;:9;:13;;;;;;;;;;:22;;;;;;6643:425;7098:2;-1:-1:-1;;;;;7083:25:16;7092:4;-1:-1:-1;;;;;7083:25:16;;7102:5;7083:25;;;;1258::41;;1246:2;1231:18;;1112:177;7083:25:16;;;;;;;;6008:1107;;;:::o;14:418:41:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:41;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:41:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:41;1619:18;;;;1606:32;;1294:374::o;1862:186::-;1921:6;1974:2;1962:9;1953:7;1949:23;1945:32;1942:52;;;1990:1;1987;1980:12;1942:52;2013:29;2032:9;2013:29;:::i;:::-;2003:39;1862:186;-1:-1:-1;;;1862:186:41:o;2261:260::-;2329:6;2337;2390:2;2378:9;2369:7;2365:23;2361:32;2358:52;;;2406:1;2403;2396:12;2358:52;2429:29;2448:9;2429:29;:::i;:::-;2419:39;;2477:38;2511:2;2500:9;2496:18;2477:38;:::i;:::-;2467:48;;2261:260;;;;;:::o;2526:380::-;2605:1;2601:12;;;;2648;;;2669:61;;2723:4;2715:6;2711:17;2701:27;;2669:61;2776:2;2768:6;2765:14;2745:18;2742:38;2739:161;;2822:10;2817:3;2813:20;2810:1;2803:31;2857:4;2854:1;2847:15;2885:4;2882:1;2875:15;2739:161;;2526:380;;;:::o;3261:127::-;3322:10;3317:3;3313:20;3310:1;3303:31;3353:4;3350:1;3343:15;3377:4;3374:1;3367:15;3393:128;3460:9;;;3481:11;;;3478:37;;;3495:18;;:::i;3526:331::-;3631:9;3642;3684:8;3672:10;3669:24;3666:44;;;3706:1;3703;3696:12;3666:44;3735:6;3725:8;3722:20;3719:40;;;3755:1;3752;3745:12;3719:40;-1:-1:-1;;3781:23:41;;;3826:25;;;;;-1:-1:-1;3526:331:41:o;3862:374::-;3983:19;;-1:-1:-1;;4020:40:41;;;4080:2;4072:11;;4069:161;;;4192:26;4188:31;4157:26;4153:31;4146:3;4142:2;4138:12;4135:1;4131:20;4127:58;4123:2;4119:67;4115:105;4106:114;;4069:161;;3862:374;;;;:::o;4241:125::-;4306:9;;;4327:10;;;4324:36;;;4340:18;;:::i"},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","isTrustedForwarder(address)":"572b6c05","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","trustedForwarder()":"7da0a877"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"initialSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"decimals_\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"trustedForwarder\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"forwarder\",\"type\":\"address\"}],\"name\":\"isTrustedForwarder\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"trustedForwarder\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"isTrustedForwarder(address)\":{\"details\":\"Indicates whether any particular address is the trusted forwarder.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"},\"trustedForwarder()\":{\"details\":\"Returns the address of the trusted forwarder.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/mock/ERC20With2771.sol\":\"ERC20With2771\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/metatx/ERC2771Context.sol\":{\"keccak256\":\"0x0b030a33274bde015419d99e54c9164f876a7d10eb590317b79b1d5e4ab23d99\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://68e5f96988198e8efd25ddef0d89750b4daebb7fd1204fa7f5eaccdfcb3398c8\",\"dweb:/ipfs/QmaM6nNkf9UmEtQraopuZamEWCdTWp7GvuN3pjMQrNCHxm\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x6ef9389a2c07bc40d8a7ba48914724ab2c108fac391ce12314f01321813e6368\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b7a5cb39b1e6df68f4dd9a5e76e853d745a74ffb3dfd7df4ae4d2ace6992a171\",\"dweb:/ipfs/QmPbzKR19rdM8X3PLQjsmHRepUKhvoZnedSR63XyGtXZib\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"contracts/mock/ERC20With2771.sol\":{\"keccak256\":\"0xb14881c8493f73e70777a626be096a5a7271de0c58fdb561c4b85a465670d04a\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://1c5c438015d07a043708459dd47fd4e121cec99235cbad8e1c31e4cdff05845f\",\"dweb:/ipfs/QmdURZteUNLyCGe5qYXkeTms4awdCjs1rAqRs1zgS6t3qj\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":2212,"contract":"contracts/mock/ERC20With2771.sol:ERC20With2771","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":2218,"contract":"contracts/mock/ERC20With2771.sol:ERC20With2771","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":2220,"contract":"contracts/mock/ERC20With2771.sol:ERC20With2771","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":2222,"contract":"contracts/mock/ERC20With2771.sol:ERC20With2771","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":2224,"contract":"contracts/mock/ERC20With2771.sol:ERC20With2771","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"solidity-bytes-utils/contracts/BytesLib.sol":{"BytesLib":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220817a737dc3f761b3cbba6fef4286beacb85200525089dba18f77065cfe5c328f64736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP2 PUSH27 0x737DC3F761B3CBBA6FEF4286BEACB85200525089DBA18F77065CFE TLOAD ORIGIN DUP16 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"370:18904:40:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;370:18904:40;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220817a737dc3f761b3cbba6fef4286beacb85200525089dba18f77065cfe5c328f64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP2 PUSH27 0x737DC3F761B3CBBA6FEF4286BEACB85200525089DBA18F77065CFE TLOAD ORIGIN DUP16 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"370:18904:40:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"solidity-bytes-utils/contracts/BytesLib.sol\":\"BytesLib\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"solidity-bytes-utils/contracts/BytesLib.sol\":{\"keccak256\":\"0xf75784dfc94ea43668eb195d5690a1dde1b6eda62017e73a3899721583821d29\",\"license\":\"Unlicense\",\"urls\":[\"bzz-raw://ca16cef8b94f3ac75d376489a668618f6c4595a906b939d674a883f4bf426014\",\"dweb:/ipfs/QmceGU7qhyFLSejaj6i4dEtMzXDCSF3aYDtW1UeKjXQaRn\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}}}}}